/*
Theme Name: GT Transportes
Theme URI: https://mav.iqtrank.com
Author: IQTrank
Description: Tema institucional para a Gonzaga Transportes.
Version: 2.2.1
Text Domain: gt-transportes
*/

@font-face {
    font-family: "Manrope";
    src: url("assets/fonts/manrope-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
}

/* Fallback metric-compatible com Manrope (evita CLS no swap de fonte) */
@font-face {
    font-family: "Manrope-fallback";
    src: local("Arial"), local("Helvetica Neue"), local("Roboto"), local("Liberation Sans"), local("DejaVu Sans");
    font-style: normal;
    font-weight: 400 500;
    ascent-override: 106.45%;
    descent-override: 29.96%;
    line-gap-override: 0.00%;
    size-adjust: 102.22%;
}

@font-face {
    font-family: "Manrope-fallback";
    src: local("Arial"), local("Helvetica Neue"), local("Roboto"), local("Liberation Sans"), local("DejaVu Sans");
    font-style: normal;
    font-weight: 600 800;
    ascent-override: 115.17%;
    descent-override: 32.41%;
    line-gap-override: 0.00%;
    size-adjust: 110.02%;
}

@font-face {
    font-family: "Oswald";
    src: url("assets/fonts/oswald-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
}

/* Fallback metric-compatible com Oswald (evita CLS no swap de fonte) */
@font-face {
    font-family: "Oswald-fallback";
    src: local("Arial"), local("Helvetica Neue"), local("Roboto"), local("Liberation Sans"), local("DejaVu Sans");
    font-style: normal;
    font-weight: 500;
    ascent-override: 146.78%;
    descent-override: 35.56%;
    line-gap-override: 0.00%;
    size-adjust: 81.28%;
}

@font-face {
    font-family: "Oswald-fallback";
    src: local("Arial"), local("Helvetica Neue"), local("Roboto"), local("Liberation Sans"), local("DejaVu Sans");
    font-style: normal;
    font-weight: 600 700;
    ascent-override: 158.80%;
    descent-override: 38.47%;
    line-gap-override: 0.00%;
    size-adjust: 75.13%;
}

:root {
    --navy: #071a2b;
    --navy-deep: #04111d;
    --navy-soft: #102a41;
    --orange: #f05a24;
    --orange-dark: #d94916;
    --button-background: #c94718;
    --button-background-hover: #b9360b;
    --white: #ffffff;
    --form-background: #ffffff;
    --paper: #f4f6f7;
    --line: #cfd6db;
    --line-dark: rgba(255, 255, 255, 0.18);
    --text: #122234;
    --muted: #5d6873;
    --heading: "Oswald", "Oswald-fallback", sans-serif;
    --body: "Manrope", "Manrope-fallback", sans-serif;
    --container: 1280px;
    --header-height: 88px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

.site-container {
    width: min(calc(100% - 64px), var(--container));
    margin-inline: auto;
}

.section {
    padding: clamp(88px, 9vw, 144px) 0;
}

.section--navy {
    background: var(--navy);
    color: var(--white);
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 9999;
    padding: 12px 18px;
    background: var(--orange);
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid transparent;
    transition: height 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    height: 76px;
    border-bottom-color: #dde2e5;
    box-shadow: 0 8px 30px rgba(7, 26, 43, 0.07);
}

.site-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.site-brand {
    width: 170px;
    display: block;
    flex: 0 0 auto;
    text-decoration: none;
}

.site-logo-image {
    width: 100%;
    height: auto;
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 48px);
}

.primary-navigation ul {
    display: flex;
    align-items: center;
    gap: clamp(22px, 2.4vw, 40px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-navigation li a {
    position: relative;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.primary-navigation li a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s var(--ease);
}

.primary-navigation li a:hover::after,
.primary-navigation li a:focus-visible::after,
.primary-navigation li a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-instagram {
    width: 38px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 8px;
    transition: background 0.25s ease, transform 0.25s var(--ease);
}

.header-instagram svg {
    width: 28px;
    height: 28px;
    display: block;
    transition: transform 0.25s var(--ease);
}

.header-instagram:hover,
.header-instagram:focus-visible {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.header-instagram:hover svg {
    transform: scale(1.07);
}

.header-cta {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 0 24px;
    background: var(--button-background);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.25s ease;
}

.header-cta svg,
.button svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-width: 1.8;
    transition: transform 0.3s var(--ease);
}

.header-cta:hover,
.header-cta:focus-visible {
    background: var(--button-background-hover);
}

.header-cta:hover svg,
.button:hover svg {
    transform: translateX(5px);
}

.menu-toggle {
    display: none;
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 4px;
}

/* Hero */
.hero {
    position: relative;
    min-height: clamp(650px, 68svh, 790px);
    height: auto;
    display: grid;
    grid-template-columns: minmax(470px, 42%) 1fr;
    padding-top: var(--header-height);
    overflow: hidden;
    background: var(--navy);
}

.hero__copy {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    background: var(--navy);
}

.hero__copy::after {
    content: "";
    position: absolute;
    inset: 0 -122px 0 auto;
    width: 210px;
    background: var(--navy);
    clip-path: polygon(0 0, 58% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.hero__copy-inner {
    position: relative;
    z-index: 1;
    width: min(100% - 64px, 570px);
    margin-left: max(32px, calc((100vw - var(--container)) / 2));
    padding: 88px 0 100px;
}

.hero h1 {
    margin-bottom: 28px;
    color: var(--white);
    font-family: var(--heading);
    font-size: clamp(68px, 7.1vw, 116px);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.11;
    text-transform: uppercase;
}

.hero__copy p {
    max-width: 520px;
    margin-bottom: 38px;
    color: #dce4e9;
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.55;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.button:focus-visible,
.header-cta:focus-visible,
.primary-navigation a:focus-visible,
.whatsapp-float:focus-visible {
    outline: 3px solid #ffb092;
    outline-offset: 3px;
}

.button--accent {
    background: var(--button-background);
    color: var(--white);
}

.button--accent:hover {
    background: var(--button-background-hover);
}

.button--outline-light {
    border-color: rgba(255, 255, 255, 0.65);
    color: var(--white);
}

.button--outline-light:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--navy);
}

.hero__media {
    min-width: 0;
    height: 100%;
}

.hero__media picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 56% center;
}

.route-line--hero {
    position: absolute;
    z-index: 4;
    right: 4vw;
    bottom: 35px;
    left: 6vw;
    height: 2px;
    color: var(--orange);
}

.route-line__path {
    position: absolute;
    inset: 0;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    animation: routeDraw 1.5s 0.7s var(--ease) forwards;
}

.route-line__origin,
.route-line__destination {
    position: absolute;
    z-index: 1;
    top: 50%;
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 50%;
    background: var(--navy);
    opacity: 0;
    transform: translateY(-50%);
    animation: routePoint 0.4s 0.65s ease forwards;
}

.route-line__origin {
    left: 0;
}

.route-line__destination {
    right: 0;
    animation-delay: 2s;
}

@keyframes routeDraw {
    to { transform: scaleX(1); }
}

@keyframes routePoint {
    to { opacity: 1; }
}

/* Shared headings */
.section-intro h2,
.fleet__heading h2,
.proof__content > h2,
.contact h2 {
    margin-bottom: 24px;
    color: var(--navy);
    font-family: var(--heading);
    font-size: clamp(48px, 5.1vw, 78px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.18;
    text-transform: uppercase;
}

.section-rule {
    width: 46px;
    height: 3px;
    display: block;
    margin-bottom: 28px;
    background: var(--orange);
}

.section-intro > p {
    max-width: 440px;
    margin-bottom: 0;
    color: var(--muted);
}

.section-intro--light h2,
.contact h2 {
    color: var(--white);
}

.section-intro--light > p {
    color: #bac7d0;
}

/* Services */
.services {
    background: var(--paper);
}

.services__layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(500px, 1.18fr);
    gap: clamp(70px, 10vw, 160px);
    align-items: start;
}

.service-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.service-list__item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    padding: 30px 0 32px;
    border-bottom: 1px solid var(--line);
}

.service-list__number,
.fleet__legend article > span,
.proof-list > li > span {
    color: var(--orange);
    font-family: var(--heading);
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
}

.service-list h3 {
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 19px;
    line-height: 1.35;
}

.service-list p {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

/* Fleet */
.fleet {
    background: var(--white);
}

.fleet__media {
    position: relative;
    height: clamp(520px, 59vw, 800px);
    overflow: hidden;
    background: var(--navy);
}

.fleet__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(4, 17, 29, 0.86) 0%, rgba(4, 17, 29, 0.35) 35%, transparent 62%);
    pointer-events: none;
}

.fleet__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 63%;
}

.fleet__heading {
    position: absolute;
    z-index: 2;
    inset: clamp(60px, 7vw, 104px) 0 auto;
}

.fleet__heading h2 {
    max-width: 670px;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(4, 17, 29, 0.28);
}

.fleet__heading h2::after {
    content: "";
    width: 72px;
    height: 3px;
    display: block;
    margin-top: 30px;
    background: var(--orange);
}

.fleet__legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding-top: 0;
}

