/* --- DESIGN SYSTEM PREMIUM & RESPONSIVE SCALE --- */
:root {
    /* Cores Institucionais Refinadas */
    --suhai-lime: #CCFF00;
    --suhai-lime-dim: #b3e600;
    --suhai-dark: #0A1F1C;
    --suhai-deep: #020F0D;
    
    /* Superfícies */
    --surface-light: #ffffff;
    --surface-off: #F8F9FA;
    --surface-glass: rgba(255, 255, 255, 0.7);
    --border-light: rgba(10, 31, 28, 0.08);
    
    /* Tipografia Fluida (Clamp) */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --text-xs: clamp(0.75rem, 1vw, 0.85rem);
    --text-sm: clamp(0.875rem, 1.2vw, 1rem);
    --text-base: clamp(1rem, 1.5vw, 1.125rem);
    --text-lg: clamp(1.25rem, 2vw, 1.5rem);
    --text-xl: clamp(1.5rem, 2.5vw, 2rem);
    --text-2xl: clamp(2rem, 4vw, 3rem);
    --text-3xl: clamp(2.5rem, 6vw, 4.5rem);
    
    /* Espaçamento Fluido */
    --space-sm: clamp(8px, 2vw, 16px);
    --space-md: clamp(16px, 4vw, 32px);
    --space-lg: clamp(32px, 6vw, 64px);
    --space-xl: clamp(60px, 10vw, 120px);

    /* Easing e Motion */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Sombras Premium */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-neon: 0 0 20px rgba(204, 255, 0, 0.3);
}

/* Reset Avançado */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
    background-color: var(--surface-light);
    color: var(--suhai-dark);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Scroll Lock (para menu mobile) */
body.no-scroll { overflow: hidden; height: 100vh; }

/* --- CURSOR CUSTOMIZADO (Desktop) --- */
@media (pointer: fine) and (min-width: 1024px) {
    .cursor-dot, .cursor-outline {
        position: fixed; top: 0; left: 0; transform: translate(-50%, -50%);
        border-radius: 50%; z-index: 9999; pointer-events: none;
    }
    .cursor-dot { width: 8px; height: 8px; background: var(--suhai-dark); transition: transform 0.1s; }
    .cursor-outline {
        width: 40px; height: 40px; border: 1px solid rgba(10, 31, 28, 0.2);
        transition: width 0.2s, height 0.2s, background 0.2s, border-color 0.2s;
    }
}

/* --- SCROLL PROGRESS & PRELOADER --- */
.scroll-progress-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 4px; z-index: 2000; pointer-events: none;
}
.scroll-progress-bar {
    height: 100%; width: 0%; background: var(--suhai-lime);
}

.preloader {
    position: fixed; inset: 0; background: var(--surface-light); z-index: 9999;
    display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease;
}
.loader-content { text-align: center; }
.loader-text { display: block; margin-bottom: 10px; font-family: var(--font-display); font-weight: 700; }
.loader-line-wrap { width: 150px; height: 2px; background: rgba(0,0,0,0.1); position: relative; overflow: hidden; }
.loader-line {
    position: absolute; left: 0; top: 0; height: 100%; width: 100%;
    background: var(--suhai-lime); transform: translateX(-100%);
    animation: loadLine 1.5s infinite ease-in-out;
}
@keyframes loadLine { 0% { transform: translateX(-100%); } 50% { transform: translateX(0); } 100% { transform: translateX(100%); } }

/* --- BACKGROUND DINÂMICO --- */
.global-canvas {
    position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
}
.noise-layer {
    position: absolute; inset: 0; opacity: 0.04;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIj48ZmlsdGVyIGlkPSJnoiPjxmZVR1cmJ1bGVuY2UgdHlwZT0iZnJhY3RhbE5vaXNlIiBiYXNlRnJlcXVlbmN5PSIwLjY1IiBudW1PY3RhdmVzPSIzIiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI2cpIiBvcGFjaXR5PSIwLjAzIi8+PC9zdmc+');
}
.hero-orb {
    position: absolute; width: 60vw; height: 60vw; border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.15) 0%, transparent 70%);
    filter: blur(80px); top: -20%; right: -20%;
    will-change: transform;
}

/* --- SMART HEADER --- */
.smart-header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: var(--space-sm) 0; transition: transform 0.4s var(--ease-out-expo), padding 0.4s, background-color 0.4s;
}
.smart-header.nav-up { transform: translateY(-100%); }
.smart-header.scrolled {
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05); padding: 10px 0;
}

