/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0c1a5e;
    --navy-dark: #060e3a;
    --navy-light: #142580;
    --gold: #ffbb00;
    --gold-dark: #e6a800;
    --gold-light: #ffd54f;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-400: #ced4da;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --green-whatsapp: #25d366;
    --green-whatsapp-dark: #1da851;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
}
.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-cta {
    background: var(--green-whatsapp);
    color: var(--white);
}
.btn-cta:hover {
    background: var(--green-whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.3);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.1);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6,14,58,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(6,14,58,.98);
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo img {
    height: 52px;
    width: auto;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: rgba(255,255,255,.75);
    font-size: .9rem;
    font-weight: 500;
    position: relative;
}
.nav-link:hover {
    color: var(--white);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    padding: 10px 20px;
    font-size: .85rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* ========== HERO ========== */
.hero {
    background: var(--navy-dark);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6,14,58,.92) 0%, rgba(12,26,94,.87) 50%, rgba(20,37,128,.83) 100%);
}
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,.03) 2px,
        rgba(0,0,0,.03) 4px
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 720px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,187,0,.12);
    color: var(--gold);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255,187,0,.2);
    letter-spacing: .3px;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -.5px;
}

.highlight {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-keyword {
    color: rgba(255,255,255,.6);
    font-weight: 400;
    transition: color .5s ease, font-weight .5s ease;
}

.hero-keyword.active {
    color: var(--white);
    font-weight: 700;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-chip {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px;
    color: rgba(255,255,255,.55);
    font-size: .8rem;
    font-weight: 500;
}

/* ========== SECTIONS COMMON ========== */
.section-badge {
    display: inline-block;
    background: rgba(15,42,74,.08);
    color: var(--navy);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -.3px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 600px;
    margin-bottom: 48px;
    line-height: 1.7;
}

/* ========== SERVICOS ========== */
.servicos {
    padding: 100px 0;
    background: var(--gray-50);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.servico-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.servico-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.servico-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.servico-icon svg {
    stroke: var(--gold);
}

.servico-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.servico-card > p {
    color: var(--gray-600);
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.servico-lista {
    list-style: none;
    margin-bottom: 16px;
    flex-grow: 1;
}

.servico-lista li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    font-size: .88rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.servico-lista li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.servico-frota {
    display: block;
    font-size: .82rem;
    color: var(--navy);
    font-weight: 600;
    background: rgba(15,42,74,.05);
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 16px;
}

/* Cards em destaque */
.servico-destaque {
    position: relative;
    border-color: var(--gold);
    border-width: 2px;
}

.servico-tag {
    position: absolute;
    top: -12px;
    left: 24px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.tag-economia {
    background: #e8f5e9;
    color: #2e7d32;
}

.tag-velocidade {
    background: #fff3e0;
    color: #e65100;
}

/* Highlights visuais dentro do card */
.servico-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.highlight-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--navy);
}

.highlight-item svg {
    stroke: var(--gold-dark);
    flex-shrink: 0;
}

.servico-link {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: .9rem;
    margin-top: auto;
}
.servico-link:hover {
    color: var(--navy);
}

/* ========== NUMEROS ========== */
.numeros {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.numero-item {
    color: var(--white);
}

.numero-valor {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gold);
}

.numero-sufixo {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--gold);
}

.numero-label {
    display: block;
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    margin-top: 4px;
}

/* ========== SOBRE ========== */
.sobre {
    padding: 100px 0;
}

.sobre-text > p {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.sobre-valores {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.valor-item {
    padding: 28px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
}

.valor-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.valor-item p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========== DIFERENCIAIS ========== */
.diferenciais {
    padding: 100px 0;
    background: var(--gray-50);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.diferencial-item {
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.diferencial-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.diferencial-icon {
    width: 56px;
    height: 56px;
    background: rgba(15,42,74,.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.diferencial-icon svg {
    stroke: var(--navy);
}

.diferencial-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.diferencial-item p {
    color: var(--gray-600);
    font-size: .88rem;
    line-height: 1.6;
}

/* ========== COBERTURA ========== */
.cobertura {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    overflow: hidden;
    position: relative;
    z-index: 1;
    clip-path: inset(0);
}

.cobertura .section-badge {
    background: rgba(255,187,0,.15);
    color: var(--gold);
}

.cobertura .section-title {
    color: var(--white);
}

.cobertura-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cobertura-desc {
    color: rgba(255,255,255,.65);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.cobertura-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cobertura-item-novo {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 20px;
    background: rgba(255,255,255,.05);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.08);
    transition: var(--transition);
}
.cobertura-item-novo:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,187,0,.2);
}

.cobertura-pin {
    width: 40px;
    height: 40px;
    background: rgba(255,187,0,.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cobertura-pin svg {
    stroke: var(--gold);
}
.cobertura-pin.destaque {
    background: rgba(255,187,0,.2);
}
.cobertura-pin.destaque svg {
    stroke: var(--gold);
}

.cobertura-item-novo h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.cobertura-item-novo p {
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    line-height: 1.5;
}

/* Mapa */
.cobertura-mapa {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    contain: paint;
}

.mapa-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    overflow: hidden;
    clip-path: inset(0);
    contain: paint;
}

.mapa-brasil-img {
    width: 100%;
    height: auto;
    opacity: .18;
    filter: brightness(2);
}

/* Mapa overlay SVG */
.mapa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.rota-line {
    stroke: var(--gold);
    stroke-width: 3;
    stroke-dasharray: 12 8;
    opacity: .2;
}

.destino-dot {
    fill: rgba(255,255,255,.45);
}

.destino-dot-gold {
    fill: var(--gold);
    opacity: .7;
    animation: dotPulse 2.5s ease-in-out infinite;
}
.destino-dot-gold:nth-child(2n) { animation-delay: .4s; }
.destino-dot-gold:nth-child(3n) { animation-delay: .8s; }
.destino-dot-gold:nth-child(4n) { animation-delay: 1.2s; }
.destino-dot-gold:nth-child(5n) { animation-delay: 1.6s; }

@keyframes dotPulse {
    0%, 100% { opacity: .4; r: 14; }
    50% { opacity: 1; r: 18; }
}

.mapa-nome {
    fill: rgba(255,255,255,.5);
    font-size: 28px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-anchor: middle;
}

.mapa-nome.nome-left {
    text-anchor: start;
}

.mapa-nome-destaque {
    fill: var(--gold);
    font-size: 32px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-anchor: middle;
}

.mapa-nome-destaque.nome-left {
    text-anchor: start;
}

.pin-sp {
    fill: var(--gold);
    animation: dotPulse 2.5s ease-in-out infinite;
    animation-delay: .6s;
}

.pin-sp-main {
    fill: var(--gold);
    filter: drop-shadow(0 0 12px rgba(255,187,0,.5));
}

.pin-pulse-circle {
    fill: rgba(255,187,0,.2);
    animation: svgPulse 2s ease-out infinite;
}

@keyframes svgPulse {
    0% { r: 18; opacity: .5; }
    100% { r: 50; opacity: 0; }
}


/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
    background: var(--gray-50);
    position: relative;
    z-index: 5;
}

.cta-box {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
    padding: 64px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,187,0,.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-box h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.cta-box p {
    color: rgba(255,255,255,.7);
    font-size: 1.05rem;
    margin-bottom: 28px;
    position: relative;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .btn {
    position: relative;
}

/* ========== CONTATO ========== */
.contato {
    padding: 100px 0;
    position: relative;
    z-index: 5;
    background: var(--white);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contato-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contato-icon {
    width: 48px;
    height: 48px;
    background: rgba(15,42,74,.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contato-icon svg {
    stroke: var(--navy);
    fill: none;
}
.contato-icon svg[fill="currentColor"] {
    fill: var(--navy);
    stroke: none;
}

.contato-item h4 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    font-size: .95rem;
}

.contato-item p {
    color: var(--gray-600);
    font-size: .9rem;
    line-height: 1.6;
}
.contato-item p + p {
    margin-top: 2px;
}
.contato-item a {
    color: var(--navy);
    font-weight: 500;
}
.contato-item a:hover {
    color: var(--gold-dark);
}

.contato-mapa {
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--navy-dark);
    padding: 60px 0 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand p {
    color: rgba(255,255,255,.5);
    font-size: .88rem;
    margin-top: 16px;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--white);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,.5);
    font-size: .85rem;
    margin-bottom: 10px;
}
.footer-links a:hover {
    color: var(--gold);
}

/* Selos de confiança */
.footer-selos {
    margin-top: 48px;
    padding: 32px 0;
    border-top: none;
    border-bottom: none;
    background: var(--navy-dark);
    position: relative;
    z-index: 20;
}

.selos-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 40px;
}

.selo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.selo svg {
    stroke: var(--gold);
    flex-shrink: 0;
    opacity: .8;
}

.selo-titulo {
    display: block;
    color: rgba(255,255,255,.85);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .3px;
}

.selo-sub {
    display: block;
    color: rgba(255,255,255,.4);
    font-size: .7rem;
}

.footer-bottom {
    margin-top: 0;
    padding: 20px 0;
}
.footer-bottom p {
    color: rgba(255,255,255,.35);
    font-size: .8rem;
    text-align: center;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--green-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,.5);
}
.whatsapp-float svg {
    fill: var(--white);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,.6); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE - SMALL DESKTOP / LAPTOP ========== */
@media (max-width: 1400px) {
    .container {
        max-width: 1100px;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero {
        padding: 120px 0 80px;
    }
    .servicos-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
    .diferenciais-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
    .diferencial-item {
        padding: 24px 16px;
    }
    .footer-content {
        gap: 28px;
    }
}

/* ========== RESPONSIVE - TABLET ========== */
@media (max-width: 1024px) {
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cobertura-layout {
        gap: 40px;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .sobre-valores {
        grid-template-columns: 1fr;
    }
}

/* ========== RESPONSIVE - MOBILE ========== */
@media (max-width: 768px) {
    .container {
        padding: 0 28px;
    }

    /* Header mobile */
    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 1000;
    }
    .nav.active {
        display: flex;
    }
    .nav-link {
        font-size: 1.2rem;
        color: var(--white);
    }
    .header-cta {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Hero mobile */
    .hero {
        padding: 110px 0 64px;
        min-height: auto;
    }
    .hero-video {
        object-position: center center;
    }
    .hero-badge {
        font-size: .75rem;
        padding: 6px 14px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
    }
    .hero-ctas {
        flex-direction: column;
        margin-bottom: 32px;
    }
    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-trust {
        gap: 8px;
    }
    .trust-chip {
        font-size: .75rem;
        padding: 5px 12px;
    }

    /* Sections mobile */
    .servicos, .sobre, .diferenciais, .contato, .cobertura {
        padding: 64px 0;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .section-subtitle {
        font-size: .95rem;
        margin-bottom: 32px;
    }

    /* Servicos mobile */
    .servicos-grid {
        grid-template-columns: 1fr;
    }

    /* Numeros mobile */
    .numeros {
        padding: 48px 0;
    }
    .numeros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .numero-valor {
        font-size: 1.8rem;
    }

    /* Sobre mobile */
    .sobre-text > p {
        font-size: .95rem;
    }
    .sobre-valores {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .valor-item {
        padding: 20px;
    }

    /* Diferenciais mobile */
    .diferenciais-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .diferencial-item {
        padding: 20px 16px;
        text-align: center;
    }
    .diferencial-icon {
        margin: 0 auto 12px;
    }
    .diferencial-item h3 {
        font-size: .88rem;
    }
    .diferencial-item p {
        font-size: .78rem;
    }

    /* Cobertura mobile */
    .cobertura-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cobertura-mapa {
        order: -1;
    }
    .mapa-wrapper {
        max-width: 340px;
        margin: 0 auto;
    }

    /* CTA mobile */
    .cta-section {
        padding: 48px 0;
    }
    .cta-box {
        padding: 40px 20px;
    }
    .cta-box h2 {
        font-size: 1.3rem;
    }
    .cta-box .btn-lg {
        width: 100%;
        padding: 16px 24px;
    }

    /* Contato mobile */
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .contato-mapa {
        min-height: 260px;
    }

    /* Footer mobile */
    .footer {
        padding: 48px 0 0;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        margin-top: 28px;
    }

    /* WhatsApp float mobile */
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 56px;
        height: 56px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ========== RESPONSIVE - SMALL MOBILE ========== */
@media (max-width: 400px) {
    .container {
        padding: 0 24px;
    }
    .hero h1 {
        font-size: 1.5rem;
    }
    .hero-badge {
        font-size: .7rem;
    }
    .numeros-grid {
        gap: 16px;
    }
    .numero-valor {
        font-size: 1.5rem;
    }
    .mapa-wrapper {
        max-width: 260px;
    }
    .btn-lg {
        padding: 14px 24px;
        font-size: 1rem;
    }
}
