:root {
    /* Color Palette */
    --bg-color: #F9F8F6;
    --surface-color: #FFFFFF;
    --text-color: #4A4A4A;
    --text-light: #8A8A8A;
    --accent-nude: #E8DCCA;
    --accent-blush: #F2E6E8;
    --accent-lavender: #DCD6E8;
    --accent-dark: #2A2A2A;

    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-poppins: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 50px -10px rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --blur: blur(10px);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 100px;
}

@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: 160px;
    }
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-sans);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.btn-primary {
    background-color: var(--text-color);
    color: var(--surface-color);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: var(--surface-color);
}

.section-padding {
    padding: var(--spacing-lg) 0;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: var(--spacing-md) 0;
    transition: var(--transition-fast);
    color: var(--text-color);
}

header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-soft);
    color: var(--text-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 70px;
    width: auto;
}

.logo a {
    display: block;
    line-height: 0;
}

.footer-col i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: #A06481;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-links a {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-color);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 110px; /* Subido um pouco mais */
    /* Header height */
    background-color: #E6DEDF;
}

.hero-bg-shape {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-blush) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
}

.hero-bg-shape-2 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--accent-lavender) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 50px; /* Mais espaço abaixo do título */
    line-height: 1.1;
    color: var(--text-color);
}

.hero-text h1 span {
    display: block;
    font-style: italic;
    color: var(--text-light);
}

.hero-text p.hero-description {
    font-family: var(--font-poppins);
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    max-width: 550px;
    line-height: 1.35; /* Espaçamento reduzido no subtítulo */
}



.hero-image {
    position: relative;
}

.hero-image img.hero-portrait {
    width: 100%;
    height: auto;
    border-radius: 0 0 200px 200px;
    box-shadow: none;
    position: relative;
    z-index: 2;
}


