html, body {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #050505; /* Preto muito profundo, mas não #000 */
    color: #e5e5e5; /* Texto off-white para cansar menos a vista */
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* Linhas de grade sutis */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px; /* Tamanho dos quadrados da grade */
    
    /* Fade out para a grade desaparecer suavemente na parte inferior */
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    
    z-index: -1;
    pointer-events: none;
}
/* --- Estilização do Header e Navbar --- */
.main-header {
    background-color: rgba(5, 5, 5, 0.85); /* Combina com o novo body */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* Borda muito sutil */
    box-shadow: none; /* Remove a sombra pesada antiga */
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.navbar-logo {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-logo .logo-icon {
    height: 55px;
    width: auto;
}

.navbar-logo .logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.navbar-logo .logo-main {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #4CAF50;
    display: block;
    letter-spacing: 1px;
    line-height: 1;
}

.navbar-logo .logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #FFFFFF;
    display: block;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.nav-link,
.nav-link:visited {
    font-family: 'Poppins', sans-serif;
    color: #E0E0E0;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 10px 5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #368731;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-link:hover {
    color: #FFFFFF;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-button-login {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #368731;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-button-login:hover {
    background-color: #2b6b26;
    transform: scale(1.05);
    color: #FFFFFF;
}

.nav-button-login::after {
    display: none;
}

.nav-toggle,
.nav-toggle-label {
    display: none;
}

.hero {
    padding: 80px 20px 60px 20px;
    color: #FFFFFF;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 550px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -1px; /* Deixa o título mais compacto e moderno */
    line-height: 1.15;
}

.hero-text h1 span {
    color: #4CAF50; /* Verde apenas na palavra chave */
    /* Brilho localizado apenas no texto */
    text-shadow: 0 0 30px rgba(76, 175, 80, 0.4); 
}

.hero-text p {
    font-size: 18px;
    color: #a0a0a0; /* Cinza médio para subtítulo */
    font-weight: 300;
    max-width: 480px;
}
.cta-button {
    background-color: #368731b3;
    color: #FFFFFF;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    display: inline-block;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse-green-glow 2.5s infinite;
}

.cta-button:hover {
    background-color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    animation: none;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

.divider-section {
    padding: 40px 0;
}

.divider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-divider {
    border: 0;
    height: 1px;
    background-color: #FFFFFF;
}

.features-section {
    padding: 60px 20px;
    color: #FFFFFF;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 60px 0;
    line-height: 1.3;
}

.section-title span {
    color: #368731;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: #0f0f0f; /* Levemente mais claro que o fundo */
    border: 1px solid #222; /* Borda sutil */
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #368731; /* Borda verde apenas no hover */
    background: #141414;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-icon {
    color: #368731;
    font-size: 32px;
    margin-bottom: 20px;
    /* Fundo do ícone removido para ficar mais clean */
    background: transparent; 
    width: auto;
    height: auto;
}

.feature-card h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
    color: #FFFFFF;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
}

.dashboard-promo-section,
.checklist-promo-section,
.maintenance-promo-section {
    padding: 40px 0;
    color: #FFFFFF;
}

.promo-container,
.checklist-container {
    display: grid;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    background-color: #1E1E1E;
    padding: 50px;
    border-radius: 20px;
}

.promo-container {
    grid-template-columns: 1fr 45%;
}

.checklist-container {
    grid-template-columns: 65% 1fr;
}

.promo-text h2,
.checklist-text h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 30px 0;
}

.promo-text h2 span,
.checklist-text h2 span {
    color: #368731;
}

.promo-image img,
.checklist-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ========================================
   SEÇÃO DE DEPOIMENTOS
   ======================================== */
.testimonials-section {
    padding: 80px 20px;
    background-color: #000000; /* Cor de fallback */
    color: #FFFFFF;
    
    /* MÁGICA AQUI: Adiciona um brilho verde sutil no topo */
    background-image: radial-gradient(at 50% 20%, rgba(54, 135, 49, 0.15), #000000 75%);
    
    position: relative;
    overflow: hidden; /* Garante que o gradiente não vaze */
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-container .section-title {
    margin-bottom: 60px;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    max-width: 900px; /* Largura máxima do carrossel */
}

.carousel-track {
    display: flex;
    /* TRANSIÇÃO MAIS SUAVE */
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-card {
    /* EFEITO DE BLUR (GLASSMORPHISM) */
    background-color: rgba(30, 30, 30, 0.6); /* Era #1E1E1E, agora é semitransparente */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* Suporte para Safari */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borda mais sutil */

    border-radius: 16px;
    padding: 40px;
    margin: 0 15px;
    min-width: calc(100% - 30px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;

    /* TRANSIÇÃO MELHORADA */
    transition: transform 0.3s ease, 
                border-color 0.3s ease, 
                background-color 0.3s ease;
}

/* NOVA ANIMAÇÃO DE HOVER */
.testimonial-card:hover {
    transform: translateY(-8px); /* Eleva o card */
    border-color: rgba(54, 135, 49, 0.7); /* Borda brilha com a cor da marca */
    background-color: rgba(30, 30, 30, 0.75); /* Fica um pouco mais opaco */
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0 0 30px 0;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #368731;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #FFFFFF;
}

.author-info p {
    font-size: 14px;
    margin: 0;
    color: #b0b0b0;
}

.carousel-button {
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.carousel-button:hover {
    background-color: #368731;
    border-color: #368731;
}

.carousel-button.prev {
    margin-right: 20px;
}

.carousel-button.next {
    margin-left: 20px;
}

.carousel-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.site-footer {
    background-color: #000000;
    color: #b0b0b0;
    padding: 80px 20px 20px 20px;
    border-top: 1px solid #222;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #368731;
}

.footer-column .navbar-logo {
    margin-bottom: 20px;
}

.footer-column .about-text {
    font-size: 15px;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-column ul a:hover {
    color: #368731;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact li i {
    color: #368731;
    font-size: 18px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: #1E1E1E;
    color: #FFFFFF;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    background-color: #368731;
    transform: scale(1.1);
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-text h1, .section-title, .promo-text h2, .checklist-text h2 {
        font-size: 34px;
        line-height: 1.3;
    }

    .nav-toggle-label {
        display: block;
        position: relative;
        height: 25px;
        width: 30px;
        cursor: pointer;
    }

    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: white;
        height: 3px;
        width: 100%;
        border-radius: 10px;
        position: absolute;
        transition: all 0.3s ease;
    }
    
    .nav-toggle-label span {
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-toggle-label span::before {
        content: '';
        top: -8px;
    }

    .nav-toggle-label span::after {
        content: '';
        top: 8px;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        right: 0;
        background: #1E1E1E;
        width: 100%;
        height: calc(100vh - 90px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 0;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
    }

    .nav-toggle:checked ~ .nav-menu {
        transform: translateX(0);
    }

    .nav-toggle:checked ~ .nav-toggle-label span {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label span::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-container,
    .checklist-container {
        grid-template-columns: 1fr;
        padding: 40px 25px;
        text-align: center;
    }

    .dashboard-promo-section .promo-container,
    .maintenance-promo-section .promo-container {
        display: flex;
        flex-direction: column-reverse;
    }

    .checklist-promo-section .checklist-container {
        display: flex;
        flex-direction: column;
    }

    .hero-image, .promo-image, .checklist-image {
        margin-top: 40px;
    }

    .footer-container {
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-about .navbar-logo {
        align-items: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .carousel-button {
        display: none; /* Esconde os botões de seta em telas menores */
    }

    .carousel-container {
        max-width: 100%;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .navbar-logo img {
        height: 50px;
    }
}

/* Animação para o conteúdo do slide ativo */
.testimonial-card .testimonial-text,
.testimonial-card .testimonial-author {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease-out 0.3s, transform 0.4s ease-out 0.3s;
}

.testimonial-card.is-active .testimonial-text,
.testimonial-card.is-active .testimonial-author {
    opacity: 1;
    transform: translateY(0);
}

/* --- Seção Localizador de Postos --- */
.gas-finder-section {
    padding: 100px 20px;
    background-color: #080808; /* Fundo bem escuro */
    position: relative;
    overflow: hidden;
}

/* Um brilho verde sutil no fundo atrás do card */
.gas-finder-section::before {
    content: '';
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(54, 135, 49, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.gas-finder-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide a tela em 2 */
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Estilo do Texto */
.tag-feature {
    display: inline-block;
    background: rgba(54, 135, 49, 0.15);
    color: #4CAF50;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(54, 135, 49, 0.3);
}

.gas-text h2 {
    font-size: 42px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gas-text h2 .highlight {
    color: #4CAF50;
}

.gas-text p {
    color: #a0a0a0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.gas-benefits {
    list-style: none;
    padding: 0;
}

.gas-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #e0e0e0;
    font-size: 16px;
}

.gas-benefits li i {
    color: #4CAF50;
    background: rgba(54, 135, 49, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

/* --- O Visual (Card Flutuante) --- */
.gas-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Animação de Radar (Pulso) atrás do card */
.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(54, 135, 49, 0.3);
    animation: pulse-ring 3s infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 600px; height: 600px; opacity: 0; }
}

/* O Cartão Estilo App */
.app-card {
    background: rgba(20, 20, 20, 0.7); /* Vidro escuro */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 25px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg); /* Leve inclinação 3D */
    transition: transform 0.3s ease;
}

.app-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    border-color: #368731;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
}

.status-live {
    font-size: 12px;
    color: #4CAF50;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-live::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 0 10px #4CAF50;
}

/* Lista de Postos */
.station-item {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: background 0.2s;
}

.station-item.recommended {
    background: linear-gradient(90deg, rgba(54, 135, 49, 0.15) 0%, rgba(0,0,0,0) 100%);
    border-left: 3px solid #4CAF50;
}

.station-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
}

.station-item.recommended .station-icon {
    background: #4CAF50;
    color: #fff;
}

.station-info {
    flex: 1;
}

.station-info strong {
    display: block;
    color: #fff;
    font-size: 15px;
    margin-bottom: 4px;
}

.station-info span {
    color: #888;
    font-size: 12px;
}

.station-price {
    text-align: right;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.badge {
    display: block;
    font-size: 10px;
    background: #4CAF50;
    color: #000;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 4px;
    font-weight: bold;
    text-align: center;
}

.app-footer button {
    width: 100%;
    background: #368731;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.app-footer button:hover {
    background: #2b6b26;
}

/* Responsivo */
@media (max-width: 900px) {
    .gas-finder-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .gas-text {
        order: 1;
    }
    
    .gas-visual {
        order: 2;
    }
    
    .gas-benefits li {
        justify-content: center;
    }
    
    .app-card {
        transform: none; /* Remove efeito 3D no mobile para não bugar */
    }
}