/* 
   ==========================================================================
   DESIGN SYSTEM - COSTURA PET LUCRATIVAâ„¢ (INSPIRADO EM COPA.EXERCITANDOOCEREBRO.COM)
   ==========================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    /* Color Palette - Premium, Organic, Warm and Modern Cozy */
    --bg-primary: #F5EEE4;         /* Exact warm cream background of the mockup images */
    --bg-secondary: #ece5d1;       /* Earthy cream beige for sections */
    --bg-tertiary: #d9d2bf;        /* Warm delicate line color */
    
    --paper: #fbf8f1;              /* Soft clean warm off-white for cards/papers */
    
    --text-primary: #0f1a14;       /* Deep forest near-black (rich and legible) */
    --text-secondary: #2a3a31;     /* Soft medium forest charcoal gray */
    --text-muted: #5a655e;         /* Elegant muted grey for secondary text */
    
    --green-primary: #0e3d2c;      /* Signature rich deep forest emerald green */
    --green-vibrant: #2c8a5a;      /* Vibrant grass green for primary CTAs */
    --green-vibrant-hover: #226f47;/* Deep grass green hover */
    --green-light: #e8f0ea;        /* Light sage green tint */
    
    --orange-primary: #c34a2c;     /* Organic terracotta / clay red for highlights/badges */
    --orange-hover: #a83b22;       /* Rich terracotta hover */
    --orange-light: #fdf2ed;       /* Soft terracotta backdrop tint */
    
    --gold: #e6a73b;               /* Warm honey gold */
    --gold-vibrant: #f1c460;       /* Vibrant yellow gold for accents and checks */
    
    --red-pain: #c34a2c;           /* Brick red/clay for pain points */
    
    /* Typography */
    --font-heading: 'Bricolage Grotesque', 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Shadows - High-fidelity layered shadows inspired by the reference site */
    --shadow-subtle: 0 1px 0 rgba(15, 26, 20, 0.04), 0 2px 8px rgba(15, 26, 20, 0.04);
    --shadow-medium: 0 1px 0 rgba(15, 26, 20, 0.06), 0 8px 24px rgba(15, 26, 20, 0.08);
    --shadow-premium: 0 24px 60px rgba(15, 26, 20, 0.18);
    
    /* Border Radii scale */
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    
    /* Max Widths */
    --container-width: 1200px;
    --container-narrow: 860px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
}

.container-narrow {
    width: 100%;
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--green-primary);
}

p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Divisores elegantes */
.pesponto-divider {
    height: 1px;
    border-top: 1.5px dashed var(--bg-tertiary);
    margin: 16px auto;
    max-width: var(--container-width);
    width: calc(100% - 56px);
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* Topbar Notification */
.topbar {
    background-color: var(--green-primary);
    color: var(--paper);
    text-align: center;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-family: var(--font-mono);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 100;
    position: relative;
}

.topbar span {
    background-color: var(--orange-primary);
    color: white;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    background-color: var(--green-light);
    color: var(--green-primary);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    border: 1px solid rgba(14, 61, 44, 0.08);
}

.badge-orange {
    background-color: var(--orange-light);
    color: var(--orange-primary);
    border-color: rgba(195, 74, 44, 0.08);
}

/* Primary buttons (CTA) - modern pill shaped */
.btn-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 540px;
    padding: 18px 36px;
    background-color: var(--green-vibrant);
    color: white;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.01em;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast) ease;
    position: relative;
    overflow: hidden;
    margin: 16px 0;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium);
    background-color: var(--green-vibrant-hover);
}

.btn-cta:active {
    transform: translateY(1px);
    box-shadow: var(--shadow-subtle);
}

.btn-cta-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0.85;
    margin-top: 3px;
    text-transform: none;
    letter-spacing: 0;
}

/* Glow animation for CTA buttons */
@keyframes shiner {
    0% { left: -100%; }
    100% { left: 150%; }
}

.btn-cta-glow::before {
    animation: shiner 3s infinite ease-in-out;
}

.cta-helper-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-weight: 500;
}

.cta-helper-text svg {
    color: var(--green-vibrant);
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

/* Hero Section */
.hero-section {
    background-color: var(--bg-primary);
    padding: 72px 0 48px;
    position: relative;
    text-align: center;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 880px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-size: clamp(34px, 4.8vw, 68px);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--green-primary);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    color: var(--text-secondary);
    margin-bottom: 36px;
    font-weight: 500;
    max-width: 680px;
    line-height: 1.5;
}

