:root {
    --bg-page: #FAF9F6; /* Pale off-white/beige */
    --bg-atmosphere: #F0EBE5; /* Darker beige for desktop backdrop */
    --card-bg: #FFFFFF;
    --text-primary: #3d2e26;
    --text-secondary: #5d4037;
    --text-heading: #2c1810;
    --brand-green: #74a876;
    --brand-green-dark: #2e5c30;
    --brand-accent: #c94b56; /* Pink/Red for details */
    --brand-peach: #F9E8D7; /* Primary Warmth Token */
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --container-width: 600px;
    --card-radius: 20px;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.06);
    --btn-shadow: 0 8px 20px rgba(116, 168, 118, 0.35);
    
    /* Type Scale (1.25 Ratio) */
    --text-xs: 0.8rem;
    --text-sm: 0.9rem;
    --text-base: 1rem;
    --text-md: 1.25rem;
    --text-lg: 1.563rem;
    --text-xl: 1.953rem;
    --text-xxl: 2.441rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    background-color: var(--bg-page);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7; /* Increased for better readability */
    background-image: linear-gradient(to bottom, #f2ece6 0%, #FAF9F6 400px);
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    line-height: 1.25;
}

/* Global Container for the "Mobile-First" Central Column */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

/* --- Card Styles --- */
.card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 2.5rem 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden; /* Clean edges */
}

/* --- Buttons --- */
.cta-button {
    background: linear-gradient(135deg, #74a876 0%, #5d8f60 100%);
    color: #fff;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    box-shadow: var(--btn-shadow);
    transition: all 0.3s ease;
    display: block; /* Full width option or inline-block centered */
    width: 100%;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(116, 168, 118, 0.5);
    filter: brightness(1.05);
}

.cta-button:active {
    transform: translateY(1px);
}

/* --- Header / Hero --- */
/* We keep the "Header BG" logic but constrain it to the central column feel */
/* --- Header / Hero --- */
header.hero {
    position: relative;
    padding-bottom: 2rem;
}

/* Mobile-First Header Logic */
.hero {
    background: linear-gradient(to bottom, transparent 85%, #F9E8D7 100%), url('https://i.imgur.com/zNZNC3E.jpeg') no-repeat center top;
    background-color: #F9E8D7;
    background-size: 100% auto;
    padding-top: 110vw;
    margin-bottom: 0;
}

@media (min-width: 600px) {
    .hero {
        background-size: 600px auto;
        padding-top: 600px;
    }
}

.hero-content-wrapper {
    padding: 0 1.5rem;
    text-align: center;
    margin-top: -2rem;
    position: relative;
    z-index: 5;
}

/* ============================================
   HERO BADGES - Date and Live indicators
   ============================================ */

.hero-badges {
    position: absolute;
    top: -105vw;
    left: 0;
    width: 100%;
    height: 110vw; /* Match hero padding roughly */
    pointer-events: none;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center; /* Centers them vertically in the image area */
    padding-top: 30%; /* Push them a bit lower to visual center/sweet spot */
    gap: 12px;
}

@media (min-width: 600px) {
    .hero-badges {
        top: -550px; /* Desktop adjustment */
        max-width: 800px; /* Limit width */
        left: 50%;
        transform: translateX(-50%);
    }
}

.badge-date,
.badge-live {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-heading);
    position: relative; /* Back to relative for flex flow */
    pointer-events: auto;
    animation: floatBadge 3.5s ease-in-out infinite;
}

.badge-live {
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand-green-dark);
    border: 1px solid rgba(116, 168, 118, 0.2);
    animation-delay: 0.5s; /* Slight sync offset */
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.badge-icon {
    font-size: 1rem;
}

.badge-live {
    background: rgba(116, 168, 118, 0.15);
    color: var(--brand-green-dark);
}

.live-pulse {
    width: 8px;
    height: 8px;
    background: #dc3545;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* ============================================
   HERO HEADLINE - Premium Typography
   ============================================ */

.hero-headline {
    font-family: var(--font-heading);
    font-size: var(--text-xxl);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    margin-top: 3rem;
    color: var(--text-heading);
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: var(--brand-accent);
}

.headline-highlight {
    display: block;
    font-weight: 500;
    background: linear-gradient(135deg, var(--text-heading) 0%, #5d4037 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Subtitle */
.hero-subtext {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: var(--text-base);
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtext strong {
    color: var(--brand-green);
}

/* ============================================
   HERO CTA SECTION - Premium Button
   ============================================ */

.hero-cta-section {
    margin-top: 1rem;
}

.cta-button-hero {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #74a876 0%, #5d8f60 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(116, 168, 118, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(116, 168, 118, 0.5);
}

.cta-button-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button-hero:hover::before {
    left: 100%;
}

.cta-main {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-price {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 3px;
}

/* Trust Line below CTA */
.hero-trust-line {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.hero-trust-line span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* --- Sections Spacing --- */
section {
    padding: 0 0 1rem 0;
}

/* ============================================
   OUTCOMES SECTION - "Ao longo dos encontros"
   Premium Transformation Cards
   ============================================ */

.outcomes-card {
    background: linear-gradient(to bottom, #fff 0%, #fdfbf9 100%);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.outcomes-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-green-dark));
}

.outcomes-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.outcomes-eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-green-dark);
    background: rgba(116, 168, 118, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.8rem;
}

.outcomes-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--text-heading);
    font-weight: 400;
}

.outcomes-title em {
    font-style: italic;
    color: var(--brand-green);
}

.outcomes-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem;
    background: rgba(116, 168, 118, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--brand-green);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.outcome-item:hover {
    transform: translateX(4px);
    background: rgba(116, 168, 118, 0.1);
}

.outcome-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.outcome-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-heading);
    margin-bottom: 2px;
}

.outcome-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   PAIN SECTION - "Este curso é para você"
   Premium Pain Point Cards
   ============================================ */

.pain-card {
    background: linear-gradient(135deg, rgba(249, 232, 215, 0.4) 0%, #fff 100%);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-accent), #e8a0a5);
}

.pain-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pain-eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-accent);
    background: rgba(201, 75, 86, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.8rem;
}

.pain-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--text-heading);
    font-weight: 400;
}

.pain-title em {
    font-style: italic;
    color: var(--brand-accent);
}

.pain-list-premium {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pain-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--text-secondary);
    transition: transform 0.2s ease;
}

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