.hero .btn-primary {
    background: linear-gradient(135deg, #766B89 0%, #A06481 100%);
    color: #FFFFFF;
    border: none;
    animation: pulse-purple 2s infinite;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.button-caption {
    font-family: var(--font-poppins);
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.7;
    margin: 0;
    letter-spacing: -0.1px;
}

.hero .btn-primary:hover {
    background: linear-gradient(135deg, #877ca0 0%, #b27592 100%);
    color: #FFFFFF;
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.hero .btn-outline {
    border-color: var(--text-color);
    color: var(--text-color);
}

.hero .btn-outline:hover {
    background-color: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
}

@keyframes pulse-glow-purple {
    0% {
        box-shadow: 0 0 0 0 rgba(118, 107, 137, 0.7);
    }

    70% {
        box-shadow: 0 0 0 22px rgba(118, 107, 137, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(118, 107, 137, 0);
    }
}

@keyframes pulse-purple {
    0% {
        box-shadow: 0 0 0 0 rgba(160, 100, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 22px rgba(160, 100, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(160, 100, 129, 0);
    }
}

.btn-cta-purple {
    background: linear-gradient(135deg, #766B89 0%, #8E84A3 100%);
    color: #FFFFFF !important;
    border: none;
    animation: pulse-glow-purple 2s infinite;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-cta-purple:hover {
    background: linear-gradient(135deg, #877ca0 0%, #a097b6 100%);
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}





/* Creative Pain Points Section */
.creative-pain-section {
    background-color: #A06481;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.creative-pain-section .container {
    position: relative;
    z-index: 1;
}

.creative-pain-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 1100px;
    margin-inline: auto;
}

.creative-pain-title {
    font-size: 2.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.15;
    white-space: nowrap;
}

.creative-pain-title .highlight-pain {
    font-family: var(--font-poppins);
    font-style: italic;
    background: linear-gradient(90deg, #FFDDE1, #FFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    padding-right: 0.15em;
}

.creative-pain-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-lg);
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

.creative-pain-context {
    padding-right: var(--spacing-md);
}

.creative-pain-context .lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    color: #FFDDE1;
}

.context-card {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #FFFFFF;
    padding: var(--spacing-md);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.context-card p {
    font-family: var(--font-poppins);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    color: #FFFFFF;
}

.creative-pain-context .follow-text {
    font-family: var(--font-poppins);
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.situations-title {
    font-size: 1.6rem;
    margin-bottom: var(--spacing-md);
    color: #FFFFFF;
    font-family: var(--font-sans);
}

.situations-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.situation-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.situation-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.situation-icon {
    flex-shrink: 0;
    color: #A06481;
    background: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.situation-card p {
    font-family: var(--font-poppins);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    color: #FFFFFF;
}

.conclusion-box {
    display: inline-block;
    background: #2F3749;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: #FFFFFF;
    transform: translateY(20px);
}

.conclusion-box p {
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0;
    font-family: var(--font-poppins);
}

.conclusion-box strong {
    font-weight: 700;
    color: #A06481;
}

@media (max-width: 900px) {
    .creative-pain-grid {
        grid-template-columns: 1fr;
    }
    .creative-pain-context {
        padding-right: 0;
    }
    .creative-pain-title {
        font-size: 2.2rem;
        white-space: normal;
    }
}



/* Solution Section */
.solution-section {
    background-color: #E6DEDF;
    color: var(--text-color);
}

.solution-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.solution-title {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.solution-subtitle {
    font-family: var(--font-poppins);
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
}

.transformation-map {
    border-radius: var(--radius-lg);
    padding: var(--spacing-sm) 0;
    max-width: 1250px;
    margin: 0 auto;
}

.map-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
    color: #A06481;
    font-weight: 600;
}

.map-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.map-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: var(--spacing-sm) 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.map-item:hover {
    transform: translateX(15px);
    background: rgba(255, 255, 255, 0.6);
}

.map-icon {
    font-size: 2rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A06481; /* Monochrome brand color */
}

.map-icon svg {
    width: 32px;
    height: 32px;
}

.map-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-family: var(--font-poppins);
}

.map-from {
    font-weight: 500;
    color: var(--text-light);
    font-size: 1rem;
    text-decoration: line-through;
    opacity: 0.7;
}



.map-to {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .solution-title {
        font-size: 2rem;
    }

    .map-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .map-item:hover {
        transform: translateY(-5px);
    }

    .map-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    
}




/* Qualification Section */
.qualification-section {
    background-color: #766B89;
    color: #FFFFFF;
}

.qualification-title {
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: 700;
}

.qualification-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.qual-header {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: #FFFFFF;
    display: flex;
    align-items: center;
}

.qual-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.qual-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.qual-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.qual-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.qual-yes-icon {
    color: #4CAF50;
}

.qual-no-icon {
    color: #FF5252;
}

.qual-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.no-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.no-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: var(--spacing-sm);
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
}

.no-icon {
    flex-shrink: 0;
    font-size: 1.1rem;
    margin-top: 3px;
}

.no-list p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

.qualification-footer {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.qualification-footer p {
    font-family: var(--font-poppins);
    font-size: 1.6rem;
    color: #FFFFFF;
}

.qualification-footer p span {
    font-weight: 700;
    color: #FFFFFF;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
    .qualification-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .qualification-title {
        font-size: 2.2rem;
    }
    
    .qualification-footer p {
        font-size: 1.2rem;
    }
}

/* Footer */
.main-footer {
    background-color: #2F3749;
    color: #FFFFFF;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #A06481;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand p {
    font-family: var(--font-poppins);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-family: var(--font-poppins);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: #A06481;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    font-family: var(--font-poppins);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition-fast);
}

.legal-links a:hover {
    color: #FFFFFF;
}

.footer-bottom p {
    font-family: var(--font-poppins);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

/* Curriculum Section (Carousel) */
.curriculum-section {
    background-color: #FDFBFA;
    /* Light neutral background from IGNIS style */
    overflow: hidden;
}

.curriculum-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--spacing-md);
}

.header-text {
    max-width: 800px;
}

.curriculum-title {
    color: #2F3749;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.curriculum-subtitle {
    color: #A06481;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
}

.carousel-controls {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.carousel-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* Circle as in IGNIS */
    background-color: #2F3749;
    color: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-btn:hover {
    background-color: #A06481;
    transform: scale(1.1);
}

.carousel-container {
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.module-card {
    min-width: calc(33.333% - 20px);
    background: linear-gradient(135deg, #A06481 0%, #766B89 100%);
    color: #FFFFFF;
    padding: 30px;
    border-radius: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(160, 100, 129, 0.2);
    clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 0 100%);
}

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

.module-number {
    font-family: var(--font-sans);
    font-size: 2.8rem;
    font-weight: 800;
    opacity: 0.3;
    line-height: 1;
}

.module-time, .module-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.module-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}



.carousel-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E6DEDF;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background-color: #A06481;
    transform: scale(1.4);
}

.total-time {
    font-size: 1.2rem;
    color: #2F3749;
    font-weight: 500;
}

.total-time span {
    font-weight: 700;
    color: #A06481;
}

@media (max-width: 1100px) {
    .module-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .curriculum-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .curriculum-title {
        font-size: 2rem;
    }

    .module-card {
        min-width: 100%;
        padding: 30px;
    }

    .module-number {
        font-size: 2.5rem;
    }
}





/* About Section */
.about-section {
    background-color: #FFFFFF;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.about-image-slider {
    position: relative;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1.1;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    background-color: #E6DEDF;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slider-img.active {
    opacity: 1;
}

.slider-caption {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 15px;
    font-style: italic;
    line-height: 1.4;
    text-align: center;
}



.about-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2F3749;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-bio {
    font-family: var(--font-poppins);
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.about-bio p {
    margin-bottom: 20px;
}



.about-closing {
    background: #FDFBFA;
    padding: 30px;
    border-radius: var(--radius-md);
    border-left: 8px solid #A06481;
    font-style: italic;
    font-family: var(--font-poppins);
}

.about-closing p {
    color: #2F3749;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .about-grid {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-title {
        font-size: 2.0rem;
    }
}

















/* FAQ Section */
.faq-section {
    background-color: #FDFBFA;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: #A06481;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question span {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2F3749;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    color: #A06481;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #766B89;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #FFFFFF;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 30px 30px 30px;
    font-family: var(--font-poppins);
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }

    .faq-question span {
        font-size: 1.05rem;
    }

    .faq-answer p {
        padding: 0 20px 20px 20px;
    }
}

/* =========================================
   OFFER SECTION
   ========================================= */
.offer-section {
    background-color: #FDFBFA;
    padding: var(--spacing-lg) 0;
}

.offer-minimal {
    max-width: 900px;
    margin: 0 auto;
}

.offer-mb-header {
    text-align: center;
    margin-bottom: 30px;
}

.offer-mb-title {
    font-size: clamp(1.3rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #2F3749;
    margin-bottom: 15px;
    white-space: nowrap;
}

.offer-mb-subtitle {
    font-size: 1.3rem;
    color: #766B89;
    font-weight: 500;
}

.offer-anchors {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 30px;
    padding: 15px 20px;
    background: rgba(160, 100, 129, 0.05);
    border-radius: 20px;
    border: 1px dashed rgba(160, 100, 129, 0.3);
}

.anchor-item {
    font-size: 1.05rem;
    color: #2F3749;
    text-align: center;
}

.anchor-item strong {
    color: #A06481;
    font-weight: 700;
}

.offer-mb-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.offer-mb-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #A06481;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.offer-mb-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.offer-mb-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.mb-check {
    color: #A06481;
    font-size: 1.2rem;
    font-weight: 700;
}

.offer-mb-list li strong {
    display: block;
    font-size: 1.1rem;
    color: #2F3749;
    margin-bottom: 5px;
}

.offer-mb-list li span {
    font-size: 0.95rem;
    color: var(--text-light);
}

.offer-bonus-container {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mb-emoji {
    font-size: 1.5rem;
    margin-right: 15px;
}

.offer-mb-price {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(160, 100, 129, 0.08);
    border: 1px solid rgba(160, 100, 129, 0.05);
    text-align: center;
}

.offer-mb-amount-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.mb-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2F3749;
    margin-top: 10px;
}

.mb-amount {
    font-size: 5rem;
    font-weight: 800;
    color: #2F3749;
    line-height: 1;
}

.offer-mb-once {
    font-size: 1rem;
    color: #766B89;
    margin-bottom: 20px;
}

.offer-mb-cta {
    display: block;
    background: #A06481;
    color: #FFFFFF;
    text-align: center;
    padding: 18px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: 0 20px 40px rgba(160, 100, 129, 0.2);
    margin-bottom: 20px;
}

.offer-mb-cta:hover {
    background: #7A4895;
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(160, 100, 129, 0.3);
}

.payment-installments {
    font-size: 1.1rem;
    font-weight: 600;
    color: #A06481;
    margin-bottom: 20px;
}

.payment-methods {
    font-size: 0.85rem;
    color: #6B6B6B;
    margin-bottom: 20px;
}

.offer-mb-trust {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.offer-mb-trust li {
    font-size: 0.85rem;
    color: #766B89;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.offer-mb-trust li::before {
    content: "🔒";
    font-size: 0.75rem;
}

.offer-mb-guarantee {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #FFFFFF;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 50px;
}

.mb-g-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: #A06481;
    color: #FFFFFF;
    border-radius: 50%;
    flex-shrink: 0;
}

.mb-g-num {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.mb-g-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.mb-g-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2F3749;
    margin-bottom: 8px;
}

.mb-g-text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
}

.mb-g-strong {
    font-weight: 700;
    color: #A06481;
    margin-top: 10px;
    display: block;
}

.offer-mb-footer {
    text-align: center;
    font-size: 1rem;
    color: #766B89;
}

@media (max-width: 900px) {
    .offer-mb-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .offer-mb-title {
        /* font-size now handled by clamp in base rule */
    }

    .offer-mb-amount-row .mb-amount {
        font-size: 4rem;
    }

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

/* Mobile Fixes for Header and Hero */
@media (max-width: 768px) {
    /* Fix Navigation Layout */
    header {
        padding: 5px 0 !important;
    }
    header.scrolled {
        padding: 5px 0 !important;
    }
    nav {
        flex-direction: column;
        gap: 5px;
    }
    .logo img {
        height: 32px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px 12px;
    }
    .nav-links a {
        font-size: 0.7rem;
        font-weight: 600;
    }

    /* Fix Hero Section Typography & Layout */
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 40px;
    }
    .hero-content {
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
        gap: 15px;
    }
    .hero-text h1 {
        font-size: 1.7rem !important;
        margin-bottom: 20px;
    }
    .hero-text p.hero-description {
        margin: 0 auto 25px auto;
    }
    .hero-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .hero-btns .button-caption {
        text-align: center;
    }
    .hero-image {
        display: flex;
        justify-content: center;
        margin-top: 0;
    }
    .hero-portrait {
        max-width: 90%;
    }
}

/* Why This Course Section */
.why-this-course {
    background-color: #2F3749;
    color: #FFFFFF;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-content {
    max-width: 100%;
    text-align: left;
}

.why-content.fade-in, .why-image.fade-in {
    opacity: 1;
    transform: none;
    transition: none;
}

.why-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 1.2;
}

.why-intro {
    font-size: 1.4rem;
    font-weight: 600;
    color: #A06481;
    margin-bottom: 30px;
    line-height: 1.4;
}

.why-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-print-container {
    margin: 0;
    position: relative;
    width: 100%;
}

.why-print {
    position: relative;
    z-index: 3;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(0deg);
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.paper-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-print-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.layer-1 {
    background: #FFFFFF;
    z-index: 2;
    transform: rotate(0deg);
}

.layer-2 {
    background: #FFFFFF;
    z-index: 1;
    transform: rotate(0deg);
}

.why-image.visible .why-print {
    transform: rotate(-1.5deg);
}

.why-image.visible .layer-1 {
    transform: rotate(2deg) translate(6px, 2px);
}

.why-image.visible .layer-2 {
    transform: rotate(4deg) translate(12px, 4px);
}

.print-caption {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    font-style: italic;
    text-align: center;
}

/* Floating Animation for the Receipt */
@keyframes float-receipt {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.why-image.visible .why-print-container {
    animation: float-receipt 6s ease-in-out infinite 1.5s;
}

.why-content p, .why-content h2 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.why-content.visible p, .why-content.visible h2 {
    opacity: 1;
    transform: translateY(0);
}

.why-content.visible h2 { transition-delay: 0.1s; }
.why-content.visible .why-intro { transition-delay: 0.3s; }
.why-content.visible p:nth-of-type(2) { transition-delay: 0.5s; }
.why-content.visible p:nth-of-type(3) { transition-delay: 0.7s; }
.why-content.visible .why-closing { transition-delay: 0.9s; }

.why-content p {
    font-family: var(--font-poppins);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
}

.why-closing {
    font-weight: 700;
    color: #FFFFFF !important;
    font-size: 1.2rem !important;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1100px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .why-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Fix horizontal overflow caused by nowrap on titles */
    .creative-pain-title,
    .offer-mb-title {
        white-space: normal !important;
    }

    /* Global Mobile Spacing Reduction */
    .section-padding {
        padding: 40px 0 !important;
    }
    
    /* Fix specific large gaps on mobile */
    .creative-pain-grid,
    .qualification-grid {
        gap: 15px !important;
        margin-bottom: 20px !important;
    }
    .qualification-footer {
        margin-top: 20px !important;
    }
    .conclusion-box {
        transform: translateY(0) !important;
        margin-top: 0 !important;
        padding: 20px !important;
    }
    .situation-card, .qual-card {
        padding: 15px !important;
    }

    /* Global Mobile Typography Reductions */
    h1 { font-size: 1.7rem !important; line-height: 1.15 !important; }
    h2 { font-size: 1.5rem !important; line-height: 1.2 !important; }
    h3 { font-size: 1.2rem !important; line-height: 1.2 !important; }
    p { font-size: 0.92rem !important; line-height: 1.45 !important; }

    /* Hero Section Specifics */
    .hero-text h1 {
        font-size: 1.7rem !important;
        line-height: 1.15 !important;
    }
    .hero-description {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }

    /* Why This Course Section (Image 1) */
    .why-this-course .why-title {
        font-size: 1.8rem !important;
    }
    .why-this-course .why-intro {
        font-size: 1.1rem !important;
    }
    .why-content p {
        font-size: 0.95rem !important;
    }
    .why-closing {
        font-size: 1rem !important;
    }

    /* Solution Section (Image 2) */
    .solution-title {
        font-size: 1.6rem !important;
    }
    .solution-subtitle {
        font-size: 1rem !important;
    }
    .map-title {
        font-size: 1.1rem !important;
    }
    .map-to {
        font-size: 0.9rem !important;
    }

    /* Curriculum Section */
    .curriculum-title {
        font-size: 1.6rem !important;
    }
    .curriculum-subtitle {
        font-size: 0.95rem !important;
    }
    .carousel-card h3 {
        font-size: 1.1rem !important;
    }
    .step-description {
        font-size: 0.9rem !important;
    }

    /* Qualification Section */
    .qualification-title {
        font-size: 1.6rem !important;
    }
    .qual-header {
        font-size: 1.1rem !important;
    }
    .qual-card h4 {
        font-size: 1rem !important;
    }
    .qual-card p {
        font-size: 0.9rem !important;
    }

    /* About Section */
    .about-title {
        font-size: 1.6rem !important;
    }
    .about-bio p {
        font-size: 0.95rem !important;
    }

    /* Offer Section */
    .offer-mb-title {
        font-size: 1.4rem !important;
    }
    .offer-mb-subtitle {
        font-size: 1.1rem !important;
    }
    .price-amount {
        font-size: 2.5rem !important;
    }

    /* FAQ Section */
    .faq-title {
        font-size: 1.6rem !important;
    }
    .faq-question span {
        font-size: 1rem !important;
    }
    .faq-answer p {
        font-size: 0.9rem !important;
    }

    /* Final Call Section */
    .final-call-content p:first-of-type {
        font-size: 1.1rem !important;
    }
    .final-call-content p:last-of-type {
        font-size: 0.95rem !important;
    }
}