/* Hero Bullets - pill shaped cards */
.hero-bullets {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: 520px;
    width: 100%;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--paper);
    border: 1px solid var(--bg-tertiary);
    border-radius: 999px;
    padding: 12px 22px;
    text-align: left;
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-fast) ease;
}

.hero-bullets li:hover {
    border-color: var(--green-vibrant);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.hero-bullets li .check-dot {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background-color: var(--green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bullets li .check-dot svg {
    color: var(--gold-vibrant);
    stroke-width: 3.5;
}

/* Hero Mockup Area */
.hero-mockup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 580px;
    margin: 8px auto 20px;
    background: none;
}

.hero-image {
    width: 100%;
    max-width: 580px;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.hero-image:hover {
    transform: scale(1.025) rotate(-1deg);
}

/* Premium CSS-based Mockup fallback */
.mockup-fallback {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--green-primary) 0%, #082117 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    padding: 36px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.mockup-fallback::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(195, 74, 44, 0.15) 0%, rgba(0,0,0,0) 70%);
    top: -50%;
    right: -50%;
}

.mockup-header-f {
    font-family: var(--font-heading);
    font-weight: 850;
    font-size: 2rem;
    line-height: 1.1;
    color: var(--paper);
    border-bottom: 2px solid var(--orange-primary);
    padding-bottom: 14px;
    z-index: 1;
}

.mockup-body-f {
    z-index: 1;
    margin: 24px 0;
}

.mockup-tags-f {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mockup-tag-f {
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
}

.mockup-footer-f {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 1;
}

.mockup-price-badge {
    background-color: var(--orange-primary);
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: var(--shadow-medium);
}

/* ==========================================================================
   PROBLEM SECTION (PAIN)
   ========================================================================== */
.problem-section {
    background-color: var(--bg-secondary);
    padding: 48px 0;
    border-top: 1px solid var(--bg-tertiary);
    border-bottom: 1px solid var(--bg-tertiary);
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 24px;
}

.section-header h2 {
    font-size: clamp(28px, 3.8vw, 44px);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

/* Problem Container padding */
.problem-container {
    background-color: var(--paper);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--bg-tertiary);
    max-width: 800px;
    margin: 0 auto;
}

.problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.problem-list li svg {
    color: var(--red-pain);
    flex-shrink: 0;
    margin-top: 3px;
    stroke-width: 2.5 !important;
}

.problem-list li strong {
    color: var(--text-primary);
}

.problem-quote {
    text-align: center;
    background-color: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    margin: 24px 0;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 600;
    color: var(--green-primary);
    position: relative;
    border: 1px dashed var(--bg-tertiary);
    border-left: 4px solid var(--orange-primary);
}

.problem-conclusion {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

.problem-conclusion span {
    color: var(--green-primary);
    font-weight: 850;
    display: block;
    font-size: 1.55rem;
    margin-top: 10px;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   IMAGINE SECTION (DESIRE)
   ========================================================================== */
.imagine-section {
    padding: 48px 0;
    background-color: var(--bg-primary);
}

.imagine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.imagine-card {
    background-color: var(--paper);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    border: 1px solid var(--bg-tertiary);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.imagine-card:hover {
    transform: translateY(-4px) rotate(-0.5deg);
    box-shadow: var(--shadow-medium);
    border-color: var(--orange-primary);
}

.imagine-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background-color: var(--orange-light);
    color: var(--orange-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(195, 74, 44, 0.06);
}

.imagine-card p {
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.45;
}

.imagine-banner {
    text-align: center;
    background-color: var(--green-primary);
    color: white;
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    box-shadow: var(--shadow-medium);
    border: 1.5px dashed rgba(255, 255, 255, 0.15);
    outline: 6px solid var(--green-primary);
    margin: 20px 6px 0;
}

.imagine-banner h3 {
    color: white;
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   SOLUTION SECTION (WHAT IS IT)
   ========================================================================== */
.solution-section {
    padding: 48px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--bg-tertiary);
    border-bottom: 1px solid var(--bg-tertiary);
    text-align: center;
}

.solution-content {
    max-width: 860px;
    margin: 0 auto;
}

.solution-text-block {
    background-color: var(--paper);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--bg-tertiary);
    box-shadow: var(--shadow-medium);
}

.solution-text-block p {
    font-size: 1.25rem;
    line-height: 1.75;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.solution-text-block p strong {
    color: var(--green-primary);
    font-weight: 750;
}

.solution-features-flat {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 40px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--bg-tertiary);
}

.solution-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--green-primary);
    font-size: 1.15rem;
}

.solution-feature-item svg {
    color: var(--green-vibrant);
    stroke-width: 3.5;
}

/* ==========================================================================
   CATEGORIES SECTION
   ========================================================================== */
.categories-section {
    padding: 48px 0;
    background-color: var(--bg-primary);
}

.categories-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 28px;
}

.categories-intro h2 {
    font-size: clamp(28px, 3.8vw, 44px);
    margin-bottom: 10px;
    font-weight: 800;
}

.categories-intro h3 {
    font-size: 1.7rem;
    color: var(--orange-primary);
    margin-bottom: 12px;
    font-weight: 750;
    letter-spacing: -0.02em;
}

.categories-intro p {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.categories-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 960px;
    margin: 24px auto 0;
    background-color: var(--paper);
    border: 1.5px solid var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-normal);
}

.categories-image-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
    border-color: var(--orange-primary);
}