.pain-item:hover {
    transform: translateX(4px);
}

.pain-item strong {
    color: var(--brand-accent);
}

.pain-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   COMPARISON SECTION - "Resolve vs Não Resolve"
   Two-column card comparison layout
   ============================================ */

.section-comparison {
    padding: 2rem 0;
    background: var(--bg-page);
}

.comparison-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-card {
    background: #fff;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.comparison-card:hover {
    transform: translateY(-2px);
}

/* Resolve Card */
.comparison-card.resolve {
    border-top: 4px solid var(--brand-green);
}

.comparison-card.resolve::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(116, 168, 118, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

/* Not Resolve Card */
.comparison-card.not-resolve {
    border-top: 4px solid #d4a574;
    background: linear-gradient(to bottom, #fff 0%, #fdfaf7 100%);
}

/* Header */
.comparison-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.2rem;
}

.comparison-icon {
    font-size: 1.5rem;
}

.comparison-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-heading);
    margin: 0;
    font-weight: 500;
}

.comparison-card.resolve .comparison-title {
    color: var(--brand-green-dark);
}

.comparison-card.not-resolve .comparison-title {
    color: #b8956e;
}

/* Comparison List */
.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li strong {
    color: var(--brand-green);
}

.check-icon {
    color: var(--brand-green);
    font-weight: 700;
    font-size: 1rem;
}

/* Comparison Note */
.comparison-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(116, 168, 118, 0.08);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    margin-top: 1rem;
}

.note-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.comparison-note p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.comparison-note strong {
    color: var(--brand-green-dark);
}

/* Not Resolve Content */
.comparison-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.comparison-content strong {
    color: var(--text-heading);
}

/* Focus Highlight */
.focus-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    border-left: 3px solid #d4a574;
}

