*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --orange:       #F5821F;
    --orange-dark:  #D46A08;
    --orange-light: #FFA04D;
    --orange-pale:  #FFF3E8;
    --blue:         #1B3D8F;
    --blue-dark:    #122B6A;
    --blue-mid:     #2A54B5;
    --blue-light:   #E8EEFA;
    --white:        #FFFFFF;
    --offwhite:     #F8F7F5;
    --gray:         #6B6B6B;
    --gray-light:   #EDECE9;
    --text:         #1A1A1A;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Nunito Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    background: #fff!important;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(27,61,143,0.25);
  }

.nav-logo img {
  height: 42px; /* mobile por defecto */
  display: block;
}

@media (min-width: 768px) {
  .nav-logo img {
    height: 80px; /* desktop */
  }
}

  .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .nav-links a {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--orange); }

  @media (max-width: 1024px) {
    .nav-links { display: none; }
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .nav-phone {
    color: #000!important;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .nav-phone:hover { color: var(--white); }

  .nav-cta {
    background: var(--orange);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 0.55rem 1.3rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
  }

  .nav-cta:hover { background: var(--orange-dark); transform: scale(1.02); }

  /* ── HERO ── */
  .hero {
    background: var(--blue);
    position: relative;
    overflow: hidden;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 82vh;
    gap: 2rem;
  }

  /* Video de fondo */
  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.35;
    pointer-events: none;
  }

  /* Overlay degradé sobre el video */
  .hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(18, 43, 106, 0.95) 0%,
      rgba(27, 61, 143, 0.82) 55%,
      rgba(42, 84, 181, 0.60) 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  /* Fondo base por si el video no carga */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, var(--blue-mid) 100%);
    z-index: 0;
  }

  /* Línea naranja inferior */
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 5px;
    background: var(--orange);
    z-index: 10;
  }

  .hero-circle {
    position: absolute;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    top: -120px; right: -60px;
    z-index: 2;
    pointer-events: none;
  }

  .hero-circle-2 {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(245,130,31,0.10);
    bottom: -80px; left: 35%;
    z-index: 2;
    pointer-events: none;
  }


  .hero-left {
    position: relative;
    z-index: 5;
    padding: 4rem 0;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,130,31,0.18);
    border: 1px solid rgba(245,130,31,0.4);
    border-radius: 100px;
    padding: 0.35rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--orange-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
  }

  h1 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.2rem;
  }

  h1 .accent { color: var(--orange); }

  .hero-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 460px;
    margin-bottom: 2.2rem;
  }

  .hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(245,130,31,0.4);
  }

  .btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,130,31,0.5);
  }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 1.6rem;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.25);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
  }

  .btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); }

  .trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
  }

  .trust-badge .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
  }

  .hero-right {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-camion-img {
    width: min(480px, 95%);
    filter: drop-shadow(0 24px 60px rgba(0,0,0,0.45));
    animation: floatLogo 4s ease-in-out infinite;
  }

  .hero-logo-img {
    width: min(380px, 90%);
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.35));
    animation: floatLogo 4s ease-in-out infinite;
  }

  @keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }

  /* ── STRIP ── */
  .strip {
    background: var(--orange);
    padding: 1rem 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }

  .strip-item {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    color: var(--white);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .strip-item::before { content: '✓'; font-size: 0.9rem; }

  /* ── SECCIONES ── */
  .section { padding: 5.5rem 5%; }
  .section-inner { max-width: 1140px; margin: 0 auto; }

  .section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.6rem;
  }

  .section-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--blue);
    line-height: 1.1;
    margin-bottom: 0.6rem;
  }

  .section-sub {
    font-size: 1rem;
    color: var(--gray);
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 3rem;
  }

  /* ── CARDS ── */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }

  .card {
    background: var(--white);
    border: 1.5px solid var(--gray-light);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }

  .card:hover {
    border-color: var(--orange);
    box-shadow: 0 6px 28px rgba(245,130,31,0.12);
    transform: translateY(-3px);
  }

  .card-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: var(--orange-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
  }

  .card-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--blue);
    margin-bottom: 0.4rem;
  }

  .card-text {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--gray);
  }

  /* ── PROCESO ── */
  .process-bg { background: var(--offwhite); }

  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 24px;
    list-style: none;        /* reset <ol> */
    padding-left: 0;
    margin: 0;
    counter-reset: step;
  }

  .step {
    background: var(--white);
    border-radius: 12px;
    border: 1.5px solid var(--gray-light);
    padding: 2rem 1.5rem;
    text-align: center;
    list-style: none;        /* por las dudas (<li>) */
  }

  .step-num {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 4px 14px rgba(27,61,143,0.25);
  }

  .step-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--blue);
    margin-bottom: 0.5rem;
  }

  .step-text {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
  }

  /* ── PRECIO ── */
  .price-box {
    background: var(--blue);
    border-radius: 16px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-top: 2rem;
  }

  .price-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.4rem;
  }

  .price-amount {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    color: var(--white);
    line-height: 1;
  }

  .price-unit {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    margin-left: 4px;
  }

  .price-note {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    margin-top: 0.75rem;
    line-height: 1.55;
  }

  .price-note strong { color: var(--orange-light); font-weight: 700; }

  .price-divider {
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.15);
    min-height: 120px;
  }

  .include-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
  }

  .include-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.65rem;
    font-weight: 500;
  }

  .check {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    font-weight: 900;
  }

  /* ── COBERTURA ── */
  .coverage-bg { background: var(--blue-light); }

  .coverage-section {
    position: relative;
    overflow: hidden;
  }

  .coverage-truck-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  .coverage-truck-img {
    position: absolute;
    right: 40px;
    bottom: -20px;
    width: min(620px, 60%);
    opacity: 0.85;
  }

  .coverage-inner {
    position: relative;
    z-index: 1;
  }

  .coverage-content {
    max-width: 55%;
  }

  .zones {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2rem;
  }

  .zone-pill {
    background: var(--white);
    border: 2px solid var(--blue);
    color: var(--blue);
    padding: 0.55rem 1.3rem;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    font-family: 'Nunito', sans-serif;
  }

  /* ── CTA FINAL ── */
  .cta-section {
    background: var(--blue);
    padding: 6rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(245,130,31,0.08);
    top: -200px; left: -100px;
  }

  .cta-section::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    bottom: -150px; right: -50px;
  }

  .cta-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }

  .cta-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1rem;
  }

  .cta-title .orange { color: var(--orange); }

  .cta-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2.5rem;
    line-height: 1.65;
  }

  .contact-options {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }

  .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
  }

  .contact-btn:hover { transform: translateY(-3px); }

  .btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 18px rgba(37,211,102,0.35);
  }
  .btn-whatsapp:hover { box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

  .btn-call {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(245,130,31,0.35);
  }
  .btn-call:hover { box-shadow: 0 8px 28px rgba(245,130,31,0.5); }

  .btn-email {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
  }
  .btn-email:hover { background: rgba(255,255,255,0.18); }

  .cta-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  /* ── FOOTER ── */
  footer {
    background: #fff;
    border-top: 4px solid var(--orange);
    padding: 2.2rem 5%;
  }

  .footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
  }

  .footer-logo-col img {
    height: 44px;
    display: block;
  }

  .footer-center-col {
    text-align: center;
  }

  .footer-rights {
    font-size: 0.82rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.25rem;
  }

  .footer-desc {
    font-size: 0.78rem;
    color: #555;
    font-weight: 500;
  }

  .footer-optium-col {
    text-align: right;
  }

  .footer-design-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.2rem;
  }

  .footer-optium-link {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--orange);
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    transition: color 0.2s;
    letter-spacing: 0.01em;
  }

  .footer-optium-link:hover {
    color: var(--blue);
  }

  @media (max-width: 700px) {
    .footer-inner {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 1.2rem;
    }
    .footer-logo-col { display: flex; justify-content: center; }
    .footer-optium-col { text-align: center; }
  }



  /* ── STICKY WA ── */
  .wa-float {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 999;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 0.85rem 1.4rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex; align-items: center; gap: 8px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    transition: transform 0.2s;
    animation: pulseWa 2.5s infinite;
  }

  .wa-float:hover { transform: scale(1.05); }

  @keyframes pulseWa {
    0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 36px rgba(37,211,102,0.65); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 800px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { padding: 1rem 0 3rem; }
    .hero-camion-img { width: min(320px, 85%); }
    .hero-logo-img { width: 260px; }
    .hero-circle, .hero-circle-2 { display: none; }
    nav { height: auto; padding: 0.75rem 5%; }
    .nav-phone { display: none; }
    .price-box { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
    .price-divider { width: 100%; height: 1px; min-height: 0; }
    .coverage-content { max-width: 100%; }
    .coverage-truck-img { width: min(400px, 80%); opacity: 0.10; }
  }

  /* ── TESTIMONIOS ── */
  .testimonios-section { background: var(--offwhite); overflow: hidden; }

  .testimonios-carousel {
    overflow: hidden;
    margin-top: 2.5rem;
  }

  .testimonios-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  }

  .testimonio-card {
    background: var(--white);
    border: 1.5px solid var(--gray-light);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .testimonio-card:hover {
    box-shadow: 0 6px 28px rgba(245,130,31,0.12);
    transform: translateY(-3px);
  }

  .testimonio-avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
  }

  .testimonio-avatar svg { width: 42px; height: 42px; }

  .avatar-f { background: linear-gradient(135deg, #e07eb5, #c45fa0); }
  .avatar-m { background: linear-gradient(135deg, #5b8dee, #1B3D8F); }

  .testimonio-stars {
    color: #F5A623;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
  }

  .testimonio-text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--gray);
    margin-bottom: 1rem;
    font-style: italic;
  }

  .testimonio-nombre {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.03em;
  }

  .testimonios-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
  }

  .t-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--gray-light);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
  }

  .t-dot.active { background: var(--orange); transform: scale(1.3); }


  /* ── SOCIAL REMINDER ── */
  .social-reminder {
    background: var(--blue);
    padding: 3.5rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .social-reminder::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(245,130,31,0.08);
    top: -150px; right: -80px;
    pointer-events: none;
  }

  .social-reminder-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .social-reminder-text {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 0.5rem;
  }

  .social-reminder-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--white);
    margin-bottom: 0.6rem;
  }

  .social-reminder-title span { color: var(--orange); }

  .social-reminder-sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
  }

  .social-reminder-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .soc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.15s, opacity 0.15s;
  }

  .soc-btn:hover { transform: translateY(-3px); opacity: 0.9; }

  .soc-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
  .soc-fb { background: #1877F2; color: #fff; }
  .soc-tk { background: #010101; color: #fff; }

  /* ── FOOTER SOCIAL ── */
  .footer-social {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 0.9rem;
  }

  .footer-social a {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--orange-pale);
    color: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.15s;
  }

  .footer-social a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
  }

  @media (max-width: 500px) {
    .hero-ctas { flex-direction: column; }
    .btn-primary, .btn-ghost { justify-content: center; }
    .contact-options { flex-direction: column; align-items: center; }
    .contact-btn { width: 100%; max-width: 300px; justify-content: center; }
    .wa-float span { display: none; }
    .wa-float { padding: 0.9rem; border-radius: 50%; }
  }

  /* ─────────────────────────────────────────────────────────────────────
     HAMBURGER · MOBILE DRAWER · LAZY FADE-IN
     ───────────────────────────────────────────────────────────────────── */

  /* Botón hamburguesa (oculto en desktop) */
  .nav-hamburger {
    display: none;
    background: transparent;
    border: 0;
    width: 44px; height: 44px;
    padding: 10px;
    cursor: pointer;
    margin-left: 8px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    z-index: 102;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--blue);
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.2s ease;
    transform-origin: center;
  }
  /* animación a "X" cuando está abierto */
  .nav-hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* Mostrar hamburguesa y ocultar CTAs del nav en mobile */
  @media (max-width: 1024px) {
    .nav-hamburger { display: inline-flex; }
  }
  @media (max-width: 700px) {
    .nav-right { display: none; }       /* en mobile las CTAs viven en el drawer */
    nav { justify-content: space-between; }
  }

  /* Overlay oscuro detrás del drawer */
  .mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 43, 106, 0.55);
    backdrop-filter: blur(2px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }
  .mobile-drawer-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  /* Drawer lateral */
  .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86%, 360px);
    height: 100dvh;
    background: var(--white);
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -8px 0 36px rgba(18, 43, 106, 0.18);
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.5rem 2rem;
  }
  .mobile-drawer.is-open { transform: translateX(0); }

  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-light);
  }
  .mobile-drawer-logo {
    height: 38px;
    width: auto;
    display: block;
  }
  .mobile-drawer-close {
    background: transparent;
    border: 0;
    font-size: 1.4rem;
    color: var(--blue);
    cursor: pointer;
    width: 40px; height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .mobile-drawer-close:hover { background: var(--gray-light); }

  .mobile-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 1.5rem;
  }
  .mobile-drawer-links a {
    display: block;
    padding: 0.85rem 0.6rem;
    color: var(--blue);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
  }
  .mobile-drawer-links a:hover,
  .mobile-drawer-links a:active {
    background: var(--orange-pale);
    color: var(--orange-dark);
  }

  .mobile-drawer-ctas {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-light);
  }
  .mobile-drawer-cta-wa,
  .mobile-drawer-cta-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.85rem 1.2rem;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .mobile-drawer-cta-wa {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(245, 130, 31, 0.35);
  }
  .mobile-drawer-cta-wa:hover { background: var(--orange-dark); }
  .mobile-drawer-cta-tel {
    background: var(--white);
    color: var(--blue);
    border: 1.5px solid var(--blue);
  }
  .mobile-drawer-cta-tel:hover { background: var(--blue); color: var(--white); }

  /* ─── LAZY FADE-IN ────────────────────────────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.7s cubic-bezier(.2, .65, .3, 1),
      transform 0.7s cubic-bezier(.2, .65, .3, 1);
    will-change: opacity, transform;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  /* Stagger sutil en grids (cards + steps) — animación en cascada */
  .cards-grid .reveal:nth-child(1)  { transition-delay: 0.00s; }
  .cards-grid .reveal:nth-child(2)  { transition-delay: 0.06s; }
  .cards-grid .reveal:nth-child(3)  { transition-delay: 0.12s; }
  .cards-grid .reveal:nth-child(4)  { transition-delay: 0.18s; }
  .cards-grid .reveal:nth-child(5)  { transition-delay: 0.24s; }
  .steps .reveal:nth-child(1)       { transition-delay: 0.00s; }
  .steps .reveal:nth-child(2)       { transition-delay: 0.08s; }
  .steps .reveal:nth-child(3)       { transition-delay: 0.16s; }
  .steps .reveal:nth-child(4)       { transition-delay: 0.24s; }

  /* Respeto a usuarios que pidieron reducir movimiento */
  @media (prefers-reduced-motion: reduce) {
    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
    .hero-camion-img,
    .hero-logo-img,
    .wa-float { animation: none !important; }
  }