/* Variáveis de Cores */
:root {
    --primary-green: #2A5B33;
    --light-green: #7CB342;
    --dark-green: #1B3C22;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-text: #333333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --container-width: 1200px;
    --header-height: 80px;
}

/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Estilos com !important para garantir prioridade */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

body {
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.6 !important;
    color: var(--dark-text) !important;
    background-color: var(--light-gray) !important;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--light-green);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

p {
    margin-bottom: 1rem;
}

/* Cabeçalho */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 80px;
    padding: 0;
    margin: 0;
}

nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.logo {
    height: 50px;
    width: auto;
}

.logo {
    height: 50px;
    width: auto;
}

/* Seção Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-image: url('https://images.unsplash.com/photo-1483729558449-99ef09a8c325?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    padding-top: 80px;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: var(--white);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Pontos de Confiança */
.trust-points {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.trust-points span {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.trust-points i {
    color: var(--light-green);
    margin-right: 8px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .trust-points {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .trust-points span {
        width: 100%;
        justify-content: center;
        padding: 0.6rem;
    }
}

/* Botão CTA */
.cta-button {
    display: inline-block;
    background-color: var(--light-green);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 10px 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cta-button i {
    margin-right: 10px;
}

/* Seção de Vantagens */
.advantages {
    padding: 80px 0;
    background-color: var(--white);
}

.advantages h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-green);
}

/* Seção de Vantagens */
.advantages .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.advantages h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-green);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

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

.card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card i {
    font-size: 2.5rem;
    color: var(--light-green);
    margin-bottom: 20px;
}

.card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

/* Seção de Perguntas Frequentes */
.faq {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.faq .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2A5B33;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #7CB342;
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 25px;
    background-color: #fff;
    color: #2A5B33;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question i {
    margin-left: 10px;
    transition: transform 0.3s ease;
    color: #7CB342;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question::after {
    display: none; /* Removendo o ícone antigo */
}

.faq-item.active .faq-question {
    background-color: #f5f5f5;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
    color: #2A5B33;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: #fff;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
    border-top: 1px solid #eee;
}

/* Seção CTA */
.cta-section {
    background: linear-gradient(135deg, #2A5B33 0%, #3e8e41 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-section .cta-button i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.cta-section .cta-button:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Rodapé */
footer {
    background-color: #2A5B33;
    color: #fff;
    padding: 20px 0 0;
    font-size: 12px;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: left;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
}

.footer-info h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.footer-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #7CB342;
}

.footer-info p, .footer-info a {
    color: #d1d1d1;
    margin: 8px 0;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #7CB342;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.social-links a {
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background-color: #3e8e41;
}

.social-links a:hover {
    background-color: #7CB342;
    transform: translateY(-3px);
    text-decoration: none;
}

.copyright {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.85rem;
    text-align: center;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 15px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.footer-column {
    margin-bottom: 20px;
}

.footer-column h3 {
    color: #fff;
    font-size: 14px;
    margin: 0 0 10px 0;
    position: relative;
    padding-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 1px;
    background-color: #7CB342;
}

.footer-info i {
    margin-right: 10px;
}

/* Seção Como Funciona */
.how-it-works {
    padding: 60px 0;
    background-color: #fff;
}

.how-it-works .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #2A5B33;
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.how-it-works h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #7CB342;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    padding-top: 40px;
}

.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background-color: #7CB342;
    z-index: 1;
}

.step {
    background: #fff;
    padding: 25px 15px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #fff;
    color: #7CB342;
    border: 2px solid #7CB342;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
    position: relative;
    z-index: 2;
}

.step p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.step p strong {
    color: #2A5B33;
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 700;
}

.step p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    padding: 0 5px;
}

/* Responsividade */
@media (max-width: 992px) {
    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }
    
    .steps::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        max-width: 300px;
        margin: 0 auto;
    }
}

.footer-info h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-info h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #7CB342;
}

.footer-column p, .footer-column a {
    color: #e0e0e0;
    margin: 3px 0;
    line-height: 1.6;
    display: block;
    font-size: 12px;
    text-decoration: none;
}

.footer-column a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #7CB342;
}

.footer-column i {
    color: #7CB342;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    padding: 2px 0;
    font-size: 12px;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 15px;
    text-align: center;
}

.disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 10px 0;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 1100px;
    margin: 0 auto;
}

.copyright a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.2s ease;
}

.copyright a:hover {
    color: #fff;
    text-decoration: underline;
}

.copyright a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #7CB342;
}

.disclaimer {
    margin-top: 40px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .advantage-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    .card {
        padding: 20px 15px;
    }
    
    .footer-content {
        padding: 0 15px;
    }
}