.categories-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

@media (max-width: 768px) {
    .categories-image-wrapper {
        padding: 12px;
        border-radius: var(--radius-md);
        margin-top: 24px;
    }
}

/* ==========================================================================
   BONUS SECTION
   ========================================================================== */
.bonus-section {
    background-color: var(--bg-secondary);
    padding: 48px 0;
    border-top: 1px solid var(--bg-tertiary);
    border-bottom: 1px solid var(--bg-tertiary);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    margin-top: 24px;
}

.bonus-card {
    background-color: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--bg-tertiary);
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-normal);
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--orange-primary);
}

.bonus-img {
    width: 100%;
    max-width: 260px;
    height: 200px;
    object-fit: contain;
    object-position: center center;
    margin: 12px auto 12px;
    display: block;
    mix-blend-mode: multiply;
}

.bonus-number {
    position: absolute;
    top: 28px;
    right: 28px;
    background-color: var(--orange-light);
    color: var(--orange-primary);
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 5px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px dashed rgba(195, 74, 44, 0.35);
}

.bonus-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 12px 0 8px;
    color: var(--green-primary);
    letter-spacing: -0.02em;
}

.bonus-card p {
    font-size: 1.02rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   AUDIENCE SECTION (WHO IS IT FOR)
   ========================================================================== */
.audience-section {
    padding: 48px 0;
    background-color: var(--bg-primary);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 24px;
}

.audience-column h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid var(--bg-tertiary);
}

.audience-list, .even-if-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.audience-list li, .even-if-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--paper);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    transition: all var(--transition-fast) ease;
    box-shadow: var(--shadow-subtle);
}

.audience-list li:hover, .even-if-list li:hover {
    border-color: var(--green-vibrant);
    transform: translateX(6px);
    box-shadow: var(--shadow-medium);
}

.audience-list li .check-dot,
.even-if-list li .check-dot {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background-color: var(--green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.audience-list li .check-dot svg,
.even-if-list li .check-dot svg {
    color: var(--gold-vibrant);
    stroke-width: 3.5;
    width: 14px;
    height: 14px;
}

.even-if-list li .check-dot {
    background-color: var(--green-vibrant);
}

.audience-conclusion {
    text-align: center;
    background-color: var(--orange-light);
    border: 1px dashed var(--orange-primary);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--orange-primary);
}

/* ==========================================================================
   CONQUESTS SECTION
   ========================================================================== */
.conquests-section {
    background-color: var(--green-primary);
    color: white;
    padding: 48px 0;
    position: relative;
    border-top: 1.5px dashed rgba(255, 255, 255, 0.15);
    border-bottom: 1.5px dashed rgba(255, 255, 255, 0.15);
}

.conquests-section h2 {
    color: white;
}

.conquests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.conquest-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1.5px dashed rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all var(--transition-normal);
}

.conquest-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--orange-primary);
    transform: translateY(-3px);
}