.fleet__legend article {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    padding: 36px clamp(20px, 4vw, 62px) 42px 0;
    border-bottom: 1px solid var(--line);
}

.fleet__legend article + article {
    padding-right: 0;
    padding-left: clamp(20px, 4vw, 62px);
    border-left: 1px solid var(--line);
}

.fleet__legend h3 {
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 18px;
}

.fleet__legend p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

/* Coverage */
.coverage {
    position: relative;
    overflow: hidden;
}

.coverage::before {
    content: "";
    position: absolute;
    width: 660px;
    height: 660px;
    right: -310px;
    bottom: -390px;
    border: 1px solid rgba(240, 90, 36, 0.22);
    border-radius: 50%;
}

.coverage__layout {
    display: grid;
    grid-template-columns: minmax(330px, 0.72fr) minmax(600px, 1.28fr);
    gap: clamp(80px, 9vw, 150px);
    align-items: center;
}

.coverage__network {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(26px, 4vw, 62px);
    padding: 40px 0 30px 34px;
    border-top: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
}

.coverage__network::before,
.coverage__network::after {
    content: "";
    position: absolute;
    left: -6px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    background: var(--navy);
}

.coverage__network::before {
    top: -7px;
}

.coverage__network::after {
    bottom: -7px;
}

.coverage__rail {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: var(--orange);
}

