
/* ================================================================
   VARIÁVEIS E RESET
   ================================================================ */
:root {
    --cor-fundo: #F4F4F6;
    --cor-fundo-alt: #FFFFFF;
    --cor-texto: #1A1A1A;
    --cor-texto-mutado: #666666;
    --cor-primaria: #003223;
    --cor-accent: #8cc850;
    --cor-accent-hover: #78ab44;
    --cor-borda: #E2E2E2;
    --cor-erro: #C0392B;

    --font-principal: 'Space Grotesk', sans-serif;
    --font-monospace: 'JetBrains Mono', sans-serif;
    --font-body: 'Sora', sans-serif;
    --font-display: 'Teko', sans-serif;

    --radius-pill: 50px;
    --radius-card: 16px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--cor-texto);
    background-color: var(--cor-fundo);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

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

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

/* ================================================================
   CORREÇÃO: garante que [hidden] nunca seja sobrescrito por display do CSS
   ================================================================ */
[hidden] {
    display: none !important;
}

/* ================================================================
   ✅ MELHORIA 13: prefers-reduced-motion
   ================================================================ */
@media (prefers-reduced-motion: reduce) {

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

    .reveal-up {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero__video {
        display: none;
    }

    .pulse-marker,
    .wpp-float::after {
        animation: none !important;
    }
}

/* ================================================================
   BOTÕES E TAGS
   ================================================================ */
.btn {
    font-family: var(--font-principal);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn--accent {
    background-color: var(--cor-accent);
    color: var(--cor-primaria);
}

.btn--accent:hover {
    background-color: var(--cor-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(140, 200, 80, 0.3);
}

.btn--dark {
    background-color: var(--cor-primaria);
    color: #FFF;
}

.btn--dark:hover {
    background-color: #001f15;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 50, 35, 0.2);
}

.btn--dark:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn--full {
    width: 100%;
}

.tag {
    font-family: var(--font-monospace);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--cor-borda);
    color: var(--cor-texto-mutado);
    background: #FFF;
}

/* ================================================================
   ✅ MELHORIA — HEADER com melhor legibilidade
   ================================================================ */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1280px;
    height: 70px;
    z-index: 1000;
    border-radius: var(--radius-pill);
    transition: var(--transition-smooth);

    /* Fundo verde mais opaco para garantir legibilidade sobre o vídeo */
    background: rgba(0, 40, 25, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Sombra sutil para separar do vídeo */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.header.scrolled {
    background: rgba(0, 50, 35, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: transparent;
    top: 15px;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 24px;
    gap: 30px;
}

.logo {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.8rem;
    color: #FFF;
    letter-spacing: -0.5px;
    white-space: nowrap;
    /* ✅ Sombra de texto para destacar do vídeo */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.logo span {
    color: var(--cor-accent);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav__link {
    font-family: var(--font-principal);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: #FFF;
    transition: var(--transition-smooth);
    opacity: 0.9;
    /* ✅ Sombra de texto para legibilidade sobre vídeo */
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cor-accent);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav__link:hover {
    opacity: 1;
    color: var(--cor-accent);
}

.nav__link:hover::after {
    width: 100%;
}

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

.header-actions .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
}

/* ================================================================
   ✅ MELHORIA — HERO com overlay e legibilidade corrigidos
   ================================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #001f15;
    /* fallback caso o vídeo não carregue */
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ✅ Overlay melhorado: gradiente mais forte para garantir legibilidade do texto */
.hero__overlay {
    position: absolute;
    inset: 0;
    /* Camada base escura em todo o frame */
    background:
        linear-gradient(to bottom,
            rgba(0, 20, 12, 0.80) 0%,
            /* topo — header está aqui */
            rgba(0, 20, 12, 0.60) 35%,
            /* centro superior */
            rgba(0, 20, 12, 0.65) 65%,
            /* centro inferior */
            rgba(0, 20, 12, 0.85) 100%
            /* rodapé */
        );
    z-index: 1;
}

.hero__content {
    text-align: center;
    z-index: 2;
    position: relative;
    width: 100%;
    margin-top: 60px;
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(4.5rem, 9vw, 8.5rem);
    line-height: 0.95;
    margin-bottom: 30px;
    text-transform: uppercase;
    /* ✅ Sombra para destaque do título sobre qualquer frame do vídeo */
    text-shadow:
        0 4px 30px rgba(0, 0, 0, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero__title em {
    font-weight: 400;
    font-style: normal;
    color: var(--cor-accent);
    /* Sombra colorida para o destaque verde */
    text-shadow: 0 4px 30px rgba(140, 200, 80, 0.3), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero__track-bar {
    max-width: 650px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius-pill);
    padding: 8px 8px 8px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero__track-bar svg {
    color: var(--cor-texto-mutado);
    flex-shrink: 0;
}

.hero__track-bar input {
    font-family: var(--font-monospace);
    font-size: 0.95rem;
    flex: 1;
    border: none;
    outline: none;
    color: var(--cor-texto);
    background: transparent;
}

.hero__track-hint {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero__track-hint a {
    color: var(--cor-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero__track-hint a:hover {
    color: #fff;
}

/* ================================================================
   PROVA SOCIAL
   ================================================================ */
.prova-social {
    padding: 80px 0;
    background: var(--cor-primaria);
    color: #FFF;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 50px;
}

.stat-item {
    padding: 20px;
}

.stat-number,
.stat-suffix {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 5.5rem;
    color: var(--cor-accent);
    line-height: 1;
}

.stat-desc {
    font-family: var(--font-principal);
    font-weight: 700;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.test-stars {
    color: var(--cor-accent);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.test-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #EEE;
    line-height: 1.7;
    margin-bottom: 20px;
}

.test-author strong {
    font-family: var(--font-principal);
    font-weight: 700;
    display: block;
    font-size: 1.1rem;
    color: #FFF;
}

.test-author span {
    font-family: var(--font-monospace);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

/* ================================================================
   SEÇÕES GERAIS
   ================================================================ */
section {
    padding: 100px 0;
}

.section-label {
    font-family: var(--font-monospace);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cor-texto-mutado);
    margin-bottom: 12px;
    display: block;
}

.section-label--light {
    color: var(--cor-accent);
}

.section-title {
    font-family: var(--font-principal);
    font-weight: 700;
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--cor-primaria);
    letter-spacing: -1px;
}

.section-title--light {
    color: #FFF;
}

/* ================================================================
   SOBRE
   ================================================================ */
.sobre {
    background: var(--cor-fundo-alt);
    text-align: center;
}

.sobre__inner {
    max-width: 800px;
    margin: 0 auto;
}

.sobre__desc {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--cor-texto-mutado);
    margin-bottom: 30px;
    line-height: 1.7;
}

.sobre__tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ================================================================
   ✅ MELHORIA 10: DIFERENCIAIS
   ================================================================ */
.diferenciais {
    background: var(--cor-primaria);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.diferenciais::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(140, 200, 80, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.diferenciais .section-header {
    position: relative;
    z-index: 1;
}

.dif-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.dif-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-card);
    padding: 40px 32px;
    transition: var(--transition-smooth);
}

.dif-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(140, 200, 80, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.dif-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(140, 200, 80, 0.15);
    color: var(--cor-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.dif-icon svg {
    width: 26px;
    height: 26px;
}

.dif-card:hover .dif-icon {
    background: var(--cor-accent);
    color: var(--cor-primaria);
}

.dif-card h3 {
    font-family: var(--font-principal);
    font-weight: 700;
    font-size: 1.25rem;
    color: #FFF;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.dif-card p {
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
}

/* ================================================================
   SERVIÇOS
   ================================================================ */
.servicos {
    background: var(--cor-fundo);
}

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

.serv-card {
    background: var(--cor-fundo-alt);
    padding: 40px 32px;
    border-radius: var(--radius-card);
    border: 1px solid var(--cor-borda);
    transition: var(--transition-smooth);
}

.serv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 50, 35, 0.06);
    border-color: transparent;
}

.serv-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(140, 200, 80, 0.15);
    color: var(--cor-primaria);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.serv-card__icon svg {
    width: 28px;
    height: 28px;
}

.serv-card:hover .serv-card__icon {
    background: var(--cor-accent);
    color: var(--cor-primaria);
    transform: scale(1.1) rotate(-5deg);
}

.serv-card__title {
    font-family: var(--font-principal);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: var(--cor-primaria);
}

.serv-card__desc {
    font-family: var(--font-body);
    color: var(--cor-texto-mutado);
    font-size: 1rem;
    line-height: 1.6;
}

/* ================================================================
   FROTA
   ================================================================ */
.frota {
    background: var(--cor-fundo-alt);
}

.frota-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.frota-card {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    background: var(--cor-fundo);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.frota-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 50, 35, 0.1);
}

.frota-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-smooth);
    display: block;
}

.frota-card:hover .frota-img {
    transform: scale(1.05);
}

.frota-specs {
    padding: 30px;
    background: #FFF;
    position: relative;
    z-index: 2;
}

.frota-specs h3 {
    font-family: var(--font-principal);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--cor-primaria);
    margin-bottom: 15px;
}

.frota-specs p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--cor-texto-mutado);
    margin-bottom: 8px;
    border-bottom: 1px dashed var(--cor-borda);
    padding-bottom: 8px;
}

.frota-specs p:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.frota-specs strong {
    font-family: var(--font-monospace);
    font-weight: 400;
    color: var(--cor-primaria);
    float: right;
}

/* ================================================================
   MAPA DE ATUAÇÃO
   ================================================================ */
.mapa-atuacao {
    background: var(--cor-primaria);
    color: #FFF;
    overflow: hidden;
    position: relative;
}

.mapa-atuacao::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(140, 200, 80, 0.05) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.mapa-atuacao__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mapa-atuacao__desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.7;
}

.mapa-lista-simples {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mapa-lista-simples li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mapa-lista-simples li:last-child {
    border: none;
    padding-bottom: 0;
}

.mapa-lista-simples strong {
    color: #FFF;
    font-family: var(--font-principal);
}

.uf-tag {
    font-family: var(--font-monospace);
    font-weight: 700;
    background: rgba(140, 200, 80, 0.15);
    color: var(--cor-accent);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.mapa-atuacao__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mapa-radar-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-card);
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.mapa-img-estatica {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.8;
}

.pulse-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--cor-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(140, 200, 80, 0.7);
}

@media (prefers-reduced-motion: no-preference) {
    .pulse-marker {
        animation: mapPulse 2s infinite;
    }
}

.p-mt {
    top: 50%;
    left: 45%;
    animation-delay: 0s;
}

.p-sp {
    top: 68%;
    left: 58%;
    animation-delay: 0.5s;
}

.p-pr {
    top: 70%;
    left: 52%;
    animation-delay: 1s;
}

@keyframes mapPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(140, 200, 80, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(140, 200, 80, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(140, 200, 80, 0);
    }
}

/* ================================================================
   ✅ MELHORIA 7: CALCULADORA com disclaimer e fórmula calibrada
   ================================================================ */
.calculadora {
    background: var(--cor-fundo);
}

.calculadora-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.calc-info {
    padding-right: 20px;
}

.calc-info>p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--cor-texto-mutado);
    line-height: 1.7;
    margin-bottom: 20px;
}

.calc-disclaimer {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(140, 200, 80, 0.08);
    border: 1px solid rgba(140, 200, 80, 0.25);
    border-radius: 12px;
    padding: 16px 20px;
}

.calc-disclaimer svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--cor-accent-hover);
    margin-top: 2px;
}