.conquest-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--gold-vibrant);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.conquest-icon-wrapper svg {
    stroke-width: 3.5;
    width: 18px;
    height: 18px;
}

.conquest-card span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 48px 0;
    background-color: var(--bg-primary);
}

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

.testimonial-card {
    background-color: var(--paper);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--bg-tertiary);
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--orange-primary);
}

.testimonial-stars {
    font-size: 1.25rem;
    color: var(--orange-primary);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 20px;
    font-style: normal;
    flex-grow: 1;
}

.testimonial-divider {
    width: 100%;
    border: none;
    border-top: 1px solid var(--bg-tertiary);
    margin: 20px 0;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-top: auto;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--bg-tertiary);
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.testimonial-role {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   OFFER & PRICING SECTION
   ========================================================================== */
.offer-section {
    padding: 48px 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--bg-tertiary);
    border-bottom: 1px solid var(--bg-tertiary);
}

.plans-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    margin: 32px auto 0;
    max-width: 960px;
}

.plan-card {
    background-color: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--bg-tertiary);
    box-shadow: var(--shadow-subtle);
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-normal);
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--orange-primary);
}

/* recommended plan design */
.plan-card-premium {
    border: 3px solid var(--green-primary) !important;
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

.plan-card-premium:hover {
    border-color: var(--orange-primary) !important;
    box-shadow: var(--shadow-premium) !important;
}

.plan-badge-highlight {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #ffb03a 0%, #ffa025 100%);
    color: #0f1a14;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.82rem;
    padding: 8px 20px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(255, 160, 37, 0.35);
    z-index: 10;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.plan-header {
    padding: 36px 28px 20px;
    text-align: center;
    border-bottom: 1.5px solid var(--bg-tertiary);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-card-premium .plan-header {
    border-bottom-color: var(--bg-tertiary);
    padding-top: 44px;
}

.plan-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.plan-card-premium .plan-header h3 {
    color: var(--green-primary);
}

.plan-popular-tag {
    background-color: var(--green-light);
    color: var(--green-primary);
    border: 1px solid rgba(14, 61, 44, 0.12);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
    letter-spacing: 0.08em;
}

.plan-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 280px;
    line-height: 1.45;
}

.plan-card-premium .plan-desc {
    color: var(--text-secondary);
}

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

.plan-price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-family: var(--font-mono);
    font-weight: 600;
    letter-spacing: 0.08em;
}

.plan-card-premium .plan-price-label {
    color: var(--text-muted);
}

.plan-price-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.8rem;
    color: var(--green-vibrant);
    line-height: 0.95;
    margin: 6px 0;
    letter-spacing: -0.03em;
}

.plan-card-premium .plan-price-value {
    color: var(--green-vibrant);
}

.plan-price-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-card-premium .plan-price-sub {
    color: var(--text-muted);
}

.plan-price-old {
    font-size: 1.15rem;
    color: var(--red-pain);
    font-weight: 700;
    margin-bottom: 2px;
}

.plan-price-strike {
    text-decoration: line-through;
}

.plan-price-save {
    font-size: 0.95rem;
    color: var(--green-vibrant);
    font-weight: 750;
    margin-top: 4px;
}

.plan-urgency-tag {
    color: var(--orange-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 12px 0 6px;
    text-align: center;
    line-height: 1.3;
}

.plan-body {
    padding: 24px 28px;
    flex-grow: 1;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.4;
}

.plan-card-premium .plan-features li {
    color: var(--text-secondary);
}

.plan-features li svg {
    color: var(--green-vibrant);
    flex-shrink: 0;
    margin-top: 3px;
    stroke-width: 3.5;
    width: 16px;
    height: 16px;
}

.plan-card-premium .plan-features li svg {
    color: var(--green-vibrant);
}

.plan-features .premium-highlight-feature {
    font-weight: 750;
}

.plan-card-premium .plan-features .premium-highlight-feature svg {
    color: var(--green-vibrant);
}

.plan-card-premium .plan-features .premium-highlight-feature span {
    color: var(--green-primary);
}

.plan-footer {
    padding: 20px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.04);
}

.plan-card-premium .plan-footer {
    border-top-color: rgba(0,0,0,0.04);
}

