/* ==========================================
   RESET E VARIÁVEIS MODERNAS
   ========================================== */
   
:root {
    --bg-dark: #02091a;       /* Azul profundo tech */
    --bg-card: #101625;       /* Fundo de cartão escuro */
    --primary-neon: #00FF88;   /* Verde Neon de ação */
    --text-main: #FFFFFF;
    --text-muted: #c3ccd9;
    --border-modern: #1E293B;
    --glass: rgba(255, 255, 255, 0.03);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ==========================================
   SEÇÃO DE DEPOIMENTOS (TESTIMONIALS)
   ========================================== */
.testimonials-section {
    padding: 100px 0;
    background-color: #0d1117; /* Um tom ligeiramente diferente para quebrar o fundo */
}

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

.testimonial-card {
    background-color: #161b22; /* Card escuro padrão do tema */
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88; /* Acende em neon sutil ao passar o mouse */
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.05);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars [data-lucide="star"] {
    width: 18px;
    height: 18px;
    fill: #ffb703; /* Cor dourada preenchida das estrelas */
    color: #ffb703;
}

.testimonial-text {
    font-size: 1rem;
    color: #8b949e;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00ff88 0%, #00bd68 100%);
    color: #090d16;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.testimonial-author h4 {
    color: #f0f6fc;
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-author span {
    color: #8b949e;
    font-size: 0.85rem;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
}

/* ==========================================
   BADGES MODERNAS
   ========================================== */
.badge-modern {
    background-color: rgba(0, 255, 136, 0.1);
    color: var(--primary-neon);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.card-badge-modern {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-neon);
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
}

/* EFEITO DE TEXTO EM GRADIENTE */
.text-gradient {
    background: linear-gradient(135deg, #FFFFFF 50%, #00FF88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================
   TOP BAR CLEAN
   ========================================== */
.top-bar-modern {
    background-color: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid var(--border-modern);
    font-size: 13px;
    color: var(--text-muted);
    padding: 10px 0;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-modern i {
    color: var(--primary-neon);
    width: 14px;
    vertical-align: middle;
    margin-right: 5px;
}

.btn-rastrear-modern {
    color: var(--text-main) !important;
    font-weight: 600;
    opacity: 0.8;
}

.btn-rastrear-modern:hover {
    opacity: 1;
}

/* ==========================================
   NAVBAR MODERNA (TRATADA PARA LOGO E MOBILE)
   ========================================== */
.navbar-modern {
    background-color: rgba(7, 11, 20, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-modern);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-modern {
    display: flex;
    align-items: center;
}

.logo-modern img {
    display: block;
    max-width: 100%;
    object-fit: contain;
}

.nav-links-modern a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin: 0 15px;
    transition: 0.3s;
}

.nav-links-modern a:hover {
    color: var(--text-main);
}

.btn-cotacao-modern {
    background-color: var(--primary-neon);
    color: #000 !important;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.btn-cotacao-modern:hover {
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

/* ESCONDENDO O CHECKBOX DO MENU */
.menu-checkbox {
    display: none;
}

.menu-btn-hamburguer {
    display: none;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}

.menu-btn-hamburguer span,
.menu-btn-hamburguer span::before,
.menu-btn-hamburguer span::after {
    content: '';
    display: block;
    background: var(--text-main);
    height: 2px;
    width: 100%;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    transition: 0.3s;
}

.menu-btn-hamburguer span::before { top: -8px; }
.menu-btn-hamburguer span::after { top: 8px; }

/* ==========================================
   HERO SECTION IMPACTANTE
   ========================================== */
.hero-modern {
    position: relative;
    padding: 150px 0 100px 0;
    overflow: hidden;
}

.hero-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 255, 136, 0.05), transparent);
}

.hero-grid-modern {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-text-modern h1 {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1.1;
    margin: 20px 0;
}

.hero-text-modern p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns-modern {
    display: flex;
    gap: 15px;
}

.btn-primary-modern {
    background-color: var(--primary-neon);
    color: #000 !important;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-primary-modern:hover {
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

.hero-image-modern img {
    width: 100%;
    border-radius: 0px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}


/* ==========================================
   SEÇÃO DE VEÍCULOS
   ========================================== */
.veiculos-section {
    padding: 100px 0;
    background-color: rgba(16, 22, 37, 0.3);
}

.veiculos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.veiculo-card {
    background-color: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.veiculo-card:hover {
    border-color: var(--primary-neon);
    transform: translateY(-5px);
}

.veiculo-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.veiculo-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

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

.veiculo-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-neon);
    color: #000;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.veiculo-info {
    padding: 30px;
    flex-grow: 1;
}

.veiculo-info h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-main);
}

.veiculo-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================
   COMO FUNCIONA
   ========================================== */
.platform-section-modern {
    padding: 100px 0;
}

.section-header-modern {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-header-modern h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 15px;
}

.section-header-modern p {
    color: var(--text-muted);
}

.grid-platform-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.platform-card-modern {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    transition: 0.3s;
}

.platform-card-modern:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.1);
}