.coverage__network ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.coverage__network li {
    position: relative;
    min-height: 36px;
    padding-left: 16px;
    color: #ecf1f4;
    font-size: 14px;
}

.coverage__network li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -39px;
    width: 8px;
    height: 8px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    background: var(--navy);
}

.coverage__network ul:not(:first-of-type) li::before {
    display: none;
}

/* Proof */
.proof {
    overflow: hidden;
}

.proof__layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.95fr) minmax(620px, 1.05fr);
    gap: clamp(64px, 7vw, 112px);
    align-items: center;
}

.proof__media {
    position: relative;
    height: 720px;
    margin: 0;
}

.proof__media::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 28px auto -28px -50vw;
    width: calc(50vw + 100%);
    background: var(--paper);
}

.proof__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 40% center;
}

.proof-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.proof-list li {
    display: grid;
    grid-template-columns: 48px minmax(150px, 0.72fr) minmax(220px, 1.28fr);
    gap: 20px;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.proof-list > li > span {
    font-size: 27px;
}

.proof-list h3 {
    margin: 0;
    color: var(--navy);
    font-size: 15px;
}

.proof-list p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

/* Contact */
.contact {
    position: relative;
    overflow: hidden;
}

.contact::before,
.contact::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(240, 90, 36, 0.18);
    border-radius: 50%;
}

.contact::before {
    left: -330px;
    bottom: -140px;
}

.contact::after {
    right: -350px;
    top: -160px;
}

.contact__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(360px, 0.85fr) minmax(570px, 1.15fr);
    gap: clamp(70px, 9vw, 150px);
    align-items: center;
}

.contact h2 {
    font-size: clamp(52px, 6vw, 92px);
}

.contact h2 em {
    color: var(--orange);
    font-style: normal;
}

.contact__content > p {
    max-width: 470px;
    color: #c5d0d8;
    font-size: 17px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(240, 90, 36, 0.7);
    color: #dce4e9;
    font-size: 14px;
    font-style: normal;
}

.contact__details strong {
    color: var(--white);
}

.contact__details a {
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 3px;
}

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