.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 var(--space-md); }
.header-content { display: flex; justify-content: space-between; align-items: center; }

.brand-cluster { display: flex; align-items: center; gap: var(--space-sm); }
.logo-rep { height: 70px; width: auto; object-fit: contain; transition: height 0.3s ease; }
.logo-suhai { height: 32px; width: auto; object-fit: contain; }
.divider { width: 1px; height: 50px; background: rgba(0,0,0,0.1); }
.badge-autorizado { font-size: 0.65rem; text-transform: uppercase; font-weight: 700; color: var(--suhai-dark); letter-spacing: 0.05em; display: block; }

.nav-desktop { display: flex; gap: var(--space-md); align-items: center; }
.nav-link {
    font-weight: 500; font-size: 0.95rem; color: var(--suhai-dark); position: relative;
    padding: 4px 0; overflow: hidden;
}
.nav-link span { display: block; transition: transform 0.3s var(--ease-out-expo); }
.nav-link::after {
    content: attr(data-text); position: absolute; top: 100%; left: 0; width: 100%;
    font-weight: 600; color: var(--suhai-dark); transition: transform 0.3s var(--ease-out-expo);
}
.nav-link:hover span { transform: translateY(-100%); }
.nav-link:hover::after { transform: translateY(-100%); }

.btn-header {
    background: var(--suhai-dark); color: white; padding: 12px 24px; border-radius: 4px;
    font-weight: 600; font-size: 0.9rem; position: relative; overflow: hidden; display: flex;
    align-items: center; justify-content: center;
}
.btn-header .btn-text { position: relative; z-index: 2; }
.btn-header .btn-fill {
    position: absolute; inset: 0; background: var(--suhai-lime);
    transform: translateY(100%); transition: transform 0.3s var(--ease-out-expo); z-index: 1;
}
.btn-header:hover { color: var(--suhai-dark); }
.btn-header:hover .btn-fill { transform: translateY(0); }

.menu-trigger {
    display: none; background: none; border: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 5px;
}
.bar { width: 28px; height: 2px; background: var(--suhai-dark); transition: 0.3s; }

.fs-menu {
    position: fixed; inset: 0; z-index: 1500; pointer-events: none;
    display: flex; align-items: center; justify-content: center;
}
.fs-bg {
    position: absolute; inset: 0; background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    opacity: 0; transition: opacity 0.4s ease;
}
.fs-content {
    position: relative; z-index: 2; opacity: 0; transform: translateY(20px); transition: 0.4s ease; text-align: center;
}
.fs-menu.active { pointer-events: all; }
.fs-menu.active .fs-bg { opacity: 1; }
.fs-menu.active .fs-content { opacity: 1; transform: translateY(0); }
.fs-link {
    display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700;
    margin-bottom: 24px; color: var(--suhai-dark); position: relative;
}
.fs-link .num { font-size: 1rem; color: #aaa; font-weight: 400; position: absolute; top: 0; left: -30px; }
.fs-cta {
    display: inline-block; margin-top: 20px; padding: 16px 40px; background: var(--suhai-lime);
    color: var(--suhai-dark); font-weight: 700; border-radius: 50px;
}

/* --- HERO SECTION --- */
.hero-section {
    min-height: 100vh; display: flex; align-items: center; padding-top: 100px; padding-bottom: 40px; position: relative; overflow: hidden;
}
.hero-video-wrapper {
    position: absolute; inset: 0; z-index: -2; opacity: 0.1; pointer-events: none;
}
.video-overlay {
    position: absolute; inset: 0; background: linear-gradient(to bottom, var(--surface-light) 0%, transparent 20%, transparent 80%, var(--surface-light) 100%);
}

.hero-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-xl); align-items: center; }

.tag-hero {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
    background: rgba(10, 31, 28, 0.05); border-radius: 50px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; margin-bottom: var(--space-md);
}
.pulse-dot { width: 8px; height: 8px; background: var(--suhai-lime-dim); border-radius: 50%; box-shadow: 0 0 0 2px rgba(204, 255, 0, 0.4); animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(204, 255, 0, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(204, 255, 0, 0); } }

