:root {
    --sage: #7A9E7E;
    --deep-green: #2D5A3D;
    --lavender: #9B8EC2;
    --gold: #C9A84C;
    --warm-brown: #6B5B4E;
    --cream: #FDF8F0;
    --soft-purple: #E8E0F0;
    --dark: #1A1A2E;
    --text-primary: #2D2D3A;
    --text-secondary: #5A5A6E;
}

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

b, strong {
    font-weight: 700 !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* =============================================
   HERO
   ============================================= */
.hero-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D5A3D 50%, #1A1A2E 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122, 158, 126, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: #A8D5A2;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    color: #fff;
    font-weight: 700;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #A8D5A2, #C9A84C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 650px;
}

/* =============================================
   BUTTONS
   ============================================= */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #C9A84C, #E8C55A);
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 30px rgba(201, 168, 76, 0.4);
    text-align: center;
    justify-content: center;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.6);
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.cta-button-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.cta-green {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--sage), var(--deep-green));
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 30px rgba(45, 90, 61, 0.4);
    text-align: center;
    justify-content: center;
}
.cta-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(45, 90, 61, 0.6);
}

@keyframes pulse-cta {
    0%, 100% { box-shadow: 0 4px 30px rgba(201, 168, 76, 0.4); }
    50%      { box-shadow: 0 4px 50px rgba(201, 168, 76, 0.7); }
}
.pulse-animation {
    animation: pulse-cta 2s ease-in-out infinite;
}

.pulse-green {
    animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
    0%, 100% { box-shadow: 0 4px 30px rgba(45, 90, 61, 0.4); }
    50%      { box-shadow: 0 4px 50px rgba(45, 90, 61, 0.7); }
}

/* =============================================
   SECTIONS
   ============================================= */
.section-padding {
    padding: 100px 0;
}
.section-dark  { background: var(--dark); color: #fff; }
.section-cream { background: var(--cream); }
.section-white { background: #fff; }
.section-soft  { background: var(--soft-purple); }
.section-green { background: linear-gradient(135deg, #2D5A3D, #1A3A25); color: #fff; }

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.scroll-offset {
    scroll-margin-top: 80px;
}

/* =============================================
   PROBLEM CARDS
   ============================================= */
.problem-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.problem-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* =============================================
   AGITATION
   ============================================= */
.agitation-bg {
    background: linear-gradient(135deg, #1A1A2E, #2D1A3E);
}
.agitation-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

/* =============================================
   SOLUTION
   ============================================= */
.solution-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.solution-feature:last-child {
    border-bottom: none;
}
.solution-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage), var(--deep-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    margin-top: 2px;
}

/* =============================================
   BENEFITS GRID
   ============================================= */
.benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

/* =============================================
   AUTHORITY
   ============================================= */
.author-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(20px);
}

/* =============================================
   SCIENCE
   ============================================= */
.science-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border-left: 4px solid var(--sage);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

/* =============================================
   OFFER
   ============================================= */
.offer-card {
    background: linear-gradient(135deg, #fff, var(--soft-purple));
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(201, 168, 76, 0.3);
    position: relative;
    overflow: hidden;
}
.offer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage), var(--gold), var(--lavender));
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #E74C3C;
    color: #fff;
    padding: 6px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    animation: pulse-scarcity 2s ease-in-out infinite;
}
@keyframes pulse-scarcity {
    0%, 100% { transform: rotate(45deg) scale(1); }
    50%      { transform: rotate(45deg) scale(1.05); }
}

.price-old {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.2rem;
}
.price-new {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--deep-green);
    font-family: 'Playfair Display', serif;
}
.price-installments {
    font-size: 1rem;
    color: var(--text-secondary);
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(45, 90, 61, 0.1);
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--deep-green);
    font-weight: 600;
}

/* =============================================
   SCARCITY TIMER
   ============================================= */