.focus-icon {
    font-size: 1rem;
}

.focus-highlight span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.focus-highlight strong {
    color: #b8956e;
}

/* ============================================
   AUDIENCE SECTION - "Para Quem É Esse Curso" 
   Premium Redesign with Emotional Connection
   ============================================ */

.audience-card {
    background: linear-gradient(to bottom, #fff 0%, #fdfbf9 100%);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 2.5rem 2rem 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

/* Decorative Top Border */
.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-accent), var(--brand-green));
}

/* Header Styling */
.audience-header {
    text-align: center;
    margin-bottom: 2rem;
}

.audience-eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-accent);
    background: rgba(201, 75, 86, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.audience-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--text-heading);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.audience-title em {
    font-style: italic;
    color: var(--brand-accent);
}

.audience-subtitle {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-size: var(--text-lg);
    font-weight: 400;
}

/* List Styling */
.audience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0.9rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 12px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    color: var(--text-secondary);
}

.audience-item:hover {
    background-color: rgba(116, 168, 118, 0.08);
    transform: translateX(4px);
}

.audience-item.highlight {
    background: linear-gradient(135deg, rgba(201, 75, 86, 0.08) 0%, rgba(116, 168, 118, 0.08) 100%);
    border-left: 3px solid var(--brand-accent);
}

.audience-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

/* Callout at the bottom */
.audience-callout {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: var(--brand-peach);
    border-radius: 12px;
    color: var(--text-heading);
    font-size: var(--text-sm);
}

.audience-callout strong {
    color: var(--brand-accent);
}

/* ============================================
   SCHEDULE/TIMELINE SECTION - "Cronograma"
   Premium Timeline Design
   ============================================ */

.schedule-wrapper {
    background: linear-gradient(to bottom, #fff 0%, #fdfbf9 100%);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 2.5rem 1.5rem 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

/* Decorative Top Border */
.schedule-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-accent));
}

/* Header Styling */
.schedule-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.schedule-eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-green-dark);
    background: rgba(116, 168, 118, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.schedule-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--text-heading);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.schedule-title em {
    font-style: italic;
    color: var(--brand-green);
}

.schedule-subtitle {
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

/* Timeline Container */
.timeline {
    position: relative;
    padding-left: 40px;
}

/* Vertical Line */
.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--brand-green) 0%, var(--brand-accent) 100%);
    border-radius: 2px;
}

/* Timeline Item */
.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Timeline Marker (Circle with Number) */
.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(116, 168, 118, 0.3);
    z-index: 2;
}

.timeline-number {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.timeline-icon {
    font-size: 1rem;
}

.timeline-marker.special {
    background: linear-gradient(135deg, var(--brand-accent) 0%, #e8a0a5 100%);
    box-shadow: 0 4px 12px rgba(201, 75, 86, 0.3);
}

/* Timeline Content Card */
.timeline-content {
    background: #fff;
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Date Display */
.timeline-date {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.timeline-day {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-green);
    line-height: 1;
}

.timeline-month {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-green);
    letter-spacing: 1px;
}

.timeline-weekday {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-left: auto;
}

/* Body Content */
.timeline-body {
    position: relative;
}

.timeline-module-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.timeline-topics {
    list-style: none;
    padding: 0;
    margin: 0 0 0.8rem 0;
}

.timeline-topics li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.timeline-topics li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: bold;
}

.timeline-summary {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.5;
}

/* Special Item (Bonus) */
.timeline-special .timeline-content {
    background: linear-gradient(135deg, rgba(249, 232, 215, 0.5) 0%, rgba(255,255,255,1) 100%);
    border: 1px solid rgba(201, 75, 86, 0.1);
}

.timeline-special .timeline-day,
.timeline-special .timeline-month {
    color: var(--brand-accent);
}

.timeline-badge {
    display: inline-block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: var(--brand-accent);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

/* ============================================
   MENTOR SECTION - Premium "Sua Mentora" Design
   ============================================ */

.section-mentor {
    padding: 2rem 0 3rem;
    background: linear-gradient(to bottom, #faece6 0%, #fff5f0 100%);
}

.mentor-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
}

/* Photo Container - Fixed for Mobile */
.mentor-photo-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(to bottom, #faece6, #faf4f0);
    border-radius: var(--card-radius); /* Rounded bottom corners too */
}

.mentor-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center top;
}

/* Content Container */
.mentor-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.mentor-header {
    margin-bottom: 1.2rem;
}

.mentor-eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-accent);
    background: rgba(201, 75, 86, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.8rem;
}