.contact__form-panel {
    padding: clamp(28px, 4vw, 48px);
    background: var(--form-background);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-form .contact-form__honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label > span {
    color: #48535d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #aeb8bf;
    border-radius: 0;
    background: var(--white);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input {
    min-height: 52px;
    padding: 0 15px;
}

.contact-form textarea {
    min-height: 138px;
    padding: 14px 15px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(240, 90, 36, 0.14);
}

.contact-form__submit {
    width: 100%;
    margin-top: 4px;
    justify-content: space-between;
    border: 0;
    text-transform: uppercase;
}

.contact-form__submit:disabled {
    cursor: wait;
    opacity: 0.68;
}

.form-status-message {
    display: none;
    margin-bottom: 20px;
    padding: 12px 14px;
    border-left: 3px solid;
    font-size: 13px;
}

.form-status-message.success {
    display: block;
    border-color: #1d8b55;
    background: #e7f6ee;
    color: #135c3a;
}

.form-status-message.error {
    display: block;
    border-color: #b62929;
    background: #fdecec;
    color: #8e2020;
}

/* Footer */
.site-footer {
    position: relative;
    overflow: hidden;
    background: var(--navy-deep);
    color: #9eacb7;
}

.site-footer__inner {
    min-height: 150px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 52px;
    align-items: center;
}

.site-footer .site-brand--footer {
    width: 200px;
    padding: 0 !important;
    background: transparent !important;
}

.site-footer .site-logo-image--footer {
    display: block;
    padding: 0 !important;
    background: transparent !important;
}

.site-footer p {
    margin: 0;
    font-size: 12px;
}

.site-footer__social {
    margin-top: 6px !important;
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #9eacb7;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__social a:hover {
    color: var(--orange);
}

.site-footer__inner > p:last-child {
    text-align: right;
}

.site-footer__route {
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
}

.site-footer__route span {
    width: 36%;
    height: 2px;
    display: block;
    margin-left: 58%;
    background: var(--orange);
}

.whatsapp-float {
    position: fixed;
    z-index: 900;
    right: 24px;
    bottom: 24px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: #1b9d55;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(7, 26, 43, 0.28);
    transition: transform 0.25s var(--ease), background 0.25s ease;
}

.whatsapp-float:hover {
    background: #147c42;
    transform: translateY(-4px);
}

.whatsapp-float svg {
    width: 27px;
    fill: currentColor;
}

/* Scroll reveal */
.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 1120px) {
    :root {
        --header-height: 78px;
    }

    .site-container {
        width: min(calc(100% - 48px), var(--container));
    }

    .primary-navigation ul {
        gap: 20px;
    }

    .primary-navigation li a {
        font-size: 12px;
    }

    .header-cta {
        gap: 12px;
        padding: 0 18px;
    }

    .header-actions {
        gap: 12px;
    }

    .hero {
        grid-template-columns: minmax(430px, 46%) 1fr;
    }

    .hero__copy-inner {
        margin-left: 24px;
    }

    .hero h1 {
        font-size: clamp(62px, 8vw, 88px);
    }

    .services__layout,
    .coverage__layout {
        gap: 70px;
    }

    .proof__layout {
        grid-template-columns: minmax(340px, 0.8fr) minmax(520px, 1.2fr);
        gap: 50px;
    }

    .proof__media {
        height: 660px;
    }

    .proof-list li {
        grid-template-columns: 42px 138px 1fr;
        gap: 14px;
    }
}

@media (max-width: 920px) {
    .menu-toggle {
        width: 84px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--navy);
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        cursor: pointer;
    }

    .menu-toggle__lines {
        position: relative;
        width: 28px;
        height: 16px;
    }

    .menu-toggle__lines i {
        position: absolute;
        left: 0;
        width: 28px;
        height: 2px;
        background: currentColor;
        transition: top 0.3s var(--ease), transform 0.3s var(--ease);
    }

    .menu-toggle__lines i:first-child {
        top: 3px;
    }

    .menu-toggle__lines i:last-child {
        top: 11px;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child {
        top: 7px;
        transform: rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child {
        top: 7px;
        transform: rotate(-45deg);
    }

    .primary-navigation {
        position: fixed;
        inset: var(--header-height) 0 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 44px;
        padding: 50px 24px;
        background: var(--navy);
        color: var(--white);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-18px);
        transition: opacity 0.3s ease, transform 0.3s var(--ease);
    }

    .site-header.is-scrolled .primary-navigation {
        inset-block-start: 76px;
    }

    .primary-navigation.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .primary-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .primary-navigation li a {
        color: var(--white);
        font-family: var(--heading);
        font-size: clamp(38px, 8vw, 60px);
        font-weight: 600;
        line-height: 1.05;
        text-transform: uppercase;
    }

    .primary-navigation li a::after {
        bottom: -3px;
    }

    .header-cta {
        width: 100%;
        min-height: 58px;
        justify-content: space-between;
    }

    .header-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 12px;
    }

    .header-instagram {
        width: 58px;
        height: 58px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: var(--white);
        border-radius: 0;
    }

    .header-instagram svg {
        width: 30px;
        height: 30px;
    }

    .header-instagram:hover,
    .header-instagram:focus-visible {
        background: #f3f4f6;
    }

    .hero {
        height: auto;
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto clamp(430px, 67vw, 620px);
    }

    .hero__copy::after {
        display: none;
    }

    .hero__copy-inner {
        width: min(calc(100% - 48px), 760px);
        margin-inline: auto;
        padding: 90px 0 78px;
    }

    .hero__media {
        grid-row: 2;
    }

    .hero__media img {
        object-position: center;
    }

    .route-line--hero {
        bottom: 28px;
    }

    .services__layout,
    .coverage__layout,
    .proof__layout,
    .contact__layout {
        grid-template-columns: 1fr;
    }

    .services__layout,
    .coverage__layout {
        gap: 58px;
    }

    .section-intro > p {
        max-width: 620px;
    }

    .fleet__media {
        height: 600px;
    }

    .coverage__network {
        min-width: 0;
    }

    .proof__layout {
        gap: 74px;
    }

    .proof__media {
        width: min(100%, 680px);
        height: 640px;
    }

    .proof__media::before {
        inset: 28px -50vw -28px;
        width: auto;
    }

    .contact__layout {
        gap: 60px;
    }

    .contact__content {
        max-width: 680px;
    }

    .site-footer__inner {
        grid-template-columns: auto 1fr;
    }

    .site-footer__inner p:last-child {
        grid-column: 1 / -1;
        padding-bottom: 28px;
        text-align: left;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 72px;
    }

    .site-container {
        width: min(calc(100% - 36px), var(--container));
    }

    .site-header.is-scrolled {
        height: 68px;
    }

    .site-header.is-scrolled .primary-navigation {
        inset-block-start: 68px;
    }

    .site-brand {
        width: 132px;
    }

    .menu-toggle {
        width: 76px;
    }

    .hero {
        grid-template-rows: auto 390px;
    }

    .hero__copy-inner {
        width: calc(100% - 36px);
        padding: 72px 0 58px;
    }

    .hero h1 {
        margin-bottom: 24px;
        font-size: clamp(54px, 18vw, 76px);
    }

    .hero__copy p {
        font-size: 16px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .button {
        width: 100%;
        justify-content: space-between;
    }

    .route-line--hero {
        right: 18px;
        bottom: 20px;
        left: 18px;
    }

    .section {
        padding: 82px 0;
    }

    .section-intro h2,
    .fleet__heading h2,
    .proof__content > h2,
    .contact h2 {
        font-size: clamp(43px, 13vw, 60px);
    }

    .service-list__item {
        grid-template-columns: 48px 1fr;
        gap: 14px;
        padding: 24px 0;
    }

    .service-list__number {
        font-size: 28px;
    }

    .fleet__media {
        height: 470px;
    }

    .fleet__media::after {
        background: linear-gradient(180deg, rgba(4, 17, 29, 0.75) 0%, transparent 52%);
    }

    .fleet__media img {
        object-position: 52% center;
        transform: translateY(68px);
    }

    .fleet__heading {
        inset-block-start: 48px;
    }

    .fleet__legend {
        grid-template-columns: 1fr;
    }

    .fleet__legend article,
    .fleet__legend article + article {
        padding: 28px 0;
        border-left: 0;
    }

    .coverage__network {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
        padding-left: 28px;
    }

    .coverage__network ul:last-of-type {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 22px;
    }

    .coverage__network li {
        padding-left: 8px;
        font-size: 13px;
    }

    .coverage__network li::before {
        left: -33px;
    }

    .proof__media {
        height: 500px;
    }

    .proof-list li {
        grid-template-columns: 38px 1fr;
        gap: 8px 14px;
        padding: 18px 0;
    }

    .proof-list p {
        grid-column: 2;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .contact__form-panel {
        margin-inline: -6px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 38px 0;
    }

    .site-footer__inner p:last-child {
        grid-column: auto;
        padding-bottom: 0;
    }

    .site-footer__tagline-separator {
        display: none;
    }

    .site-footer__tagline-claim {
        display: block;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}

/* LGPD Banner */
.lgpd-banner {
    position: fixed;
    z-index: 800;
    left: 24px;
    bottom: 24px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 24px;
    background: var(--navy-deep);
    color: #dce4e9;
    font-size: 13px;
    line-height: 1.55;
    box-shadow: 0 12px 40px rgba(4, 17, 29, 0.35);
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s var(--ease), visibility 0.4s ease;
}

.lgpd-banner.is-hidden {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    pointer-events: none;
}

.lgpd-banner__text {
    margin: 0;
}

.lgpd-banner__text a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lgpd-banner__text a:hover {
    color: #ff8a5c;
}

.lgpd-banner__accept {
    align-self: flex-end;
    min-height: 40px;
    padding: 0 20px;
    border: 0;
    background: var(--button-background);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease;
}

.lgpd-banner__accept:hover {
    background: var(--button-background-hover);
}

@media (max-width: 640px) {
    .lgpd-banner {
        left: 12px;
        right: 12px;
        bottom: 76px;
        max-width: none;
        padding: 16px 18px;
        font-size: 12px;
    }
}