.platform-card-modern.featured-modern {
    border-color: var(--primary-neon);
}

.icon-box-modern {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 136, 0.05);
    color: var(--primary-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.platform-card-modern h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
}

.platform-card-modern p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.platform-card-modern ul {
    list-style: none;
    font-size: 13px;
    color: var(--text-muted);
}

.platform-card-modern ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.platform-card-modern ul li i {
    width: 14px;
    color: var(--primary-neon);
}

/* ==========================================
   VANTAGENS
   ========================================== */
.advantages-section-modern {
    padding: 80px 0;
    background-color: rgba(16, 22, 37, 0.5);
    border-top: 1px solid var(--border-modern);
    border-bottom: 1px solid var(--border-modern);
}

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

.recurso-item-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--glass);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.recurso-item-modern i {
    color: var(--primary-neon);
    width: 32px;
    height: 32px;
}

.recurso-item-modern h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
}

.recurso-item-modern p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ==========================================
   FOOTER CLEAN MODERNO
   ========================================== */
footer {
    padding: 60px 0 20px 0;
}

.footer-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-brand-modern small {
    opacity: 0.5;
}

.footer-contact-modern h4 {
    color: var(--text-main);
    margin-bottom: 15px;
}

.footer-contact-modern p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-modern i {
    color: var(--primary-neon);
    width: 14px;
}

.footer-bottom-modern {
    border-top: 1px solid var(--border-modern);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.5;
}

/* ==========================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ========================================== */
.btn-whatsapp-flutuante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulsar 2s infinite;
}

.btn-whatsapp-flutuante i {
    width: 30px;
    height: 30px;
}

.btn-whatsapp-flutuante:hover {
    transform: scale(1.1);
}

.tooltip-whatsapp {
    position: absolute;
    right: 75px;
    background-color: #101625;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.btn-whatsapp-flutuante:hover .tooltip-whatsapp {
    opacity: 1;
    visibility: visible;
}