.mentor-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-heading);
    margin: 0;
}

.mentor-name em {
    font-style: italic;
    color: var(--brand-accent);
}

/* Credential Badges */
.mentor-credentials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    background: rgba(116, 168, 118, 0.1);
    color: var(--brand-green-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
}

/* Bio */
.mentor-bio {
    margin-bottom: 1.5rem;
}

.mentor-bio p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.mentor-bio p:last-child {
    margin-bottom: 0;
}

.mentor-bio strong {
    color: var(--brand-green);
}

/* Stats Grid */
.mentor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(249, 232, 215, 0.3);
    border-radius: 12px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-green);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quote */
.mentor-quote {
    background: linear-gradient(135deg, rgba(116, 168, 118, 0.08) 0%, rgba(116, 168, 118, 0.02) 100%);
    padding: 1rem;
    border-radius: 12px;
    border-left: 3px solid var(--brand-green);
    margin-bottom: 1.2rem;
}

.mentor-quote p {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--brand-green-dark);
    margin: 0;
    line-height: 1.5;
}

/* CTA Text */
.mentor-cta-text {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.mentor-cta-text strong {
    color: var(--brand-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   PRICING SECTION - Premium Conversion Design
   ============================================ */

.pricing-section {
    padding: 2rem 0 3rem;
    background: var(--bg-page);
}

.pricing-wrapper {
    text-align: center;
}

/* Pricing Header */
.pricing-header {
    margin-bottom: 2rem;
}

.pricing-headline {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--text-heading);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.pricing-headline em {
    font-style: italic;
    color: var(--brand-accent);
}

.pricing-subheadline {
    color: var(--text-secondary);
    font-size: var(--text-base);
}

/* Price Card Premium */
.price-card-premium {
    background: linear-gradient(to bottom, #fff 0%, #fdfbf9 100%);
    border-radius: var(--card-radius);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    padding: 0;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--brand-green);
}

/* Top Section of Price Card */
.price-card-top {
    background: linear-gradient(135deg, rgba(116, 168, 118, 0.1) 0%, rgba(249, 232, 215, 0.3) 100%);
    padding: 2rem 1.5rem;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
}

.price-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.price-compare {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.price-discount-badge {
    background: var(--brand-accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-now {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brand-green);
    margin-right: 4px;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--brand-green);
    line-height: 1;
}

.price-cents {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brand-green);
}

.price-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Includes Section */
.price-card-includes {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
}

.includes-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.includes-list li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.4rem 0;
    padding-left: 0;
}

.includes-list li::first-letter {
    color: var(--brand-green);
}

/* CTA Section */
.price-card-cta {
    padding: 1.5rem;
}

.cta-button-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #74a876 0%, #5d8f60 100%);
    color: #fff;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(116, 168, 118, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(116, 168, 118, 0.5);
}

.cta-button-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button-premium:hover::before {
    left: 100%;
}

.cta-text {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-subtext {
    font-size: 0.7rem;
    opacity: 0.85;
    margin-top: 4px;
}

/* Trust Signals */
.trust-signals {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 1rem 1.5rem 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--brand-green-dark);
}

.trust-item svg {
    width: 16px;
    height: 16px;
}

/* Guarantee Box */
.guarantee-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(116, 168, 118, 0.08);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-top: 1.5rem;
    text-align: left;
}

.guarantee-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.guarantee-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.guarantee-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Utilities */
.text-center { text-align: center; }

