:root {
    /* Palette */
    --color-mint: #98BDAB;
    --color-orange: #F7B34D;
    --color-mint-light: #E6F0EA;
    --color-orange-light: #FDEBD2;
    --bg-main: #FDFBF7;
    --bg-white: #FFFFFF;

    --primary: var(--color-mint);
    --secondary: var(--color-orange);
    --text-main: #2D3E35;
    --text-muted: #5F7469;
    --text-light: #FFFFFF;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 24px;

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(45, 62, 53, 0.05);
    --shadow-md: 0 10px 30px rgba(45, 62, 53, 0.08);
    --shadow-lg: 0 20px 50px rgba(45, 62, 53, 0.14);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, .title, .section-title {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
    font-weight: 600;
}

a {
    text-decoration: none;
}

/* ===================================
   UTILITIES
   =================================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.max-w-800 { max-width: 800px; margin: 0 auto; }
.max-w-600 { max-width: 600px; margin: 0 auto; }

.section-padding { padding: 5rem 0; }
.bg-mint { background-color: var(--color-mint); color: var(--text-light); }
.bg-orange { background-color: var(--color-orange); color: var(--text-light); }
.bg-mint-light { background-color: var(--color-mint-light); }
.bg-orange-light { background-color: var(--color-orange-light); }
.bg-white-section { background-color: var(--bg-white); }

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

.hidden-element {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

.grids-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.primary-btn {
    background-color: var(--text-main);
    color: #fff;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(45, 62, 53, 0.35);
    background-color: #3d5546;
}

.orange-btn {
    background: linear-gradient(135deg, var(--color-orange) 0%, #f7c878 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(247, 179, 77, 0.4);
}

.orange-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(247, 179, 77, 0.55);
    background: linear-gradient(135deg, #e09530 0%, var(--color-orange) 100%);
}

.large-btn {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

.w-full { width: 100%; }

.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-5 { margin-bottom: 3rem; }

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 5rem 0 6rem;
    background-color: var(--bg-main);
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        radial-gradient(ellipse 80% 60% at 8% 20%, rgba(152, 189, 171, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 55% 50% at 92% 80%, rgba(247, 179, 77, 0.16) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 55% 5%, rgba(152, 189, 171, 0.1) 0%, transparent 50%);
    z-index: 0;
}

/* Animated aurora blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.hero-blob-1 {
    width: 560px;
    height: 520px;
    background: radial-gradient(circle, rgba(152, 189, 171, 0.35) 0%, transparent 70%);
    top: -160px;
    right: -120px;
    animation: blob-drift 9s ease-in-out infinite;
}

.hero-blob-2 {
    width: 460px;
    height: 420px;
    background: radial-gradient(circle, rgba(247, 179, 77, 0.22) 0%, transparent 70%);
    bottom: -60px;
    left: -100px;
    animation: blob-drift 12s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    z-index: 2;
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: 0.5;
    font-family: var(--font-body);
    white-space: nowrap;
}

.scroll-indicator i {
    font-size: 1.2rem;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.4rem;
    background: var(--color-orange);
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    box-shadow: 0 6px 18px rgba(247, 179, 77, 0.38);
}

.title {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.title-ornament {
    display: block;
    margin-bottom: 0.5rem;
}

.title-ornament i {
    display: inline-block;
    animation: icon-float 4s ease-in-out infinite;
}

.subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.55;
}

/* ===================================
   WAVE DIVIDERS
   =================================== */
.wave-divider {
    display: block;
    line-height: 0;
    overflow: hidden;
    margin-top: -2px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 70px;
}

/* ===================================
   PROBLEM SECTION
   =================================== */
.problem {
    background-color: var(--color-orange-light);
}

.section-title {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.3px;
}

.spaced-text p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

.quote-box {
    margin-top: 2rem;
    padding: 2rem 2rem 2rem 2.5rem;
    background: white;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    box-shadow: var(--shadow-md);
    font-style: normal;
    color: var(--text-muted);
    border-left: 4px solid var(--color-orange);
    line-height: 1.85;
}

.cards-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    font-weight: 600;
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.card {
    background: white;
    padding: 1.1rem 1.8rem;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1.5px solid transparent;
}

.card:hover {
    transform: translateX(6px);
    border-color: rgba(247, 179, 77, 0.35);
    box-shadow: 0 8px 24px rgba(247, 179, 77, 0.14);
}

.card i {
    font-size: 1.4rem;
    color: var(--color-orange);
    flex-shrink: 0;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

.info-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    opacity: 0.85;
    margin-top: 1rem;
    line-height: 1.65;
}

/* ===================================
   TRUTH SECTION
   =================================== */
.truth {
    background-color: var(--color-mint);
    color: white;
}

.truth .section-title {
    color: white;
}

.truth-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.85;
    display: inline-block;
    animation: icon-float 5s ease-in-out infinite;
}