.calc-disclaimer p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--cor-texto-mutado);
    line-height: 1.5;
}

.calc-box {
    background: var(--cor-fundo-alt);
    padding: 40px;
    border-radius: var(--radius-card);
    border: 1px solid var(--cor-borda);
    box-shadow: 0 20px 40px rgba(0, 50, 35, 0.05);
}

.calc-row {
    margin-bottom: 30px;
}

.calc-labels {
    font-family: var(--font-principal);
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: var(--cor-primaria);
}

.calc-value {
    font-family: var(--font-monospace);
    font-weight: 400;
    color: var(--cor-accent-hover);
}

.calc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: var(--cor-borda);
    border-radius: 5px;
    outline: none;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--cor-primaria);
    cursor: pointer;
    border: 3px solid #FFF;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.calc-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--cor-primaria);
    cursor: pointer;
    border: 3px solid #FFF;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.calc-result {
    background: var(--cor-fundo);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    border: 1px dashed var(--cor-borda);
}

.calc-result p {
    font-family: var(--font-monospace);
    font-size: 0.85rem;
    color: var(--cor-texto-mutado);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.calc-result h3 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--cor-primaria);
    line-height: 1;
}

/* ================================================================
   ✅ MELHORIA 5 e 6: COTAÇÃO com validação e máscara
   ================================================================ */
