/* Variáveis de cores e fontes */
:root {
    --primary-color: #00a896;     /* Verde turquesa - diferente do roxo usado no site brasileiro */
    --secondary-color: #ffb100;   /* Amarelo âmbar - diferente do rosa usado no site brasileiro */
    --dark-color: #02353c;        /* Verde escuro */
    --light-color: #f1f9f7;       /* Verde claro */
    --accent-color: #f47c7c;      /* Rosa coral como acento */
    --text-color: #333333;
    --text-light: #ffffff;
    --background-color: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, #05c9b3 100%);
}

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Tipografia */
h1, h2, h3, h4 {
    margin-bottom: 0.5em;
    line-height: 1.2;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
}

section h2 {
    text-align: center;
    display: block;
}

section h2:after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header e Navegação */
header {
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo-svg {
    margin-right: 1rem;
}

h1 {
    color: var(--dark-color);
}

.dot {
    color: var(--secondary-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Menu móvel */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--primary-color);
    height: 2px;
    width: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 7px;
}

.nav-toggle-label span::after {
    top: 7px;
}

/* Seção Hero */
.hero {
    background: var(--gradient);
    color: var(--text-light);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,149.3C672,149,768,171,864,181.3C960,192,1056,192,1152,181.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    z-index: 0;
}

.hero-text {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero h2:after {
    background-color: var(--secondary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Botões */
.btn-primary,
.btn-secondary,
.btn-cta {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(255, 177, 0, 0.3);
}

.btn-primary:hover {
    background-color: #ffba2e;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-cta {
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(244, 124, 124, 0.3);
}

.btn-cta:hover {
    background-color: #ff8f8f;
    transform: translateY(-3px);
}

.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Seção de recursos */
.features {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.feature-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: var(--background-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 1.5rem;
}

/* Seção de benefícios */
.benefits {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.benefits-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.benefits-list {
    list-style: none;
    margin: 3rem 0;
    text-align: left;
    padding: 0 2rem;
}

.benefits-list li {
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.1rem;
}

.check-icon {
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Como funciona */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3rem;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 1.5rem;
    position: relative;
    margin-bottom: 2rem;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 2.5rem;
    right: -10%;
    width: 20%;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* Seção FAQ */
.faq {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    width: 100%;
    background-color: var(--light-color);
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: #e6f5f2;
}

.accordion-icon {
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    background-color: var(--background-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 1.2rem;
}

/* Seção CTA */
.cta {
    padding: 5rem 0;
    background: var(--gradient);
    color: var(--text-light);
    text-align: center;
}

.cta h2 {
    color: var(--text-light);
}

.cta h2:after {
    background-color: var(--secondary-color);
}

.cta p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo svg {
    margin-right: 0.8rem;
}

.footer-nav h4,
.footer-legal h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
}

.footer-nav ul li,
.footer-legal ul li {
    margin-bottom: 0.8rem;
}

.footer-nav ul li a,
.footer-legal ul li a {
    color: var(--text-light);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-nav ul li a:hover,
.footer-legal ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.keywords {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: 0.5rem;
}

/* Media Queries para responsividade */
@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .nav-toggle-label {
        display: block;
        position: relative;
        z-index: 2;
    }
    
    nav {
        position: absolute;
        top: 0;
        left: 0;
        background: var(--dark-color);
        width: 100%;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        padding: 5rem 0 2rem;
        z-index: 1;
    }
    
    .nav-toggle:checked ~ nav {
        transform: translateY(0);
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 0 0 1.5rem;
    }
    
    nav ul li a {
        color: var(--text-light);
        font-size: 1.2rem;
    }
    
    .step:not(:last-child):after {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-logo,
    .footer-nav,
    .footer-legal {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .feature-box {
        min-width: 100%;
    }
    
    .step {
        min-width: 100%;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .accordion-header {
        padding: 1rem;
        font-size: 1rem;
    }
}
