*, *::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: 70px; /* desktop */
  }
}

  .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;
  }

  .step {
    background: var(--white);
    border-radius: 12px;
    border: 1.5px solid var(--gray-light);
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .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; }
  }

  @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%; }
  }