.scarcity-timer {
    background: rgba(231, 76, 60, 0.08);
    border: 2px solid #E74C3C;
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
    margin: 24px 0;
    animation: glow-timer 2s ease-in-out infinite alternate;
}
@keyframes glow-timer {
    0%   { border-color: #E74C3C; box-shadow: 0 0 10px rgba(231, 76, 60, 0.2); }
    100% { border-color: #C0392B; box-shadow: 0 0 25px rgba(231, 76, 60, 0.4); }
}
.timer-digits {
    font-size: 2.5rem;
    font-weight: 800;
    color: #E74C3C;
    letter-spacing: 4px;
    font-variant-numeric: tabular-nums;
}
.timer-label {
    font-size: 0.85rem;
    color: #888;
    margin-top: 4px;
}
.timer-colon {
    font-size: 2.5rem;
    font-weight: 800;
    color: #E74C3C;
    animation: blink-colon 1s step-end infinite;
}
@keyframes blink-colon {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.3; }
}

/* =============================================
   STOCK BAR
   ============================================= */
.stock-low {
    background: #FFF8E1;
    border: 1px solid #FFB300;
    border-radius: 12px;
    padding: 12px 20px;
    text-align: center;
    margin: 16px 0;
    font-weight: 600;
    color: #E65100;
    font-size: 0.95rem;
}
.stock-bar {
    width: 100%;
    height: 10px;
    background: #E0E0E0;
    border-radius: 5px;
    margin-top: 8px;
    overflow: hidden;
}
.stock-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #E74C3C, #FF5722);
    border-radius: 5px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =============================================
   ESCASSEZ SECTION
   ============================================= */
.scarcity-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D1A3E 100%);
    position: relative;
    overflow: hidden;
}
.scarcity-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M20 20h20v20H20zM0 0h20v20H0z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.scarcity-pulse-bar {
    height: 4px;
    background: #333;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 24px;
}
.scarcity-pulse-fill {
    height: 100%;
    width: 28%;
    background: linear-gradient(90deg, #C9A84C, #E74C3C);
    border-radius: 2px;
    animation: pulse-scarcity-bar 2s ease-in-out infinite;
}
@keyframes pulse-scarcity-bar {
    0%, 100% { opacity: 1; width: 28%; }
    50%      { opacity: 0.6; width: 32%; }
}

/* =============================================
   FAQ
   ============================================= */
.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.faq-question {
    padding: 24px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    user-select: none;
}
.faq-question:hover {
    color: var(--deep-green);
}
.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--soft-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}
.faq-item.active .faq-icon {
    background: var(--deep-green);
    color: #fff;
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner {
    padding: 0 32px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 300px;
}

/* =============================================
   FLOATING CTA
   ============================================= */
.floating-cta {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 1000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
.floating-cta.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.floating-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #C9A84C, #E8C55A);
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.5);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.floating-cta a:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 50px rgba(201, 168, 76, 0.7);
}

/* =============================================
   TESTIMONIAL
   ============================================= */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}
.testimonial-stars {
    color: #F4C430;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* =============================================
   STEPS
   ============================================= */
.step-card {
    position: relative;
    padding-left: 80px;
}
.step-number {
    position: absolute;
    left: 0; top: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage), var(--deep-green));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

/* =============================================
   DECORATIONS
   ============================================= */
.floating-leaf {
    position: absolute;
    animation: float-leaf 6s ease-in-out infinite;
    opacity: 0.15;
}
@keyframes float-leaf {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-20px) rotate(10deg); }
}

.moon-phase {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.heavy-text   { text-shadow: 0 0 1px rgba(0,0,0,0.6); }
.heavy-stroke { -webkit-text-stroke: 0.8px #000; }
.heavy-combo  {
    -webkit-text-stroke: 0.6px #000;
    text-shadow: 0 0 1px #000;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    .cta-button, .cta-green {
        padding: 16px 28px;
        font-size: 1rem;
    }
    .price-new {
        font-size: 2.5rem;
    }
    .offer-card, .author-card, .agitation-card {
        padding: 32px 24px;
    }
    .problem-card {
        padding: 28px;
    }
    .timer-digits {
        font-size: 1.8rem;
    }
    .timer-colon {
        font-size: 1.8rem;
    }
    .faq-question {
        padding: 20px 24px;
        font-size: 0.95rem;
    }
    .faq-answer-inner {
        padding: 0 24px 20px;
    }
    .floating-cta a {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}