/* Custom CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --text-color: #7a7a7a;
    --text-dark: #333333;
    --heading-color: #555555;
    --primary-color: #d28c91; /* Pastel red/pink from original */
    --primary-dark: #b97479;
    --bg-color: #ffffff;
    --bg-alt: #f8f8f8; /* Subtle off-white sections */

    --font-head: "Inter", "Poppins", sans-serif;
    --font-body: "Poppins", sans-serif;

    --container-max-width: 1140px;
    --container-padding: 20px;

    --section-padding: 80px 0;

    --border-radius: 5px;
}

body, html {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    scroll-behavior: smooth;
    font-size: 16px;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 20px;
}

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

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

.text-center {
    text-align: center;
}
.mt-30 {
    margin-top: 30px;
}

/* Layout & Containers */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

section {
    padding: var(--section-padding);
}

/* Typography elements */
.section-title {
    font-size: 28px;
    color: var(--text-dark);
    font-weight: 600;
}

.section-header-highlight {
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    text-align: center;
}

.color-dark {
    color: var(--text-dark);
}

/* Button */
.btn {
    display: inline-block;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #564087;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #45336c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(86, 64, 135, 0.4);
}

.btn-large {
    padding: 20px 45px;
    font-size: 20px;
    letter-spacing: 0;
}

/* Checklists */
.checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-color);
}

.checklist .check-icon {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
    font-size: 16px;
}

/* Bullet list */
.bullet-list {
    list-style-type: disc;
    padding-left: 20px;
}