.cotacao {
    background: var(--cor-fundo-alt);
}

.cotacao__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.cotacao__info {
    text-align: center;
    margin-bottom: 50px;
}

.cotacao__desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--cor-texto-mutado);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.cotacao__form {
    background: var(--cor-fundo);
    padding: 50px;
    border-radius: var(--radius-card);
    box-shadow: 0 10px 40px rgba(0, 50, 35, 0.04);
}

.form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group label {
    font-family: var(--font-principal);
    font-weight: 700;
    font-size: 1rem;
    color: var(--cor-primaria);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon svg {
    position: absolute;
    left: 16px;
    width: 18px;
    height: 18px;
    color: #AAA;
    pointer-events: none;
}

.input-with-icon input {
    padding-left: 44px !important;
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    padding: 14px 20px;
    border-radius: 12px;
    border: 1.5px solid var(--cor-borda);
    outline: none;
    background: #FFF;
    font-size: 1rem;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--cor-accent-hover);
    box-shadow: 0 0 0 4px rgba(140, 200, 80, 0.1);
}

/* ✅ Estado de erro nos campos */
.form-group input.is-invalid,
.form-group select.is-invalid {
    border-color: var(--cor-erro);
    box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.1);
}

.field-error {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--cor-erro);
    min-height: 18px;
    display: block;
}

