/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #072AC0;
    --secondary-color: #9085F1;
    --accent-bg-color: #9086F0;
    --text-color: #333;
    --text-light: #fff;
    --bg-color: #FFFFFF;
    --header-height: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
}

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

/* Header */
.header {
    background-color: var(--bg-color);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

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

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

.nav-desktop ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-desktop a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.nav-mobile { display: none; background-color: var(--bg-color); width: 100%; padding: 20px 0; border-top: 1px solid #eee; }
.nav-mobile ul { list-style: none; text-align: center; }
.nav-mobile li { padding: 15px 0; }
.nav-mobile a { text-decoration: none; color: var(--text-color); font-weight: 600; font-size: 1.2rem; }

/* Seção Hero */
.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #fdfdff 0%, #f5f4ff 100%);
}

.hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.hero h2 {
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.6;
}

/* Seções de Conteúdo Genéricas */
.content-section, .features-section, .goals-section, .faq-section {
    padding: 80px 0;
}
.text-block.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.text-block h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}
.text-block p { font-size: 1.1rem; color: #444; }

/* Seção de Features (Cards) */
.features-section {
    background-color: #f9f9f9;
}
.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.feature-card {
    background: var(--bg-color);
    border-radius: 10px;
    padding: 35px 30px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(144, 133, 241, 0.2);
}
.feature-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
.feature-card h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 1rem;
    color: #555;
}

/* Seção de Metas */
.goals-section {
    background-color: var(--bg-color);
}
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}
.goal-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
}
.goal-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}
.goal-description {
    font-size: 1rem;
    color: #555;
    font-weight: 600;
}


/* Seção CTA com Fundo Roxo */
.cta-section.bg-accent {
    background-color: var(--accent-bg-color);
    color: var(--text-light);
    padding: 80px 40px;
    text-align: center;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
}
.bg-accent h3, .bg-accent p { color: var(--text-light); }
.bg-accent h3 { font-size: 2.2rem; line-height: 1.4; }
.bg-accent p { font-size: 1.1rem; max-width: 700px; margin: 15px auto 30px auto; opacity: 0.9; }
.cta-button {
    display: inline-block;
    background-color: var(--bg-color);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

/* Seção FAQ */
.faq-section {
    background-color: #f9f9f9;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #e0e0e0;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question:hover {
    color: var(--primary-color);
}
.faq-question .fa-plus {
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}
.faq-question.active .fa-plus {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
}
.faq-answer p {
    padding: 0 10px 20px 10px;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

/* Footer */
.footer { background-color: #222; padding-top: 50px; color: #ccc; }
.footer .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; padding-bottom: 40px; }
.footer-logo img { height: 40px; opacity: 0.9; }
.footer h4 { color: var(--text-light); margin-bottom: 15px; font-size: 1.1rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer a { text-decoration: none; color: #ccc; transition: color 0.3s; }
.footer a:hover { color: var(--secondary-color); }
.footer-bottom { border-top: 1px solid #444; padding: 20px 0; text-align: center; font-size: 0.9rem; color: #888; }

/* Responsividade */
@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .hamburger { display: flex; }
    .hero h1 { font-size: 2.2rem; }
    .hero h2 { font-size: 1.1rem; }
    .section-title, .text-block h3, .video-section h3, .bg-accent h3 { font-size: 1.8rem; }
    .footer .container { flex-direction: column; text-align: center; }
    .cta-section.bg-accent { border-radius: 0; margin-left: -20px; margin-right: -20px; padding-left:20px; padding-right:20px; }
}