/* Buttons in Plans */
/* Mockup Image in Plans */
.plan-mockup-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    margin: 16px auto;
    transition: transform var(--transition-slow);
}

.plan-mockup-img:hover {
    transform: scale(1.03) rotate(0.5deg);
}

/* Buttons in Plans */
.btn-plan-basico {
    max-width: 100% !important;
    margin: 8px 0 !important;
    font-size: 1.15rem !important;
    padding: 16px 28px !important;
    background-color: var(--green-vibrant) !important;
    color: white !important;
    border: none !important;
    border-radius: 999px !important;
    box-shadow: 0 4px 14px rgba(44, 138, 90, 0.25) !important;
    transition: all var(--transition-fast) ease !important;
}

.btn-plan-basico:hover {
    background-color: var(--green-vibrant-hover) !important;
    box-shadow: 0 8px 24px rgba(44, 138, 90, 0.4) !important;
    transform: translateY(-2px) !important;
}

.btn-plan-premium {
    max-width: 100% !important;
    margin: 8px 0 !important;
    font-size: 1.15rem !important;
    padding: 16px 28px !important;
    background-color: var(--green-vibrant) !important;
    color: white !important;
    border-radius: 999px !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(44, 138, 90, 0.25) !important;
    transition: all var(--transition-fast) ease !important;
}

.btn-plan-premium:hover {
    background-color: var(--green-vibrant-hover) !important;
    box-shadow: 0 8px 24px rgba(44, 138, 90, 0.4) !important;
    transform: translateY(-2px) !important;
}

/* Guarantee Section Inside Offer */
.guarantee-container {
    max-width: 800px;
    margin: 32px auto 0;
    background-color: var(--paper);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow-subtle);
}

.guarantee-badge-svg {
    display: flex;
    justify-content: center;
    align-items: center;
}

.guarantee-img {
    width: 100%;
    max-width: 90px;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
}

.guarantee-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--green-primary);
    letter-spacing: -0.02em;
}

.guarantee-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
    padding: 48px 0;
    background-color: var(--bg-primary);
}

.faq-container {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background-color: var(--paper);
    border: 1.5px solid var(--bg-tertiary);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-subtle);
}

.faq-item:hover {
    border-color: var(--green-primary);
}

.faq-item.active {
    border-color: var(--green-primary);
    box-shadow: var(--shadow-medium);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-primary);
    letter-spacing: -0.01em;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    position: relative;
    flex-shrink: 0;
    transition: transform var(--transition-normal);
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--text-primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all var(--transition-normal);
}

/* Horizontal line */
.faq-icon::before {
    width: 12px;
    height: 2px;
}

/* Vertical line */
.faq-icon::after {
    width: 2px;
    height: 12px;
}

/* Active FAQ trigger state */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background-color: var(--green-primary);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background-color: var(--paper);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-content {
    padding: 0 28px 24px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    border-top: 1px solid transparent;
}

/* ==========================================================================
   FINAL CTA SECTION (URGENCY)
   ========================================================================== */