.hero-title {
    font-family: var(--font-display); font-size: var(--text-3xl); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: var(--space-md);
}
.line-mask { overflow: hidden; }
.line-mask span { display: block; transform: translateY(100%); }
.highlight-text { color: #5a6e69; font-style: italic; font-weight: 400; }

.hero-desc { font-size: var(--text-base); color: #5a6e69; max-width: 500px; margin-bottom: var(--space-lg); line-height: 1.7; }

/* --- FORM PREMIUM UI --- */
.hero-visual { position: relative; z-index: 10; }

.glass-panel.premium-form {
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.form-top-tags { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.tag-express {
    background: var(--suhai-lime); color: var(--suhai-dark); padding: 6px 14px;
    border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px; box-shadow: 0 4px 10px rgba(204, 255, 0, 0.3);
}
.tag-secure { font-size: 0.8rem; color: #5a6e69; font-weight: 600; display: flex; align-items: center; gap: 6px; }

.premium-form .form-header h3 { font-family: var(--font-display); font-size: 1.8rem; line-height: 1.2; margin-bottom: 12px; letter-spacing: -0.02em; color: var(--suhai-dark); }
.premium-form .form-header p { font-size: 0.95rem; color: #5a6e69; margin-bottom: 20px; line-height: 1.5; }
.premium-form .form-header strong { color: var(--suhai-dark); background: rgba(204,255,0,0.4); padding: 2px 6px; border-radius: 4px; font-weight: 700; }

.form-trust-pills { display: flex; gap: 12px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid rgba(10,31,28,0.08); flex-wrap: wrap; }
.form-trust-pills .pill {
    font-size: 0.8rem; font-weight: 600; color: var(--suhai-dark);
    background: rgba(10,31,28,0.04); padding: 6px 12px; border-radius: 6px;
    display: flex; align-items: center; gap: 6px; transition: 0.3s;
}
.form-trust-pills .pill:hover { background: rgba(204,255,0,0.2); }
.form-trust-pills .pill i { color: var(--suhai-lime-dim); font-size: 0.9rem; }

/* Formulário Inputs */
.quote-form-wrapper { width: 100%; }
.input-row { margin-bottom: 24px; }
.input-row.split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.input-field { position: relative; }
.input-field input, .input-field select {
    width: 100%; padding: 12px 0; border: none; border-bottom: 1px solid rgba(10,31,28,0.2);
    background: transparent; font-size: 1rem; color: var(--suhai-dark);
    outline: none; transition: border-color 0.3s;
}

/* Modificadores com ícones */
.input-field.with-icon input, .input-field.with-icon select { padding-left: 32px; }
.input-field.with-icon label { left: 32px; }

.input-icon {
    position: absolute; left: 0; top: 14px; color: #88908d;
    font-size: 1.1rem; transition: color 0.3s; pointer-events: none;
}
.input-field input:focus ~ .input-icon, .input-field select:focus ~ .input-icon { color: var(--suhai-dark); }

.input-field label {
    position: absolute; top: 12px; left: 0; font-size: 1rem; color: #5a6e69;
    pointer-events: none; transition: 0.3s ease;
}
.input-line {
    position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--suhai-lime-dim); transition: width 0.3s;
}

/* Floating Label Logic Ajustada */
.input-field input:focus ~ label,
.input-field input:not(:placeholder-shown) ~ label,
.input-field select:focus ~ label,
.input-field select:valid ~ label {
    top: -16px; left: 0 !important; font-size: 0.75rem; color: var(--suhai-dark); font-weight: 700;
}
.input-field input:focus ~ .input-line,
.input-field select:focus ~ .input-line { width: 100%; }

/* Botão Moderno */
.premium-form .submit-btn {
    width: 100%; padding: 20px; background: var(--suhai-lime); border: none; font-weight: 700;
    font-size: 1.1rem; cursor: pointer; border-radius: 8px; transition: 0.3s; position: relative; overflow: hidden;
    color: var(--suhai-dark); display: flex; align-items: center; justify-content: center; gap: 10px; box-shadow: var(--shadow-neon); margin-top: 10px;
}
.premium-form .submit-btn i { font-size: 1.3rem; }
.submit-btn span { position: relative; z-index: 2; display: flex; align-items: center; gap: 8px; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 0 25px rgba(204, 255, 0, 0.5); }
.submit-btn:active { transform: scale(0.98); }
.btn-ripple {
    position: absolute; border-radius: 50%; background: rgba(255,255,255,0.4);
    transform: scale(0); animation: ripple 0.6s linear; pointer-events: none;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

.form-disclaimer {
    text-align: center; font-size: 0.75rem; color: #88908d;
    margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* --- MARQUEE --- */
.marquee-section { padding: var(--space-md) 0; overflow: hidden; background: var(--surface-light); border-bottom: 1px solid var(--border-light); }
.marquee-track { display: flex; white-space: nowrap; animation: scrollMarquee 20s linear infinite; }
.marquee-item {
    font-size: var(--text-2xl); font-family: var(--font-display); font-weight: 700; color: transparent;
    -webkit-text-stroke: 1px rgba(10, 31, 28, 0.15); margin-right: 60px; text-transform: uppercase;
    display: flex; align-items: center; gap: 16px;
}
.marquee-item i { font-size: 1.5rem; color: var(--suhai-lime); -webkit-text-stroke: 0; }
@keyframes scrollMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- BENEFITS (BENTO GRID) --- */
.section-benefits { padding: var(--space-xl) 0; }
.section-header { margin-bottom: var(--space-lg); }
.overline { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.1em; font-weight: 700; color: #88908d; display: block; margin-bottom: 16px; }
.section-header h2 { font-family: var(--font-display); font-size: var(--text-3xl); line-height: 1.1; }

.bento-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-md);
}
.bento-card {
    background: var(--surface-off); padding: var(--space-md); border-radius: 16px; position: relative; overflow: hidden;
    display: flex; flex-direction: column; justify-content: center; min-height: 280px; transition: transform 0.3s;
}
.bento-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); background: #fff; }
.bento-card.large { background: var(--suhai-dark); color: #fff; }

.card-bg-icon { font-size: 5rem; color: var(--suhai-lime); margin-bottom: auto; opacity: 0.8; }
.icon-circle {
    width: 56px; height: 56px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 24px; color: var(--suhai-dark); box-shadow: var(--shadow-sm);
}
.bento-card h3 { font-size: var(--text-xl); margin-bottom: 12px; font-family: var(--font-display); position: relative; z-index: 2; }
.bento-card p { font-size: 1rem; opacity: 0.8; position: relative; z-index: 2; }
.card-hover-effect {
    position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(204,255,0,0.1), transparent);
    opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.bento-card:hover .card-hover-effect { opacity: 1; }

/* --- VEÍCULOS (SIMULATOR) --- */
.section-vehicles { padding: var(--space-xl) 0; position: relative; color: #fff; }
.bg-dark-layer { position: absolute; inset: 0; background: var(--suhai-deep); z-index: -1; }
.vehicle-layout { display: grid; grid-template-columns: 0.4fr 1fr; gap: var(--space-lg); align-items: start; }

.sticky-content { position: sticky; top: 120px; }
.light-text { color: #fff; }
.light-sub { color: rgba(255,255,255,0.6); margin-bottom: 32px; }

.nav-buttons { display: flex; flex-direction: column; gap: 12px; }
.v-btn {
    text-align: left; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6); padding: 20px; border-radius: 12px;
    font-size: 1.1rem; font-family: var(--font-display); cursor: pointer; transition: 0.3s;
    display: flex; align-items: center; gap: 16px;
}
.v-btn i { font-size: 1.2rem; }
.v-btn.active { background: var(--suhai-lime); color: var(--suhai-dark); border-color: var(--suhai-lime); transform: translateX(10px); }

.display-card {
    background: rgba(255,255,255,0.05); border-radius: 24px; overflow: hidden; display: none;
    grid-template-columns: 1fr 1fr; border: 1px solid rgba(255,255,255,0.1); animation: fadeUp 0.6s ease;
}
.display-card.active { display: grid; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.card-visual { background-color: #1a1a1a; min-height: 400px; position: relative; }
.visual-badge {
    position: absolute; top: 20px; left: 20px; background: var(--suhai-lime); color: var(--suhai-dark);
    padding: 6px 12px; border-radius: 4px; font-weight: 700; font-size: 0.75rem; text-transform: uppercase;
}
.car-bg { background-image: radial-gradient(circle at 50% 50%, #333 1px, transparent 1px); background-size: 20px 20px; }
.moto-bg { background-image: linear-gradient(45deg, #222 25%, transparent 25%, transparent 75%, #222 75%); background-size: 20px 20px; }
.truck-bg { background-image: repeating-linear-gradient(45deg, #222, #222 10px, #1a1a1a 10px, #1a1a1a 20px); }

.card-info { padding: var(--space-lg); display: flex; flex-direction: column; justify-content: center; }
.card-info h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 16px; }
.card-info p { margin-bottom: 24px; color: rgba(255,255,255,0.8); }
.specs li { margin-bottom: 16px; display: flex; gap: 16px; align-items: center; }
.spec-icon { width: 32px; height: 32px; background: rgba(204,255,0,0.1); color: var(--suhai-lime); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.btn-outline-light {
    display: inline-block; padding: 14px 28px; border: 1px solid rgba(255,255,255,0.3);
    color: #fff; border-radius: 4px; text-align: center; margin-top: 24px; font-weight: 600; transition: 0.3s;
}
.btn-outline-light:hover { background: #fff; color: var(--suhai-dark); }

/* --- COBERTURAS (GRID REFINADO) --- */
.section-coverage { padding: var(--space-xl) 0; }
.coverage-header-full { max-width: 800px; margin: 0 auto var(--space-lg); text-align: center; }
.coverage-header-full h2 { font-family: var(--font-display); font-size: var(--text-3xl); line-height: 1.1; margin-bottom: 16px; color: var(--suhai-dark); }
.coverage-header-full p { font-size: 1.1rem; color: #5a6e69; line-height: 1.6; }

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.coverage-card {
    background: var(--surface-off);
    border: 1px solid var(--border-light);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.coverage-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(204,255,0,0.1) 0%, transparent 100%);
    z-index: -1; opacity: 0; transition: opacity 0.4s ease;
}

.coverage-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(204,255,0,0.5); }
.coverage-card:hover::before { opacity: 1; }

.coverage-card .card-icon {
    font-size: 1.8rem; color: var(--suhai-dark);
    margin-bottom: 24px; width: 56px; height: 56px;
    background: #fff; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm); transition: 0.3s;
}

.coverage-card:hover .card-icon { background: var(--suhai-lime); }

.coverage-card h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--suhai-dark); margin-bottom: 16px; }
.coverage-card p { font-size: 0.95rem; color: #5a6e69; line-height: 1.6; margin-bottom: 16px; flex-grow: 1; }
.coverage-card ul { list-style: none; padding: 0; }
.coverage-card ul li {
    font-size: 0.95rem; color: #5a6e69; margin-bottom: 10px; position: relative; padding-left: 24px;
}
.coverage-card ul li::before {
    content: '\f00c'; font-family: 'FontAwesome'; color: var(--suhai-lime-dim);
    position: absolute; left: 0; top: 0; font-size: 0.9rem;
}

.highlight-card {
    background: var(--suhai-dark);
    color: #fff;
    border-color: var(--suhai-dark);
}
.highlight-card::before { display: none; }
.highlight-card .card-icon { background: rgba(255,255,255,0.1); color: var(--suhai-lime); box-shadow: none; }
.highlight-card h3 { color: #fff; }
.highlight-card p, .highlight-card ul li { color: rgba(255,255,255,0.8); }
.highlight-card:hover { border-color: var(--suhai-lime); box-shadow: var(--shadow-neon); }

.card-badge {
    position: absolute; top: 20px; right: 20px;
    background: var(--suhai-lime); color: var(--suhai-dark);
    padding: 6px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
}


/* --- TESTIMONIALS --- */
.section-testimonials { padding-bottom: var(--space-xl); overflow: hidden; }
.testimonials-track-wrapper {
    width: 100%; overflow-x: auto; padding-bottom: 20px; scrollbar-width: none;
    scroll-snap-type: x mandatory; display: flex; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; cursor: grab;
}
.testimonials-track-wrapper:active { cursor: grabbing; }
.testimonials-track-wrapper::-webkit-scrollbar { display: none; }
.testimonials-track { display: flex; gap: 24px; padding: 0 var(--space-md); width: max-content; }
.testimonial-card {
    min-width: 300px; max-width: 400px; background: #fff; padding: 32px; border-radius: 16px;
    box-shadow: var(--shadow-md); border: 1px solid var(--border-light); scroll-snap-align: center; flex-shrink: 0;
}
.stars { color: #f1c40f; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card p { font-style: italic; color: #555; margin-bottom: 24px; line-height: 1.6; }
.author { display: flex; align-items: center; gap: 16px; }
.avatar-circle { width: 48px; height: 48px; background: var(--suhai-dark); color: var(--suhai-lime); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.author-info strong { display: block; font-size: 0.95rem; }
.author-info span { font-size: 0.85rem; color: #888; }


/* --- NEW FOOTER PREMIUM --- */
.main-footer {
    padding: 80px 0 40px;
    background: var(--surface-off);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 60px;
}
.f-logo-wrapper { margin-bottom: 20px; }
.f-logo { height: auto; width: auto; max-width: 180px; object-fit: contain; }
.brand-tagline { font-size: 0.8rem; text-transform: uppercase; font-weight: 700; color: var(--suhai-dark); margin-bottom: 16px; letter-spacing: 0.05em; display: inline-block; padding: 4px 12px; background: rgba(204,255,0,0.3); border-radius: 4px; }
.brand-desc { font-size: 0.95rem; color: #5a6e69; line-height: 1.6; max-width: 300px; }

.footer-col h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; color: var(--suhai-dark); }
.f-nav { display: flex; flex-direction: column; gap: 16px; }
.f-nav a { color: #5a6e69; font-size: 0.95rem; font-weight: 500; transition: color 0.2s, transform 0.2s; display: inline-block; }
.f-nav a:hover { color: var(--suhai-dark); transform: translateX(5px); }

/* Seção de Contatos Enriquecida */
.contact-info a, .contact-info .working-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5a6e69;
    font-size: 0.95rem;
}
.contact-info i {
    color: var(--suhai-dark);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}
.contact-info .working-hours { margin-bottom: 8px; }
.f-cta { color: var(--suhai-dark) !important; font-weight: 700 !important; display: inline-flex; align-items: center; gap: 8px; }
.f-cta i { font-size: 0.8rem; color: var(--suhai-lime-dim); }
.mt-3 { margin-top: 16px !important; }

/* Bloco Regulatório SUSEP Ajustado para Imagem */
.footer-regulatory {
    background: var(--surface-light); border: 1px solid var(--border-light);
    border-radius: 12px; padding: 24px; display: flex; align-items: center; gap: 24px;
    margin-bottom: 40px; box-shadow: var(--shadow-sm);
}
.regulatory-icon.susep-wrapper {
    width: 120px;
    height: auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.susep-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.regulatory-text { display: flex; flex-direction: column; gap: 4px; }
.regulatory-text strong { font-size: 1rem; color: var(--suhai-dark); font-family: var(--font-display); }
.regulatory-text span { font-size: 0.9rem; color: #5a6e69; }

.footer-separator { height: 1px; background: rgba(0,0,0,0.08); width: 100%; margin-bottom: 30px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: #88908d; flex-wrap: wrap; gap: 20px; }


/* --- RESPONSIVO (MOBILE PERFEITO) --- */
@media (max-width: 1024px) {
    .nav-desktop { display: none; }
    .menu-trigger { display: flex; }
    
    .hero-container { grid-template-columns: 1fr; text-align: center; padding-top: 40px; }
    .hero-actions { justify-content: center; margin-bottom: 32px; }
    .hero-visual { max-width: 600px; margin: 0 auto; width: 100%; }
    
    .bento-grid { grid-template-columns: 1fr; }
    
    .input-row.split { grid-template-columns: 1fr; gap: 24px; }
    
    .vehicle-layout { grid-template-columns: 1fr; }
    .vehicle-layout > * { min-width: 0; }
    
    .display-card { grid-template-columns: 1fr; }
    .card-visual { height: 200px; min-height: auto; }
    .sticky-content { position: static; margin-bottom: 40px; }
    
    .nav-buttons { 
        display: flex; flex-direction: column; gap: 12px; overflow: visible; padding-bottom: 0; width: 100%;
    }
    .v-btn { 
        width: 100%; flex: 0 0 auto; justify-content: flex-start; padding: 18px 24px; white-space: normal;
    }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .f-logo-wrapper { display: flex; justify-content: center; }
    .brand-desc { margin: 0 auto; }
    .f-nav { align-items: center; }
    
    .footer-regulatory { flex-direction: column; text-align: center; }
    .regulatory-icon.susep-wrapper { margin: 0 auto 16px; }
}

@media (max-width: 480px) {
    .logo-rep { height: 50px; }
    .divider { height: 35px; }

    .hero-title { font-size: 2.5rem; }
    .marquee-item { font-size: 2rem; }
    .container { padding: 0 20px; }
    
    .v-btn { font-size: 1rem; }
    .testimonial-card { min-width: 85vw; max-width: 85vw; }
    
    /* Ajuste de espaçamento do form no mobile */
    .glass-panel.premium-form { padding: 24px 20px; }
    .form-trust-pills { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .marquee-track { animation: none; transform: translateX(0); flex-wrap: wrap; }
    .marquee-item { margin-right: 20px; font-size: 1.5rem; }
}