.bullet-list li {
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Hero Section */
.hero-section {
    background: url('https://jardimconsciente.com.br/wp-content/uploads/2021/04/background-1.png') center top / cover no-repeat, linear-gradient(180deg, #d3eff1 0%, #eaf4f5 60%, #ffffff 100%);
    background-color: #d3eff1; /* Fallback */
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo img {
    max-width: 250px;
    margin: 0 auto 30px;
}

.hero-headline {
    font-size: 32px;
    font-weight: 500;
    color: #564087;
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.3;
}

.hero-cta {
    margin-top: 10px;
}

/* Problem Section */
.problem-section {
    background-color: #ffffff;
    padding-top: 0px;
}

.problem-container {
    max-width: 800px;
    margin: 0 auto;
}

.problem-section .section-title {
    color: #564087;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 40px;
}

.problem-section .checklist li {
    font-size: 18px;
    margin-bottom: 20px;
}

.problem-section .check-icon {
    font-size: 20px;
}

/* Instructor Section */
.instructor-intro-section {
    background-color: #bce3e4; /* Light teal background exactly like the image */
    text-align: center;
    padding: 80px 0;
}

.instructor-card {
    max-width: 480px;
    margin: 0 auto;
    background-color: #f1f7f7; /* Soft off-white to match the image precisely */
    border-radius: 12px;
    overflow: hidden; /* For clipping image top corners smoothly */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Subtle shadow like typical cards */
}

.instructor-image {
    width: 100%;
    margin: 0;
    display: block;
    border-radius: 0; /* Let .instructor-card overflow: hidden handle the corners */
}

.instructor-card-body {
    padding: 40px 30px;
}

.instructor-title {
    font-size: 26px;
    font-weight: 700;
    font-style: italic;
    color: #564087; /* Same purple as your examples */
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

/* Benefits Section */
.benefits-section {
    background-color: #fff;
}

.benefits-container {
    max-width: 900px;
}

.benefits-section .section-title {
    margin-bottom: 40px;
}

.benefits-list li {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.benefits-list .check-icon {
    font-size: 20px;
}

/* Quote Section */
.quote-section {
    background-color: #bce3e4; /* Light teal background */
    padding: 80px 0;
}

.quote-box {
    background-color: #7d72a4; /* Purplish hue */
    padding: 40px 60px;
    border-radius: 8px; /* Slightly rounded corners */
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15); /* Soft shadow */
}

.quote-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
    color: #ffffff;
    margin: 0; 
}

.quote-text strong {
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-top: 5px;
}

/* Learning Intro Section */
.learning-intro-section {
    background-color: #fff;
    padding: 60px 0;
}

.text-block {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.learning-card {
    background-color: #7d72a4; /* Roxo igual à citação */
    padding: 30px;
    border-radius: 8px; /* Cantos arredondados */
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.learning-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

/* Learning Checklist Section */
.learning-checklist-section {
    background-color: #fff;
    padding-top: 20px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f6f7fb;
    background-image: url('https://jardimconsciente.com.br/wp-content/uploads/2022/05/bg-folhas.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 950px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0;
    margin-left: 40px;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.testimonial-content h4 {
    order: 3;
    margin-bottom: 0;
    margin-top: 15px;
    font-size: 16px;
    color: #4a154b;
    font-weight: 800;
}

.testimonial-content p {
    order: 2;
    font-size: 16px;
    color: #7a7a7a;
    margin: 0;
    line-height: 1.6;
}

.testimonial-content::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 32px;
    color: #7d72a4;
    margin-bottom: 15px;
    order: 1;
}

/* Program Section */
.program-section {
    background-color: #faf9fc;
    background-image: radial-gradient(circle at center, #ffffff 0%, #faf9fc 70%);
    padding: 80px 0;
    position: relative;
}

.program-section .section-title {
    color: #564087;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.program-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.program-list.checklist li {
    display: block;
    margin-bottom: 0;
}

.module-content {
    background-color: #7d72a4;
    padding: 25px 30px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.module-content h4 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-content p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Bonuses Section */
.bonuses-section {
    background-color: #fafafa;
}

.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }

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

.bonus-card {
    background-color: #fff;
    border-radius: 6px;
    padding: 10px;
    box-shadow: none;
    border: 1px solid #bce3e4;
    display: flex;
    flex-direction: column;
}

.bonus-card.full-width {
    grid-column: 1 / -1;
}

.super-bonus-card {
    border: 1px solid #bce3e4; /* Same border for all */
}

.bonus-header {
    background-color: #bce3e4;
    color: #7d72a4;
    text-align: center;
    padding: 15px;
    margin-bottom: 25px;
}

.super-bonus-card .bonus-header {
    background-color: #7d72a4;
    color: #fff;
}

.bonus-label {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.bonus-timer {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.bonus-body {
    padding: 0 15px 15px 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bonus-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 15px;
}

.price-strike {
    text-decoration: line-through;
    color: #7d72a4;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-top: auto; /* Pushes to bottom */
    padding-top: 20px;
}

.text-left {
    text-align: left;
}

.text-small {
    font-size: 14px;
    color: #7a7a7a;
}

.flex-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.w-100 { width: 100%; }

/* Pricing Section */
.pricing-section {
    background-color: #fff;
    padding: 80px 0;
}

.pricing-card {
    background: linear-gradient(180deg, #9dd8db 0%, #6abdc3 100%);
    padding: 50px 70px;
    border-radius: 4px;
    border: 1px solid #7eb6bc;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-header {
    font-size: 30px;
    color: #3b1111; /* Dark maroon color */
    margin-bottom: 5px;
    font-weight: 700;
}

.pricing-subheader {
    font-size: 24px;
    color: #3b1111;
    margin-bottom: 30px;
    font-weight: 500;
}

.price-installments {
    font-size: 54px;
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.price-cash {
    font-size: 18px;
    color: #000;
    margin-bottom: 35px;
    font-weight: 500;
}

.price-cash strong {
    font-weight: 800;
}

.pricing-notice {
    font-size: 16px;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.5;
    font-weight: 500;
}

.pricing-notice strong {
    font-weight: 800;
}

.btn-pricing {
    width: 100%;
    padding: 20px 20px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
    white-space: normal;
    border-radius: 6px;
    margin-top: 10px;
}

/* Guarantee Section */
.guarantee-section {
    background-color: #fff;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.guarantee-seal {
    max-width: 250px;
}

.guarantee-text {
    max-width: 600px;
}

.guarantee-text h4 {
    font-size: 24px;
    font-weight: 700;
}

.highlight-link {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Instructor Profile */
.instructor-profile-section {
    background-color: var(--bg-alt);
}

.instructor-profile-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.instructor-profile-image {
    flex: 1;
}

.instructor-profile-image img {
    border-radius: 10px;
}

.instructor-profile-bio {
    flex: 1;
}

.bio-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.faq-section .section-title {
    color: #271b4d;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 750px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #756a9a; /* Purplish text */
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-icon {
    color: #333333;
    font-size: 24px;
    font-weight: 900;
    transition: transform 0.3s ease;
}

/* removed active faq-icon rotation */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding-bottom: 25px;
    padding-left: 65px;
    padding-right: 25px;
    color: #555555; /* Slate dark grey text */
    font-size: 16px;
    font-weight: 400; /* Normal weight */
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background-color: #837a9f; /* Muted purple */
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #ddd;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.site-footer p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}

.site-footer a {
    color: #ffffff;
}

.pt-50 { padding-top: 50px; }
.pb-50 { padding-bottom: 50px; }

/* Responsive */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 26px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn-large {
        padding: 15px 20px;
        font-size: 14px;
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-card img {
        margin: 0 auto 20px;
    }

    .price-installments {
        font-size: 36px;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }

    .instructor-profile-grid {
        flex-direction: column;
    }

    .learning-grid,
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
}