.final-cta-section {
    padding: 48px 0;
    background-color: var(--green-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1.5px dashed rgba(255, 255, 255, 0.15);
}

.final-cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(195, 74, 44, 0.12) 0%, rgba(0,0,0,0) 70%);
    bottom: -300px;
    left: -300px;
    z-index: 0;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta-section h2 {
    color: white;
    font-size: clamp(30px, 4.5vw, 56px);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.final-cta-section p {
    color: rgba(245, 241, 232, 0.9);
    font-size: 1.25rem;
    margin-bottom: 20px;
    line-height: 1.65;
}

.final-cta-section p strong {
    color: white;
}

.final-cta-price-callout {
    font-size: 1.45rem;
    font-weight: 700;
    margin-top: 28px;
    display: inline-block;
    padding: 8px 24px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: var(--font-heading);
}

.final-cta-price-callout span {
    color: var(--gold-vibrant);
    font-weight: 800;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: #0f1a14;
    color: rgba(245, 241, 232, 0.55);
    padding: 48px 0 32px;
    text-align: center;
    font-size: 0.92rem;
    border-top: 4px solid var(--green-primary);
    font-family: var(--font-body);
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.55rem;
    color: var(--paper);
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.02em;
}

.footer-logo svg {
    color: var(--orange-primary);
    width: 26px;
    height: 26px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
}

.footer-nav a {
    color: rgba(245, 241, 232, 0.8);
    transition: color var(--transition-fast) ease;
}

.footer-nav a:hover {
    color: white;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 20px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
    line-height: 1.65;
    color: rgba(245, 241, 232, 0.4);
}

/* ==========================================================================
   ANIMATIONS (Intersection Observer classes)
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* ==========================================================================
   RESPONSIVENESS (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 992px) {
    .hero-grid {
        text-align: center;
    }
    
    .hero-bullets {
        align-items: center;
    }
    
    .hero-mockup-wrapper {
        max-width: 480px;
        margin: 0 auto 28px;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .plans-container {
        flex-direction: column;
        align-items: center;
        gap: 36px;
    }

    .plan-card {
        width: 100%;
        max-width: 480px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 32px auto 0;
        gap: 28px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .hero-section {
        padding: 64px 0 40px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .section-header h2 {
        font-size: 1.9rem;
    }
    
    .categories-intro h2 {
        font-size: 1.9rem;
    }
    
    .problem-container {
        padding: 32px 24px;
    }
    
    .problem-list li {
        font-size: 1.05rem;
    }
    
    .problem-quote {
        font-size: 1.2rem;
        padding: 20px;
    }
    
    .guarantee-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 24px;
        gap: 20px;
    }
    
    .btn-cta {
        font-size: 1.25rem;
        padding: 16px 28px;
    }
}

@media (max-width: 480px) {
    .container, .container-narrow {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        font-size: 1.95rem;
    }
    
    .topbar {
        font-size: 0.78rem;
        padding: 10px 14px;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .imagine-grid {
        grid-template-columns: 1fr;
    }

    .conquests-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 12px 24px;
        font-size: 0.95rem;
    }

    .btn-cta {
        padding: 14px 20px;
        font-size: 1.15rem;
    }

    .plan-header {
        padding: 28px 20px 16px;
    }

    .plan-body {
        padding: 20px 20px;
    }

    .plan-footer {
        padding: 16px 20px 20px;
    }

    .guarantee-container {
        padding: 20px 16px;
    }

    .faq-trigger {
        padding: 14px 16px;
        font-size: 1.1rem;
    }

    .faq-content {
        padding: 0 16px 16px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-text {
        font-size: 0.98rem;
    }
}

/* ==========================================================================
   UPSELL MODAL POPUP Styles
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background-color: #1E1E1E;
    border: 3px solid #FF6A00;
    border-radius: 16px;
    width: 90%;
    max-width: 410px;
    padding: 24px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: #FFFFFF;
    font-family: var(--font-body);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-sizing: border-box;
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-alert {
    color: #EF4444;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #E5E5E5;
    line-height: 1.4;
    margin-bottom: 18px;
}

.modal-title strong {
    color: #FFFFFF;
}

.modal-price-container {
    background-color: rgba(255, 106, 0, 0.05);
    border: 1px dashed rgba(255, 106, 0, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
}

.modal-price-old {
    font-size: 0.95rem;
    color: #EF4444;
    font-weight: 700;
    text-decoration: line-through;
    margin-bottom: 2px;
    display: block;
    text-transform: uppercase;
}

.modal-price-new {
    font-size: 2.2rem;
    font-weight: 800;
    color: #22C55E;
    font-family: var(--font-heading);
    display: block;
    line-height: 1;
}

.modal-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding-left: 32px;
}

.modal-bullets li {
    font-size: 1.05rem;
    font-weight: 600;
    color: #D4D4D4;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-btn-confirm {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: #FFFFFF !important;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    text-align: center;
    padding: 14px 20px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.35);
    transition: all 0.2s ease;
    margin-bottom: 16px;
    text-decoration: none;
    box-sizing: border-box;
}

.modal-btn-confirm:hover {
    background: linear-gradient(135deg, #4ADE80 0%, #16A34A 100%);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
    transform: translateY(-1px);
}

.modal-btn-cancel {
    display: inline-block;
    background: none;
    border: none;
    color: #A3A3A3;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-btn-cancel:hover {
    color: #FFFFFF;
}

@media (max-width: 480px) {
    .modal-box {
        padding: 20px 16px;
    }
    
    .modal-bullets {
        padding-left: 20px;
    }
}