.white-panel {
    background: white;
    color: var(--text-main);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    text-align: center;
    box-shadow: 0 30px 60px rgba(45, 62, 53, 0.2);
}

.white-panel p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.white-panel p:last-child {
    margin-bottom: 0;
}

.white-panel strong {
    color: var(--color-mint);
}

/* ===================================
   SOLUTION SECTION
   =================================== */
.solution {
    background-color: var(--color-mint-light);
}

.not-list {
    list-style: none;
    margin-bottom: 2rem;
}

.not-list li {
    font-size: 1.05rem;
    margin-bottom: 0.9rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.not-list i {
    color: var(--color-mint);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.concept-box {
    padding: 2.5rem;
    background: white;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--color-mint);
    text-align: left;
}

.concept-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-main);
}

.concept-box .mt-2 {
    margin-top: 1rem;
}

.concept-box strong {
    color: var(--color-mint);
}

.tag {
    background: rgba(152, 189, 171, 0.15);
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--color-mint);
    font-weight: 600;
    border: 1.5px solid rgba(152, 189, 171, 0.3);
    transition: var(--transition-smooth);
}

.tag:hover {
    background: var(--color-mint);
    color: white;
    border-color: var(--color-mint);
}

/* ===================================
   DISCLAIMER
   =================================== */
.disclaimer {
    background-color: #f1f3f2;
}

.alert-box {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--color-mint);
}

/* ===================================
   METHODOLOGY SECTION
   =================================== */
.methodology {
    background-color: var(--bg-white);
}

.method-grids {
    gap: 2rem;
}

.method-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--color-mint-light);
    transition: var(--transition-smooth);
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-mint);
}

.method-card h3 {
    margin-bottom: 0.85rem;
    font-size: 1.2rem;
}

.method-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--color-mint-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: var(--color-mint);
    transition: var(--transition-smooth);
}

.method-card:hover .icon-wrapper {
    background: var(--color-mint);
    transform: scale(1.1) rotate(-5deg);
}

.method-card:hover .icon-wrapper i {
    color: white;
}

/* ===================================
   CTA / PRICING SECTION
   =================================== */
.cta {
    background-color: var(--color-orange-light);
}

.details-box {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid rgba(247, 179, 77, 0.2);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.detail-item i {
    font-size: 1.8rem;
    color: var(--color-orange);
}

.value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.price-box {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-orange), #fad98a, var(--color-orange));
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

.invest-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    font-family: var(--font-body);
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin: 0.4rem 0;
}

.price-currency {
    font-size: 1.6rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 400;
}

.price {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: var(--font-heading);
    line-height: 1;
    letter-spacing: -2px;
}

.price-installments {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ===================================
   AUTHOR SECTION
   =================================== */
.author {
    background-color: var(--bg-main);
}

.author-image-placeholder {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    background: var(--color-mint-light);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 6px solid white !important;
    box-shadow: var(--shadow-lg);
}

.initials {
    font-size: 5rem;
    color: var(--color-mint);
    font-weight: 300;
}

.author-name {
    font-size: 2.2rem;
    margin-top: 0.5rem;
    letter-spacing: -0.5px;
}

.bio-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.stat-number {
    color: var(--color-mint);
}

/* ===================================
   FOOTER / DISCLAIMER
   =================================== */
.disclaimer {
    background-color: #f1f3f2;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(7deg); }
}

@keyframes blob-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(16px, -12px) scale(1.04); }
    66% { transform: translate(-10px, 8px) scale(0.97); }
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(8px); opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 992px) {
    .grids-2 { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-content { margin: 0 auto; }
}

@media (max-width: 768px) {
    .hero { min-height: auto; padding: 6rem 0 4rem; }
    .title { font-size: 2.2rem; }
    .price { font-size: 3.2rem; letter-spacing: -1px; }
    .price-currency { font-size: 1.3rem; }
    .scroll-indicator { display: none; }
    .wave-divider svg { height: 45px; }
    .concept-box { padding: 1.8rem; }
    .white-panel { padding: 2rem; }
    .hero-blob-1 { width: 300px; height: 300px; }
    .hero-blob-2 { width: 250px; height: 250px; }
}