/* Desktop Layout Logic */
@media (min-width: 601px) {
    /* Full-width Atmospheric Background on Desktop */
    html {
        background-color: var(--bg-atmosphere);
        background-image: radial-gradient(circle at 50% 30%, #f7f4f0 0%, #ebe5de 100%);
    }
    
    body {
        background: transparent; /* Let html handle the full-width bg */
        max-width: var(--container-width);
        margin: 0 auto;
        box-shadow: 0 0 60px rgba(0,0,0,0.1); /* Central column shadow */
        min-height: 100vh;
        position: relative;
    }

    /* All sections inherit body's constrained width */
    body > header.hero, 
    body > section {
        max-width: 100%; /* Fill the body's 600px width */
        width: 100%;
        background-color: var(--bg-page); 
    }
    
    /* Hero Specifics for Desktop */
    .hero {
        background-color: var(--brand-peach) !important; 
    }
    
    /* Mentor Section Specifics */
    .section-mentor {
        background: transparent !important;
    }
}
/* ============================================
   FAQ SECTION - 'Perguntas Frequentes'
   Clean Accordion Style
   ============================================ */

.section-faq {
    padding-bottom: 3rem;
    margin-top: 1rem;
    background: var(--bg-page);
}

.faq-card {
    background: #fff;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-peach));
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--text-heading);
    font-weight: 400;
    margin: 0;
}

.faq-title em {
    font-style: italic;
    color: var(--brand-green);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    background: var(--bg-page);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(116, 168, 118, 0.3);
}

.faq-item[open] {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-color: transparent;
}

.faq-question {
    padding: 1rem 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-heading);
    list-style: none; /* Hide default triangle */
}

/* Hide default marker for Chrome/Safari */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--brand-green);
    font-weight: 300;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item[open] .faq-toggle {
    transform: rotate(45deg);
    color: var(--brand-accent);
}

.faq-answer {
    padding: 0 1.2rem 1.2rem 1.2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   TESTIMONIALS SECTION - Carousel
   ============================================ */

.section-testimonials {
    padding: 3rem 0 5rem;
    background: linear-gradient(to bottom, #fdfbf9 0%, #FAF9F6 100%);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.testimonials-eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-accent);
    background: rgba(201, 75, 86, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.8rem;
}

.testimonials-title {
    font-size: var(--text-lg);
    margin-bottom: 0.5rem;
}

.testimonials-title em {
    color: var(--brand-green);
    font-style: italic;
}

.testimonials-subtitle {
     color: var(--text-secondary);
     font-size: 0.95rem;
}

/* Carousel Layout */
.carousel-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    /* On Desktop we will show more, see media query */
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 10px 0 30px; /* Space for shadow */
}

.carousel-track {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 20px;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.carousel-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-height: 600px; 
    object-fit: contain;
    background: #fff;
    pointer-events: none;
}

/* Navigation Buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0,0,0,0.05);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.carousel-button:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    color: var(--brand-green);
}

.carousel-button svg {
    width: 24px;
    height: 24px;
}

.carousel-button--left {
    left: -20px;
}

.carousel-button--right {
    right: -20px;
}

.carousel-button.is-hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
}

/* Indicators */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.1);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-indicator.current-slide {
    background: var(--brand-green);
    transform: scale(1.2);
}

/* Desktop Expansion */
@media (min-width: 768px) {
    .carousel-container {
        max-width: 800px;
    }
    
    .carousel-button--left {
        left: -60px;
    }
    
    .carousel-button--right {
        right: -60px;
    }
}

/* ============================================
   BUTTON ANIMATIONS - "Alive" Effect
   ============================================ */

@keyframes premiumPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(116, 168, 118, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 15px 35px rgba(116, 168, 118, 0.55);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(116, 168, 118, 0.4);
    }
}

/* Apply to all main CTAs */
.cta-button,
.cta-button-hero,
.cta-button-premium {
    animation: premiumPulse 3s ease-in-out infinite;
    will-change: transform, box-shadow;
}

/* Pause and Enhance on Hover */
.cta-button:hover,
.cta-button-hero:hover,
.cta-button-premium:hover {
    animation-play-state: paused;
    transform: scale(1.05) translateY(-2px); /* Combine lift + scale */
    box-shadow: 0 15px 40px rgba(116, 168, 118, 0.6);
}


