html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
}

@layer reset, base, components, sections, responsive;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: 145px; overflow-x: hidden; max-width: 100%; }
  body, h1, h2, h3, p, figure { margin: 0; }
  body { overflow-x: hidden; max-width: 100%; width: 100%; position: relative; }
  img, video, iframe { display: block; max-width: 100%; }
  button, input { font: inherit; }
  a { color: inherit; }
}

@layer base {
  :root {
    --red: #a90000;
    --red-dark: #720000;
    --red-bright: #d40000;
    --navy: #092b63;
    --navy-dark: #041a3d;
    --green: #18a44b;
    --green-dark: #087d34;
    --ink: #171b22;
    --muted: #5f6772;
    --line: #dde2e8;
    --soft: #f3f5f7;
    --white: #fff;
    --shadow: 0 18px 50px rgba(10, 25, 47, .12);
    --radius: 18px;
    --container: 1180px;
  }
  body { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: #fff; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; width: 100%; max-width: 100%; }
  body.menu-open { overflow: hidden; }
  h1, h2, h3, .benefits strong, .topbar, .btn { font-family: "Arial Narrow", Inter, ui-sans-serif, sans-serif; font-weight: 900; letter-spacing: -.025em; line-height: 1.08; }
  h1 { font-size: clamp(2.7rem, 6vw, 5.4rem); text-transform: uppercase; word-break: break-word; }
  h2 { font-size: clamp(2rem, 4vw, 3.35rem); text-transform: uppercase; color: var(--navy-dark); word-break: break-word; }
  h3 { font-size: 1.28rem; word-break: break-word; }
  p { color: var(--muted); overflow-wrap: break-word; }
  .container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
  .narrow { max-width: 860px; }
  .section { padding: 96px 0; overflow-x: clip; position: relative; }
  .skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; background: #fff; color: var(--navy); padding: 12px 18px; border-radius: 8px; font-weight: 800; }
  .skip-link:focus { top: 16px; }
  :focus-visible { outline: 3px solid #ffb000; outline-offset: 3px; }
  .center { text-align: center; margin-top: 40px; }
  .lead { font-size: 1.18rem; color: #333b45; }
  .visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
}

@layer components {
  .btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px; border: 0; border-radius: 10px; padding: 14px 22px; text-decoration: none; text-transform: uppercase; font-size: .93rem; letter-spacing: .035em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; cursor: pointer; max-width: 100%; }
  .btn:hover { transform: translateY(-2px); }
  .btn-lg { padding: 18px 26px; min-height: 60px; font-size: 1rem; }
  .hero-actions { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; width: 100%; max-width: 600px; margin: 0 auto; }
  .btn-whatsapp { color: #fff; background: linear-gradient(135deg, #20b858, var(--green-dark)); box-shadow: 0 10px 25px rgba(8, 125, 52, .26); }
  .btn-whatsapp:hover { box-shadow: 0 14px 35px rgba(8, 125, 52, .38); }
  .btn-primary { background: linear-gradient(135deg, var(--red-bright), var(--red-dark)); color: #fff; box-shadow: 0 12px 28px rgba(169, 0, 0, .2); }
  .btn-outline { border: 2px solid rgba(255,255,255,.76); color: #fff; background: rgba(255,255,255,.07); backdrop-filter: blur(4px); }
  .wa-icon { display: inline-grid; place-items: center; width: 23px; height: 23px; border: 2px solid currentColor; border-radius: 50%; line-height: 1; font-size: .68rem; }
  .section-heading { max-width: 760px; margin: 0 auto 48px; text-align: center; }
  .section-heading h2 { margin-top: 9px; }
  .section-heading p { margin-top: 15px; font-size: 1.08rem; }
  .section-kicker { display: block; color: var(--red); font-weight: 900; text-transform: uppercase; font-size: .78rem; letter-spacing: .18em; }
  .section-kicker.light { color: #ff9b9b; }
  .section-copy h2 { margin: 12px 0 22px; }
  .section-copy p + p { margin-top: 14px; }
  .section-copy .btn { margin-top: 28px; }
  .split-layout { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(50px, 7vw, 95px); align-items: center; }
  .split-layout.reverse { grid-template-columns: .98fr 1.02fr; }
  .check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
  .check-list li { display: flex; gap: 12px; align-items: center; font-weight: 750; color: var(--navy-dark); }
  .check-list li::before { content: "✓"; display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; color: #fff; background: var(--red); font-size: .78rem; }
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
  .reveal.visible { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }
}

@layer sections {
  .site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); box-shadow: 0 4px 20px rgba(5, 21, 45, .09); backdrop-filter: blur(12px); }
  .topbar { background: var(--navy-dark); color: #fff; font-size: .75rem; text-transform: uppercase; letter-spacing: .07em; }
  .topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 32px; }
  .topbar a { text-decoration: none; color: #fff; }
  .header-main { min-height: 88px; display: flex; align-items: center; gap: 28px; }
  .brand { width: 205px; align-self: stretch; display: grid; place-items: center; }
  .brand img { width: 100%; height: 76px; object-fit: contain; }
  .header-contact { margin-left: auto; display: grid; text-align: right; line-height: 1.2; }
  .header-contact strong { color: var(--red); font-size: .82rem; letter-spacing: .11em; }
  .header-contact a { text-decoration: none; color: var(--navy-dark); font-size: 1.25rem; font-weight: 900; }
  .header-whatsapp { min-width: 225px; }
  .menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; }
  .menu-toggle span { display: block; height: 3px; background: var(--navy-dark); margin: 5px 0; border-radius: 2px; }
  .main-nav { border-top: 1px solid #e5e8ed; }
  .nav-links { display: flex; justify-content: center; gap: 38px; }
  .nav-links a { position: relative; padding: 13px 0 12px; text-decoration: none; text-transform: uppercase; color: var(--navy-dark); font-size: .76rem; font-weight: 850; letter-spacing: .075em; }
  .nav-links a::after { content: ""; position: absolute; bottom: 7px; left: 0; right: 100%; height: 2px; background: var(--red); transition: right .2s; }
  .nav-links a:hover::after { right: 0; }

  .hero-banner { position: relative; width: 100%; margin: 0; padding: 0; background: var(--navy-dark); line-height: 0; overflow: hidden; }
  .hero-banner-link { display: block; width: 100%; line-height: 0; text-decoration: none; cursor: pointer; }
  .hero-picture { display: block; width: 100%; margin: 0; padding: 0; line-height: 0; }
  .hero-img { display: block; width: 100%; height: auto; max-width: 100%; margin: 0; padding: 0; object-fit: contain; }

  .benefits { background: #fff; position: relative; z-index: 3; box-shadow: 0 -8px 30px rgba(0,0,0,.08); }
  .benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); }
  .benefits article { display: flex; gap: 15px; align-items: center; justify-content: center; min-height: 118px; border-right: 1px solid var(--line); }
  .benefits article:last-child { border: 0; }
  .benefit-icon { display: grid; place-items: center; width: 48px; height: 48px; color: #fff; background: var(--red); border-radius: 12px; font-size: 1.3rem; font-weight: 900; }
  .benefits strong, .benefits small { display: block; }
  .benefits strong { color: var(--navy-dark); font-size: 1.04rem; }
  .benefits small { color: var(--muted); font-size: .75rem; margin-top: 4px; }

  .about { background: linear-gradient(180deg, #fff, #fafbfc); }
  .about-image { position: relative; }
  .about-image::before { content: ""; position: absolute; width: 72%; height: 72%; left: -22px; bottom: -22px; border-radius: var(--radius); background: var(--red); z-index: 0; }
  .about-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 1.1; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
  .about-image figcaption { position: absolute; z-index: 2; right: -12px; bottom: 24px; max-width: 260px; background: var(--navy-dark); color: #fff; padding: 15px 19px; border-radius: 10px; font-size: .78rem; font-weight: 700; }

  .services { background: var(--soft); }
  .service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
  .service-card { overflow: hidden; border-radius: var(--radius); background: #fff; box-shadow: 0 10px 35px rgba(6, 28, 64, .08); transition: transform .25s, box-shadow .25s; }
  .service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
  .service-card > img { width: 100%; height: 235px; object-fit: cover; }
  .card-content { position: relative; padding: 28px; }
  .card-number { position: absolute; top: -28px; right: 20px; display: grid; place-items: center; width: 56px; height: 56px; border: 5px solid #fff; border-radius: 50%; background: var(--red); color: #fff; font-weight: 900; }
  .card-content h2 { font-size: 1.52rem; margin-bottom: 13px; }
  .card-content p { min-height: 78px; }
  .card-link { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--green-dark); text-decoration: none; text-transform: uppercase; font-size: .8rem; font-weight: 900; letter-spacing: .04em; }
  .card-link span { font-size: 1.3rem; }

  .emergency-cta { background: linear-gradient(105deg, var(--red-dark), var(--red-bright)); color: #fff; padding: 48px 0; }
  .emergency-inner { display: flex; justify-content: space-between; align-items: center; gap: 35px; }
  .emergency-inner > div:first-child > span { font-size: .78rem; text-transform: uppercase; letter-spacing: .15em; color: #ffd0d0; font-weight: 800; }
  .emergency-inner h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); margin-top: 5px; }
  .emergency-inner p { color: rgba(255,255,255,.8); margin-top: 8px; }
  .emergency-actions { display: grid; text-align: center; gap: 8px; }
  .emergency-actions > a:last-child { color: #fff; text-decoration: none; font-weight: 900; font-size: 1.15rem; }

  .performed-services { background: #fff; }
  .info-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
  .info-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); border-top: 5px solid var(--red); }
  .info-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 13px; background: #fee; color: var(--red); font-weight: 950; }
  .info-card h3 { color: var(--navy-dark); text-transform: uppercase; margin: 23px 0 12px; }
  .info-card a { display: inline-block; color: var(--green-dark); margin-top: 20px; font-weight: 850; text-decoration: none; font-size: .83rem; text-transform: uppercase; }

  .why-us { background: var(--navy-dark); overflow: hidden; }
  .why-us h2, .why-us p { color: #fff; }
  .why-us p { color: rgba(255,255,255,.68); }
  .why-image { position: relative; }
  .why-image::before { content: ""; position: absolute; inset: -24px 24px 24px -24px; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); }
  .why-image img { position: relative; width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); }
  .differentials { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
  .differentials div { display: flex; gap: 11px; align-items: center; padding: 12px; background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.1); border-radius: 9px; color: #fff; font-size: .84rem; }
  .differentials b { color: #ff7272; }

  .gallery-section { background: #f7f8fa; }
  .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px; grid-auto-flow: dense; gap: 14px; }
  .gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: 12px; cursor: zoom-in; background: #ddd; box-shadow: 0 8px 24px rgba(6,28,64,.1); }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item::after { content: "+"; position: absolute; right: 14px; bottom: 14px; display: grid; place-items: center; width: 38px; height: 38px; color: #fff; background: rgba(169,0,0,.88); border-radius: 50%; font-size: 1.3rem; opacity: 0; transform: scale(.75); transition: .25s; }
  .gallery-item:hover::after { opacity: 1; transform: scale(1); }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
  .gallery-item:hover img { transform: scale(1.055); }

  dialog:not([open]) { display: none !important; }
  .lightbox { position: fixed; inset: 0; width: 100%; max-width: 100%; height: 100%; max-height: 100%; margin: 0; padding: 40px 80px; border: 0; background: rgba(2,8,18,.96); color: #fff; overflow: hidden; }
  .lightbox::backdrop { background: rgba(2,8,18,.96); }
  .lightbox[open] { display: grid; grid-template-columns: 60px 1fr 60px; align-items: center; }
  .lightbox figure { display: grid; place-items: center; height: calc(100vh - 80px); }
  .lightbox figure img { max-height: calc(100vh - 130px); max-width: 100%; object-fit: contain; border-radius: 8px; }
  .lightbox figcaption { margin-top: 12px; color: rgba(255,255,255,.75); text-align: center; }
  .lightbox button { border: 0; color: #fff; background: rgba(255,255,255,.1); cursor: pointer; }
  .lightbox-close { position: absolute; right: 24px; top: 20px; width: 48px; height: 48px; border-radius: 50%; font-size: 2rem; }
  .lightbox-nav { width: 52px; height: 70px; border-radius: 9px; font-size: 3rem; }

  .video-section { background: #fff; }
  .video-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 65px; align-items: center; }
  .service-video { width: 100%; max-height: 600px; border-radius: var(--radius); background: #000; box-shadow: var(--shadow); }

  .steps-section { background: var(--soft); }
  .steps-grid { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); counter-reset: steps; gap: 16px; }
  .steps-grid li { position: relative; padding: 28px 22px; background: #fff; border-radius: 14px; border-bottom: 4px solid var(--navy); }
  .steps-grid li:not(:last-child)::after { content: "→"; position: absolute; right: -15px; top: 45px; z-index: 2; display: grid; place-items: center; width: 30px; height: 30px; background: var(--red); color: #fff; border-radius: 50%; }
  .steps-grid b { color: var(--red); font-size: 1.8rem; }
  .steps-grid h3 { color: var(--navy-dark); margin: 13px 0 9px; }
  .steps-grid p { font-size: .88rem; }

  .reviews-ready { background: #fff; }
  .reviews-ready h2 { margin: 10px 0 12px; }
  .reviews-lead { max-width: 680px; margin-bottom: 30px; font-size: 1.06rem; }
  .reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
  .review-card { position: relative; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 34px rgba(6, 28, 64, .08); }
  .review-card.featured { border-color: rgba(169,0,0,.24); box-shadow: 0 18px 45px rgba(169,0,0,.1); }
  .review-top { display: flex; align-items: center; gap: 13px; }
  .review-avatar { display: grid; place-items: center; width: 48px; height: 48px; flex: 0 0 48px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-dark)); color: #fff; font-weight: 900; font-size: .9rem; }
  .review-card.featured .review-avatar { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
  .review-top h3 { color: var(--navy-dark); font-size: 1.05rem; margin-bottom: 2px; }
  .review-top span { color: var(--muted); font-size: .78rem; font-weight: 700; }
  .google-mark { margin-left: auto; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: #f1f4f8; color: #4285f4; font-family: Arial, sans-serif; font-size: 1rem; }
  .review-stars { margin-top: 18px; color: #f6b300; letter-spacing: .08em; font-size: 1rem; }
  .review-card p { margin-top: 12px; color: #495463; font-size: .94rem; line-height: 1.62; }

  /* ================= REGIONS ================= */
  .regions {
    background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
    color: var(--ink);
    position: relative;
    overflow: hidden;
    padding: 96px 0;
  }
  .regions::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 14% 8%, rgba(169,0,0,.08), transparent 34%),
                radial-gradient(circle at 88% 76%, rgba(9,43,99,.09), transparent 42%);
    pointer-events: none;
  }
  .regions-heading {
    text-align: center;
    max-width: 820px;
    margin-inline: auto;
    position: relative;
    z-index: 2;
  }
  .regions-heading .section-kicker {
    color: var(--red);
  }
  .regions-heading h2 {
    color: var(--navy-dark);
    margin-top: 12px;
  }
  .regions-heading .lead {
    color: #3d4652;
    margin-top: 14px;
    font-size: 1.14rem;
  }
  .regions-heading .lead strong {
    color: var(--navy-dark);
  }
  .regions-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 32px;
    margin-top: 50px;
    align-items: stretch;
  }

  .region-hub-card {
    position: relative;
    border-radius: var(--radius);
    padding: 42px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(160deg, rgba(255,255,255,.92) 0%, rgba(245,248,252,.96) 100%),
                url('../images/guincho-carro-jatai.png') center/cover no-repeat;
    background-blend-mode: screen;
    border: 1px solid rgba(9,43,99,.12);
    box-shadow: 0 18px 42px rgba(9,43,99,.11);
    overflow: hidden;
  }
  .region-hub-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--navy));
  }
  .hub-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid rgba(9,43,99,.12);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--navy-dark);
    align-self: flex-start;
  }
  .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(24,164,75,.36);
    animation: hub-pulse 1.8s infinite;
  }
  @keyframes hub-pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(24,164,75,.36); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(24,164,75,0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(24,164,75,0); }
  }
  .hub-content {
    margin-top: 36px;
  }
  .hub-tag {
    display: block;
    color: var(--red);
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 6px;
  }
  .region-hub-card h3 {
    font-family: "Arial Narrow", Inter, sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -.03em;
    color: var(--navy-dark);
    line-height: 1.02;
    text-transform: uppercase;
  }
  .region-hub-card p {
    color: #4f5966;
    font-size: 1.02rem;
    margin-top: 14px;
    line-height: 1.6;
  }
  .hub-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .stat-item strong {
    display: block;
    font-size: 1.35rem;
    color: var(--navy-dark);
    font-family: "Arial Narrow", Inter, sans-serif;
  }
  .stat-item span {
    font-size: .72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .04em;
  }
  .hub-btn {
    margin-top: 28px;
    width: 100%;
  }

  .regions-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .coverage-box {
    background: #fff;
    border: 1px solid rgba(9,43,99,.1);
    border-radius: var(--radius);
    padding: 26px 28px;
    box-shadow: 0 14px 32px rgba(9,43,99,.08);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  }
  .coverage-box:hover {
    border-color: rgba(169,0,0,.2);
    box-shadow: 0 18px 38px rgba(9,43,99,.12);
    transform: translateY(-2px);
  }
  .coverage-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .coverage-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    background: #fff2f2;
    border: 1px solid #ffdada;
    font-size: 1.25rem;
    color: var(--red);
  }
  .coverage-header h4 {
    font-family: "Arial Narrow", Inter, sans-serif;
    font-size: 1.28rem;
    font-weight: 900;
    color: var(--navy-dark);
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-bottom: 4px;
  }
  .coverage-header p {
    color: var(--muted);
    font-size: .88rem;
    margin: 0;
  }

  .cities-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
  }
  .cities-tags li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f6f8fb;
    border: 1px solid #e2e8f0;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 700;
    color: #263241;
    letter-spacing: .02em;
    transition: all .2s ease;
  }
  .cities-tags li:hover {
    background: #fff2f2;
    border-color: #f2caca;
    color: var(--navy-dark);
  }
  .cities-tags li.highlight {
    background: #fff;
    border-color: rgba(169,0,0,.28);
    color: var(--red-dark);
    box-shadow: 0 8px 18px rgba(169,0,0,.08);
  }
  .city-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
  }
  .cities-tags li.highlight .city-dot {
    background: var(--green);
  }

  .highways-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
  }
  .highway-pill {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #f6f8fb;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 14px;
    transition: border-color .2s;
  }
  .highway-pill:hover {
    border-color: rgba(9,43,99,.22);
  }
  .hw-badge {
    display: inline-block;
    align-self: flex-start;
    background: var(--red);
    color: #fff;
    font-size: .72rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: .05em;
  }
  .highway-pill span:last-child {
    font-size: .8rem;
    color: #4a5564;
    font-weight: 600;
  }

  .coverage-callout {
    background: #eef8f2;
    border: 1px solid rgba(24,164,75,.26);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .callout-text strong {
    display: block;
    color: var(--navy-dark);
    font-size: .98rem;
    margin-bottom: 3px;
  }
  .callout-text span {
    font-size: .84rem;
    color: #4f5966;
    display: block;
  }
  .coverage-callout .btn {
    flex-shrink: 0;
    color: var(--green-dark);
    border: 1px solid rgba(8,125,52,.35);
    background: #fff;
    font-size: .82rem;
    padding: 12px 18px;
  }
  .coverage-callout .btn:hover {
    background: var(--green-dark);
    color: #fff;
  }

  .seo-content { border-top: 1px solid var(--line); }
  .seo-content h2 { margin: 10px 0 22px; }
  .seo-content p { font-size: 1.06rem; }
  .seo-content p + p { margin-top: 16px; }

  .faq-section { background: var(--navy-dark); }
  .faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; }
  .faq-intro { position: sticky; top: 175px; }
  .faq-intro h2, .faq-intro > p { color: #fff; }
  .faq-intro h2 { margin: 12px 0 18px; }
  .faq-intro > p { color: rgba(255,255,255,.68); }
  .faq-intro .btn { margin-top: 25px; }
  .faq-list { display: grid; gap: 10px; }
  .faq-list details { background: #fff; border-radius: 10px; overflow: hidden; }
  .faq-list summary { list-style: none; position: relative; padding: 20px 55px 20px 21px; color: var(--navy-dark); font-weight: 850; cursor: pointer; }
  .faq-list summary::-webkit-details-marker { display: none; }
  .faq-list summary::after { content: "+"; position: absolute; right: 20px; top: 13px; color: var(--red); font-size: 1.7rem; }
  .faq-list details[open] summary::after { content: "−"; }
  .faq-list details p { padding: 0 22px 20px; font-size: .93rem; }

  .location-section { background: #fff; }
  .location-layout { display: grid; grid-template-columns: 370px 1fr; box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; min-height: 460px; }
  .address-card { padding: 36px; background: var(--soft); display: flex; flex-direction: column; align-items: start; justify-content: center; }
  .address-card img { width: 190px; height: 100px; object-fit: contain; margin-bottom: 20px; }
  .address-card h3 { color: var(--navy-dark); font-size: 1.45rem; text-transform: uppercase; }
  .address-card p { margin: 12px 0; }
  .address-card strong { color: var(--red); text-transform: uppercase; }
  .address-card .btn { margin-top: 25px; }
  .map { width: 100%; height: 100%; border: 0; }

  .final-cta { position: relative; padding: 90px 0; background: linear-gradient(110deg, rgba(79,0,0,.95), rgba(169,0,0,.9)), url('../images/transporte-noturno.png') center/cover; color: #fff; text-align: center; }
  .final-cta-inner { display: flex; flex-direction: column; align-items: center; }
  .final-cta-inner > span { color: #ffc2c2; text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 900; }
  .final-cta h2 { color: #fff; margin: 10px 0 14px; font-size: clamp(2.3rem, 5vw, 4.2rem); max-width: 850px; }
  .final-cta p { color: rgba(255,255,255,.82); font-size: 1.1rem; }
  .final-phone { margin-top: 22px; color: #fff; text-decoration: none; font-size: 1.55rem; font-weight: 950; }

  .site-footer { background: #031530; color: #fff; }
  .footer-grid { padding: 65px 0; display: grid; grid-template-columns: 1.25fr .7fr 1fr; gap: 65px; }
  .footer-brand img { width: 230px; height: 120px; object-fit: contain; background: #fff; padding: 6px; border-radius: 7px; }
  .footer-brand p { max-width: 360px; margin-top: 16px; }
  .site-footer h2 { color: #fff; font-size: 1.1rem; margin-bottom: 19px; }
  .site-footer p { color: rgba(255,255,255,.62); }
  .site-footer nav { display: grid; gap: 8px; }
  .site-footer nav a { text-decoration: none; color: rgba(255,255,255,.72); font-size: .88rem; }
  .footer-phone { display: block; color: #fff; text-decoration: none; font-size: 1.34rem; font-weight: 900; margin-bottom: 10px; }
  .site-footer .btn { margin-top: 20px; font-size: .75rem; padding: 12px 15px; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
  .footer-bottom .container { min-height: 60px; display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.48); font-size: .75rem; }

  .floating-whatsapp { position: fixed; z-index: 900; right: 22px; bottom: 23px; display: flex; align-items: center; gap: 10px; min-width: 185px; padding: 13px 17px; background: linear-gradient(135deg,#20b858,#087d34); color: #fff; border-radius: 999px; box-shadow: 0 10px 35px rgba(8,125,52,.42); text-decoration: none; font-size: .8rem; text-transform: uppercase; font-weight: 900; animation: subtle-pulse 2.8s infinite; }
  .floating-whatsapp small { display: block; color: rgba(255,255,255,.78); font-size: .62rem; letter-spacing: .05em; }
  @keyframes subtle-pulse { 0%,70%,100% { box-shadow: 0 10px 35px rgba(8,125,52,.42); } 80% { box-shadow: 0 10px 35px rgba(8,125,52,.42), 0 0 0 10px rgba(32,184,88,.1); } }
  .mobile-actionbar { display: none; }
}

@layer responsive {
  @media (max-width: 980px) {
    html { scroll-padding-top: 90px; }
    .section { padding: 78px 0; }
    .topbar, .header-contact { display: none; }
    .header-main { min-height: 78px; }
    .brand { width: 170px; margin-right: auto; }
    .brand img { height: 67px; }
    .header-whatsapp { min-width: auto; font-size: .72rem; padding: 12px 14px; }
    .menu-toggle { display: block; }
    .main-nav { position: fixed; inset: 78px 0 0; height: calc(100dvh - 78px); background: rgba(3,21,48,.98); transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none; transition: transform .25s ease, opacity .25s ease, visibility .25s ease; }
    body.menu-open .main-nav { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
    .nav-links { flex-direction: column; align-items: stretch; gap: 0; padding-top: 30px; }
    .nav-links a { color: #fff; padding: 17px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .95rem; }
    .benefits-grid { grid-template-columns: repeat(2,1fr); }
    .benefits article:nth-child(2) { border-right: 0; }
    .benefits article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .split-layout, .split-layout.reverse { grid-template-columns: 1fr; }
    .split-layout.reverse .section-copy { order: 2; }
    .service-grid, .info-card-grid { grid-template-columns: 1fr 1fr; }
    .service-card:last-child, .info-card:last-child { grid-column: 1 / -1; max-width: 560px; width: 100%; justify-self: center; }
    .gallery-grid { grid-auto-rows: 210px; }
    .video-layout { grid-template-columns: 1fr; gap: 35px; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid li::after { display: none !important; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .review-card.featured { grid-column: 1 / -1; }
    .faq-layout { grid-template-columns: 1fr; gap: 35px; }
    .faq-intro { position: static; }
    .location-layout { grid-template-columns: 330px 1fr; }
    .regions-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .about-image::before { left: 0; bottom: -10px; width: 85%; }
    .about-image figcaption { right: 0; bottom: 12px; }
    .why-image::before { inset: -10px; }
  }

  @media (max-width: 768px) {
    body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
    .floating-whatsapp { display: none !important; }
    .mobile-actionbar {
      position: fixed;
      z-index: 9999;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      max-width: 100%;
      display: grid;
      grid-template-columns: 1fr 1.25fr;
      min-height: 60px;
      background: #ffffff;
      box-shadow: 0 -4px 20px rgba(0,0,0,.18);
      border-top: 1px solid rgba(0,0,0,.08);
      padding-bottom: env(safe-area-inset-bottom, 0px);
    }
    .mobile-actionbar a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: var(--navy-dark);
      text-decoration: none;
      text-transform: uppercase;
      font-weight: 900;
      font-size: .8rem;
      padding: 12px 10px;
      min-height: 52px;
    }
    .mobile-actionbar a:first-child {
      background: #ffffff;
      color: var(--navy-dark);
      border-right: 1px solid rgba(0,0,0,.08);
    }
    .mobile-actionbar a:last-child {
      color: #ffffff;
      background: linear-gradient(135deg, #20b858, var(--green-dark));
      font-size: .88rem;
    }
    .hero-actions {
      flex-direction: column;
      align-items: stretch;
      width: 100%;
      max-width: 340px;
    }
    .hero-actions .btn {
      width: 100%;
    }
  }

  @media (max-width: 680px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 64px 0; }
    h2 { font-size: 2rem; }
    .header-main { gap: 10px; }
    .brand { width: 140px; }
    .brand img { height: 62px; }
    .header-whatsapp { padding: 10px 11px; font-size: 0; min-height: 43px; }
    .header-whatsapp .wa-icon { font-size: .65rem; }
    .menu-toggle { width: 42px; padding: 8px; }
    .benefits-grid { width: 100%; }
    .benefits article { min-height: 100px; padding: 10px; gap: 9px; justify-content: flex-start; }
    .benefit-icon { width: 40px; height: 40px; font-size: 1rem; flex: 0 0 40px; }
    .benefits strong { font-size: .85rem; }
    .benefits small { font-size: .66rem; }
    .about-image::before { left: 0; bottom: -8px; width: 90%; }
    .about-image figcaption { right: 0; bottom: 10px; max-width: calc(100% - 20px); }
    .service-grid, .info-card-grid { grid-template-columns: 1fr; }
    .service-card:last-child, .info-card:last-child { grid-column: auto; }
    .service-card > img { height: 210px; }
    .emergency-inner { display: grid; text-align: center; }
    .differentials { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 170px; gap: 8px; }
    .gallery-item.wide { grid-column: span 2; }
    .gallery-item.tall { grid-row: span 2; }
    .gallery-item::after { opacity: .9; transform: scale(.8); right: 7px; bottom: 7px; }
    .lightbox { padding: 25px 8px; }
    .lightbox[open] { grid-template-columns: 45px 1fr 45px; }
    .lightbox figure { height: calc(100vh - 50px); }
    .lightbox-nav { width: 40px; height: 55px; }
    .lightbox-close { right: 10px; top: 10px; z-index: 4; }
    .steps-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .review-card.featured { grid-column: auto; }
    .review-card { padding: 22px; }
    .region-hub-card { padding: 30px 22px; }
    .hub-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
    .highways-grid { grid-template-columns: 1fr; }
    .coverage-box { padding: 22px 18px; }
    .coverage-callout { flex-direction: column; align-items: stretch; text-align: center; }
    .coverage-callout .btn { width: 100%; }
    .location-layout { grid-template-columns: 1fr; }
    .map { min-height: 390px; }
    .footer-grid { grid-template-columns: 1fr; gap: 38px; padding: 50px 0; }
    .footer-brand { grid-column: auto; }
    .footer-bottom .container { padding: 16px 0; flex-direction: column; gap: 6px; text-align: center; }
  }
}