@keyframes pulsar {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================
   RESPONSIVIDADE PREMIUM CORRIGIDA (Geral para Tablets)
   ========================================== */
@media (max-width: 992px) {
    .hero-grid-modern {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text-modern h1 {
        font-size: 34px;
    }
    
    .hero-text-modern p, .hero-btns-modern {
        margin: 0 auto 30px auto;
        justify-content: center;
    }
    
    .menu-btn-hamburguer {
        display: block;
        z-index: 1100;
    }

    /* MENU MOBILE: Agora ele fica acima da tela e desce preenchendo tudo */
    .nav-links-modern {
        position: fixed;
        top: -100vh; /* Escondido totalmente para cima */
        left: 0; 
        width: 100%; 
        height: 100vh;
        background-color: rgba(7, 11, 20, 0.98); 
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px; /* Controlando o espaçamento vertical */
        transition: 0.4s ease-in-out;
        z-index: 1050;
    }

    /* QUANDO O CHECKBOX ESTIVER ATIVO, O MENU DESCE DO TOPO */
    .menu-checkbox:checked ~ .nav-links-modern {
        top: 0; /* Volta para a posição visível */
    }

    /* TRANSFORMAÇÃO DO BOTÃO EM "X" */
    .menu-checkbox:checked ~ .menu-btn-hamburguer span { background: transparent; }
    .menu-checkbox:checked ~ .menu-btn-hamburguer span::before { transform: rotate(45deg); top: 0; }
    .menu-checkbox:checked ~ .menu-btn-hamburguer span::after { transform: rotate(-45deg); top: 0; }

    /* ORDEM E ESTILO DOS LINKS NORMAIS NO MOBILE */
    .nav-links-modern a {
        order: 2; /* Joga os links para baixo */
        font-size: 20px !important; 
        color: #fff;
    }

    /* AJUSTE DO BOTÃO SIMULAR COTAÇÃO NO MENU MOBILE (AGORA NO TOPO) */
    .nav-links-modern .btn-cotacao-modern {
        order: 1 !important; /* Coloca o botão no topo antes de todos os links */
        display: inline-block !important;
        width: auto !important;
        max-width: 200px !important; /* Largura menor e controlada */
        padding: 10px 20px !important; /* Botão mais delicado */
        font-size: 15px !important;
        text-align: center !important;
        margin: 0 auto 15px auto !important; /* Margem embaixo para separar dos links */
    }

    .veiculos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ==========================================
   RESPONSIVIDADE PARA CELULARES
   ========================================== */
@media (max-width: 768px) {
    .veiculos-grid {
        grid-template-columns: 1fr;
    }

    .hero-text-modern h1 {
        font-size: 28px;
    }

    .hero-btns-modern {
        flex-direction: column; 
        width: 100%;
        align-items: center;
    }

    .btn-primary-modern {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ==========================================
   MOBILE ULTRA OTIMIZADO (LS TRACKER PRO)
   ========================================== */
@media (max-width: 768px) {

    body {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    /* HERO AJUSTADO */
    .hero-modern {
        padding: 100px 0 60px 0;
    }

    .hero-text-modern h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-text-modern p {
        font-size: 14px;
        max-width: 100%;
    }

    /* BOTÕES MAIS CONFORTÁVEIS */
    .btn-primary-modern {
        width: 100%;
        max-width: 100%;
        padding: 16px;
        font-size: 15px;
    }

    /* NAVBAR */
    .navbar-modern {
        padding: 12px 0;
    }

    .logo-modern img {
        max-height: 40px;
    }

    /* CARDS */
    .veiculo-card {
        border-radius: 15px;
    }

    .veiculo-img-wrapper {
        height: 200px;
    }

    .veiculo-info {
        padding: 20px;
    }

    /* SEÇÕES */
    .platform-section-modern,
    .veiculos-section,
    .advantages-section-modern {
        padding: 60px 0;
    }

    .section-header-modern h2 {
        font-size: 24px;
    }

    .section-header-modern p {
        font-size: 14px;
    }

    /* GRID AJUSTADO */
    .grid-platform-modern {
        gap: 20px;
    }

    .platform-card-modern {
        padding: 25px;
    }

    /* VANTAGENS */
    .recurso-item-modern {
        padding: 20px;
        gap: 15px;
    }

    /* FOOTER */
    .footer-grid-modern {
        gap: 25px;
        text-align: center;
    }

    /* BOTÃO WHATSAPP AJUSTADO */
    .btn-whatsapp-flutuante {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .tooltip-whatsapp {
        display: none;
    }
}

/* ==========================================
   TELAS MUITO PEQUENAS (EX: CELULAR ANTIGO)
   ========================================== */
@media (max-width: 400px) {

    .hero-text-modern h1 {
        font-size: 22px;
    }

    .btn-primary-modern {
        font-size: 14px;
        padding: 14px;
    }

    .nav-links-modern a {
        font-size: 18px;
    }
    
    .nav-links-modern .btn-cotacao-modern {
        font-size: 14px;
        max-width: 220px;
    }
}
/* ==========================================
   EFEITO PREMIUM EXTRA
   ========================================== */

/* Glow nos botões */
.btn-primary-modern,
.btn-cotacao-modern {
    box-shadow: 0 0 0 rgba(0,255,136,0);
    transition: 0.3s;
}

.btn-primary-modern:hover,
.btn-cotacao-modern:hover {
    box-shadow: 0 0 20px rgba(0,255,136,0.4);
}

/* Navbar mais glass */
.navbar-modern {
    background: rgba(7,11,20,0.7);
    backdrop-filter: blur(15px);
}

/* Cards mais vivos */
.veiculo-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}
.nav-links-modern {
    border-top: 1px solid rgba(255,255,255,0.05);
}

.nav-links-modern .btn-cotacao-modern {
    margin-bottom: 10px;
}
/* Estilo para a nova coluna de links */
.footer-links-modern h4 {
    color: #fff; /* Ou a cor dos seus outros títulos h4 */
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-links-modern ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-modern ul li {
    margin-bottom: 10px;
}

.footer-links-modern ul li a {
    color: #a0aec0; /* Cor cinza padrão para links do footer */
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Efeito ao passar o mouse por cima */
.footer-links-modern ul li a:hover {
    color: #fff; /* Muda para branco (ou a cor principal do seu site) */
}