/* ✅ Input date legível */
input[type="date"] {
    color: var(--cor-texto);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
}

.form-success {
    font-family: var(--font-principal);
    font-weight: 700;
    margin-top: 20px;
    padding: 20px 24px;
    background: #E8F5E9;
    color: #2E7D32;
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid #A5D6A7;
}

.form-success svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.form-error-global {
    font-family: var(--font-body);
    margin-top: 16px;
    padding: 16px 24px;
    background: #FDEDEC;
    color: var(--cor-erro);
    border-radius: 12px;
    text-align: center;
    border: 1px solid #F1948A;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    background: #001f15;
    color: #FFF;
    padding-top: 80px;
    padding-bottom: 40px;
    overflow: hidden;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer__slogan {
    font-family: var(--font-principal);
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.2;
    max-width: 400px;
}

.footer__links-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer__nav-col h4 {
    font-family: var(--font-monospace);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cor-accent);
    margin-bottom: 20px;
}

.footer__nav-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav-col a,
.footer__nav-col li {
    font-family: var(--font-body);
    color: #CCC;
    font-size: 1rem;
    font-weight: 400;
}

.footer__nav-col a:hover {
    color: #FFF;
    padding-left: 5px;
}

.footer__huge-logo {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(3.5rem, 11vw, 11rem);
    line-height: 0.9;
    color: #FFF;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    text-transform: uppercase;
}

.footer__huge-logo span {
    display: inline-block;
    color: var(--cor-accent);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    gap: 20px;
    font-family: var(--font-body);
}

.footer__privacy {
    color: rgba(255, 255, 255, 0.5);
}

.footer__privacy:hover {
    color: #FFF;
}

/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.wpp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--cor-accent-hover);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(120, 171, 68, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.wpp-float svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
}

.wpp-float:hover {
    background-color: var(--cor-primaria);
    transform: scale(1.05);
}

@media (prefers-reduced-motion: no-preference) {
    .wpp-float::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background-color: rgba(140, 200, 80, 0.5);
        z-index: 1;
        animation: wppPulse 2s infinite;
    }
}

@keyframes wppPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.wpp-float__tooltip {
    font-family: var(--font-principal);
    font-weight: 700;
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: var(--cor-primaria);
    color: #FFF;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.wpp-float__tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--cor-primaria);
}

.wpp-float:hover .wpp-float__tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ================================================================
   ANIMAÇÕES REVEAL
   ================================================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   MENU OVERLAY (MOBILE)
   ================================================================ */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 31, 21, 0.85);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ================================================================
   RESPONSIVO MOBILE
   ================================================================ */
@media (max-width: 900px) {

    .header {
        width: calc(100% - 40px);
        top: 15px;
    }

    .header__inner {
        gap: 10px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 50, 35, 0.99);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 20px;
        transition: var(--transition-smooth);
        z-index: 1000;
        justify-content: flex-start;
        align-items: stretch;
        display: flex;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav__link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 1.1rem;
        text-shadow: none;
    }

    .logo {
        font-size: 1.4rem;
        z-index: 1001;
    }

    .btn--accent {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        padding: 10px;
        z-index: 1001;
        cursor: pointer;
    }

    .hamburger span {
        width: 25px;
        height: 2px;
        background: #FFF;
        display: block;
        border-radius: 2px;
        transition: var(--transition-smooth);
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero__track-bar {
        flex-direction: column;
        border-radius: 20px;
        padding: 16px;
        gap: 16px;
    }

    .hero__track-bar input {
        text-align: center;
    }

    .hero__track-bar button {
        width: 100%;
    }

    .calculadora-wrapper,
    .frota-grid,
    .mapa-atuacao__inner,
    .dif-grid {
        grid-template-columns: 1fr;
    }

    .calc-info {
        padding-right: 0;
    }

    .cotacao__form {
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .form-group {
        min-width: 100%;
    }

    .footer__top {
        flex-direction: column;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 480px) {
    .hero__title {
        font-size: clamp(3rem, 14vw, 4.5rem);
    }

    .stat-number,
    .stat-suffix {
        font-size: 4rem;
    }

    .footer__links-grid {
        flex-direction: column;
        gap: 30px;
    }
}