    :root {
      --rojo:      #C0222A;
      --rojo-osc:  #8B0000;
      --rojo-cl:   #E83E3E;
      --gris-osc:  #1A1A1A;
      --gris-med:  #2E2E2E;
      --gris-suav: #F0EEEC;
      --blanco:    #FFFFFF;
      --plata:     #B0B8C1;
      --acento:    #D4A017;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: "Barlow", sans-serif; background: var(--gris-osc); color: var(--blanco); overflow-x: hidden; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    /* ── NAVBAR ── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 2.5rem; height: 70px;
      background: rgba(15,15,15,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(192,34,42,0.3);
    }
    .nav__brand { display: flex; align-items: center; gap: 0.75rem; }
    .nav__icon {
      width: 42px; height: 42px; border-radius: 6px; overflow: hidden;
      border: 2px solid var(--rojo);
    }
    .nav__icon img { width: 100%; height: 100%; object-fit: cover; }
    .nav__name {
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 800; font-size: 1.5rem; letter-spacing: 0.06em;
      color: var(--blanco);
    }
    .nav__name span { color: var(--rojo); }
    .nav__links { display: flex; gap: 2rem; }
    .nav__links a {
      font-weight: 600; font-size: 0.85rem; letter-spacing: 0.08em;
      text-transform: uppercase; color: rgba(255,255,255,0.7);
      transition: color 0.2s;
    }
    .nav__links a:hover { color: var(--rojo-cl); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid; place-items: center;
      padding: 70px 2.5rem 0;
      background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(192,34,42,0.18) 0%, transparent 70%),
        linear-gradient(160deg, #0f0f0f 0%, #1a1a1a 50%, #0d0d0d 100%);
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C0222A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero__inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
      align-items: center; max-width: 1200px; width: 100%;
      position: relative; z-index: 1;
    }
    .hero__tag {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(192,34,42,0.15); border: 1px solid rgba(192,34,42,0.4);
      border-radius: 999px; padding: 0.3rem 1rem;
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--rojo-cl);
      margin-bottom: 1.5rem;
    }
    .hero__tag::before { content: ""; width: 6px; height: 6px; background: var(--rojo-cl); border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }
    .hero__title {
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 900; font-size: clamp(3rem, 6vw, 5.5rem);
      line-height: 0.95; letter-spacing: -0.01em;
      color: var(--blanco); margin-bottom: 1.5rem;
    }
    .hero__title em { font-style: normal; color: var(--rojo); }
    .hero__desc {
      font-size: 1.05rem; color: rgba(255,255,255,0.65);
      line-height: 1.75; max-width: 480px; margin-bottom: 2.5rem;
    }
    .hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.875rem 2rem; font-weight: 700; font-size: 0.875rem;
      letter-spacing: 0.06em; text-transform: uppercase;
      border-radius: 4px; cursor: pointer; border: 2px solid transparent;
      transition: all 0.25s;
    }
    .btn--red { background: var(--rojo); color: var(--blanco); }
    .btn--red:hover { background: var(--rojo-osc); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,34,42,0.4); }
    .btn--ghost { background: transparent; color: var(--blanco); border-color: rgba(255,255,255,0.25); }
    .btn--ghost:hover { border-color: var(--rojo); color: var(--rojo-cl); }

    /* Hero visual */
    .hero__visual {
      display: flex; flex-direction: column; gap: 1rem; align-items: flex-end;
    }
    .hero__logo-wrap {
      width: 280px; height: 280px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(192,34,42,0.25);
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
      box-shadow: 0 0 60px rgba(192,34,42,0.2), inset 0 0 40px rgba(0,0,0,0.3);
    }
    .hero__logo-wrap img { width: 90%; height: 90%; object-fit: contain; }
    .hero__stats {
      display: flex; gap: 0.75rem; width: 280px;
    }
    .stat-card {
      flex: 1;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px; padding: 1rem 0.75rem; text-align: center;
    }
    .stat-card__num {
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 800; font-size: 1.75rem; color: var(--rojo-cl);
    }
    .stat-card__lbl { font-size: 0.65rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; margin-top: 2px; }

    /* ── DIAGONAL DIVIDER ── */
    .divider {
      height: 80px; overflow: hidden;
      background: var(--gris-suav);
      clip-path: polygon(0 100%, 100% 0, 100% 100%);
      margin-top: -1px;
    }

    /* ── SERVICIOS ── */
    .servicios {
      background: var(--gris-suav); color: var(--gris-osc);
      padding: 5rem 2.5rem;
    }
    .section-header { text-align: center; margin-bottom: 3.5rem; }
    .section-header__eyebrow {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--rojo); display: block;
      margin-bottom: 0.5rem;
    }
    .section-header__title {
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 800; font-size: clamp(2rem, 4vw, 3rem);
      color: var(--gris-osc); letter-spacing: -0.01em;
    }
    .section-header__line {
      width: 3rem; height: 3px; background: var(--rojo);
      margin: 1rem auto 0; border-radius: 2px;
    }
    .servicios__grid {
      display: flex; flex-wrap: wrap; justify-content: center;
      gap: 1.5rem; max-width: 1200px; margin: 0 auto;
    }
    .serv-card {
      background: var(--blanco); border-radius: 12px;
      padding: 2rem 1.75rem;
      border: 1px solid rgba(0,0,0,0.06);
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      transition: all 0.3s; position: relative; overflow: hidden;
      flex: 1 1 250px; max-width: 270px;
    }
    .serv-card::before {
      content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--rojo); transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s;
    }
    .serv-card:hover::before { transform: scaleX(1); }
    .serv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
    .serv-card__icon {
      width: 52px; height: 52px; background: rgba(192,34,42,0.08);
      border-radius: 10px; display: flex; align-items: center;
      justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem;
    }
    .serv-card__title {
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 700; font-size: 1.2rem; color: var(--gris-osc);
      margin-bottom: 0.5rem;
    }
    .serv-card__desc { font-size: 0.9rem; color: #666; line-height: 1.6; }

    /* ── NOSOTROS ── */
    .nosotros {
      background: var(--gris-med); padding: 5rem 2.5rem;
    }
    .nosotros__inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
      align-items: center;
    }
    .nosotros__img-block {
      position: relative;
    }
    .nosotros__img-frame {
      background: rgba(192,34,42,0.08);
      border: 1px solid rgba(192,34,42,0.25);
      border-radius: 16px; padding: 2.5rem;
      display: flex; align-items: center; justify-content: center;
      min-height: 380px;
    }
    .nosotros__img-frame img { width: 280px; height: 280px; object-fit: contain; }
    .nosotros__badge {
      position: absolute; bottom: -16px; right: -16px;
      background: var(--rojo); color: var(--blanco);
      border-radius: 12px; padding: 1rem 1.25rem; text-align: center;
      font-family: "Barlow Condensed", sans-serif;
    }
    .nosotros__badge-num { font-weight: 900; font-size: 2rem; display: block; }
    .nosotros__badge-lbl { font-size: 0.7rem; letter-spacing: 0.08em; opacity: 0.9; }
    .nosotros__text .section-header { text-align: left; }
    .nosotros__text .section-header__line { margin: 1rem 0 0; }
    .nosotros__lead {
      color: rgba(255,255,255,0.75); line-height: 1.8; margin: 1.5rem 0;
    }
    .nosotros__text .serv-card {
      margin-bottom: 1.5rem; padding: 2.25rem 2rem;
    }
    .nosotros__text .serv-card:last-of-type { margin-bottom: 2rem; }
    .nosotros__valores {
      display: flex; flex-direction: column; gap: 0.75rem;
    }
    .valor-item {
      display: flex; align-items: center; gap: 0.75rem;
      font-size: 0.9rem; color: rgba(255,255,255,0.8);
    }
    .valor-item::before {
      content: ""; width: 8px; height: 8px; background: var(--rojo);
      border-radius: 50%; flex-shrink: 0;
    }

    /* ── CONTACTO ── */
    .contacto {
      background: #111; padding: 5rem 2.5rem;
    }
    .contacto__inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    }
    .contacto__form-side {}
    .form-group { margin-bottom: 1.25rem; }
    .form-group label {
      display: block; font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: rgba(255,255,255,0.5); margin-bottom: 0.5rem;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%; background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 6px; padding: 0.75rem 1rem;
      color: var(--blanco); font-family: "Barlow", sans-serif; font-size: 0.95rem;
      outline: none; transition: border-color 0.2s;
    }
    .form-group input:focus,
    .form-group textarea:focus { border-color: var(--rojo); }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .contacto__map-side {}
    .map-label {
      font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: rgba(255,255,255,0.5);
      margin-bottom: 0.75rem; display: block;
    }
    /* ==========================================
       ⬇ AQUÍ VA TU URL DE GOOGLE MAPS ⬇
       Reemplaza el src del iframe con tu URL
       de Google Maps embed.
       
       Ejemplo: Para obtener tu URL:
       1. Abre Google Maps y busca tu ubicación
       2. Haz clic en "Compartir"
       3. Selecciona "Insertar un mapa"
       4. Copia solo la URL del atributo src=""
       
       ========================================== */
    .map-frame {
      width: 100%; height: 340px; border-radius: 12px;
      overflow: hidden; border: 1px solid rgba(192,34,42,0.25);
      position: relative;
    }
    .map-frame iframe {
      width: 100%; height: 100%; border: 0;
    }
    .map-placeholder {
      width: 100%; height: 100%;
      background: rgba(255,255,255,0.03);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 0.75rem; color: rgba(255,255,255,0.35);
      font-size: 0.9rem; text-align: center; padding: 2rem;
    }
    .map-placeholder__icon { font-size: 2.5rem; }
    .map-placeholder code {
      font-size: 0.75rem; background: rgba(192,34,42,0.15);
      border: 1px solid rgba(192,34,42,0.3); color: var(--rojo-cl);
      padding: 0.25rem 0.6rem; border-radius: 4px;
    }
    .contacto__info { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
    .info-item {
      display: flex; align-items: center; gap: 0.75rem;
      font-size: 0.9rem; color: rgba(255,255,255,0.65);
    }
    .info-item span:first-child { font-size: 1.1rem; }

    .contacto__info--grande {
      margin-top: 0; display: flex; flex-direction: column; gap: 2rem;
      justify-content: center; height: 100%;
    }
    .info-item--grande {
      align-items: flex-start; gap: 1.25rem;
    }
    .info-item--grande span:first-child {
      font-size: 2rem; flex-shrink: 0;
    }
    .info-item--grande div {
      display: flex; flex-direction: column; gap: 0.35rem;
    }
    .info-item__label {
      font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: rgba(255,255,255,0.45);
    }
    .info-item__valor {
      font-family: "Barlow Condensed", sans-serif;
      font-size: 1.6rem; font-weight: 700; color: var(--blanco);
      line-height: 1.3;
    }

    /* ── FOOTER ── */
    .footer {
      background: #0a0a0a;
      border-top: 1px solid rgba(192,34,42,0.2);
      padding: 2rem 2.5rem;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer__brand { display: flex; align-items: center; gap: 0.6rem; }
    .footer__brand-name {
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 800; font-size: 1.1rem; color: rgba(255,255,255,0.6);
    }
    .footer__brand-name span { color: var(--rojo); }
    .footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .hero__inner, .nosotros__inner, .contacto__inner {
        grid-template-columns: 1fr;
      }
      .hero__visual { align-items: center; }
      .hero__stats { width: 100%; }
      .nav__links { display: none; }
      .nosotros__badge { bottom: -12px; right: 0; }
    }
