/* ==========================================================================
   CSS VARIABLES - PREMIUM PALETTE
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
    --primary-blue: #0A2463;
    --primary-blue-dark: #071A4A;
    --secondary-yellow: #FFD166;
    --secondary-yellow-dark: #E0B445;
    --accent-green: #06D6A0;
    --accent-green-dark: #05B586;
    --highlight-orange: #FF6B35;
    --urgency-red: #EF476F;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --text-dark: #1F2937;
    --text-muted: #6B7280;
    
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 32px;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(6, 214, 160, 0.4);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Outfit', 'Nunito', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

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

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px;
}

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

.highlight-red { color: var(--urgency-red); }
.highlight-yellow { color: var(--secondary-yellow); }
.highlight-yellow-text { color: var(--secondary-yellow-dark); font-weight: 800; }
.highlight-red-text { color: var(--urgency-red); }
.highlight-orange { color: var(--highlight-orange); font-weight: 800; }
.text-white { color: var(--bg-white); }

.marker-highlight {
    background-color: #E87A5D;
    color: #FFFFFF !important;
    padding: 2px 6px;
    display: inline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    line-height: 1.5;
    border-radius: 2px;
}

/* ==========================================================================
   ANIMATIONS (SCROLL)
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

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

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 28px;
    font-size: 1.25rem;
    font-weight: 900;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    border: none;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
    color: var(--bg-white);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(6, 214, 160, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--highlight-orange), #E65A20);
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background-color: rgba(0,0,0,0.05);
    border-color: var(--text-dark);
}

.pulse-effect {
    animation: premium-pulse 2s infinite;
}

@keyframes premium-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 20px rgba(6, 214, 160, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(6, 214, 160, 0); }
}

.cta-container {
    text-align: center;
    width: 100%;
    max-width: 550px;
    margin: 30px auto;
}

.microcopy {
    display: block;
    font-size: 0.875rem;
    color: var(--bg-light);
    opacity: 0.8;
    margin-top: 12px;
    font-weight: 600;
}

/* ==========================================================================
   1. URGENCY BAR
   ========================================================================== */
.urgency-bar {
    background: linear-gradient(90deg, var(--urgency-red), #D90429);
    color: var(--bg-white);
    text-align: center;
    padding: 14px 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.urgency-bar p { margin: 0; }

.countdown {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--urgency-red);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 900;
    margin-left: 8px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.mobile-break { display: block; }

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero {
    background: radial-gradient(circle at top right, var(--primary-blue), var(--primary-blue-dark));
    color: var(--bg-white);
    padding: 60px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==') repeat;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -10%;
    width: 120%;
    height: 100px;
    background-color: var(--bg-light);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headline {
    font-size: clamp(1.2rem, 4.5vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.subheadline {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 40px;
    max-width: 650px;
    opacity: 0.9;
}

.hero-image-wrapper {
    position: relative;
    margin-bottom: 40px;
    max-width: 550px;
    width: 100%;
}

.hero-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background-color: rgba(255,255,255,0.1);
    min-height: 250px;
    object-fit: cover;
}

.security-seal {
    position: absolute;
    bottom: -20px;
    right: -15px;
    background: linear-gradient(135deg, var(--secondary-yellow), var(--secondary-yellow-dark));
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--bg-white);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover .security-seal {
    transform: rotate(0deg) scale(1.05);
}

/* ==========================================================================
   3. INITIAL PRICE BLOCK
   ========================================================================== */
.initial-price-block {
    padding: 20px 0 60px;
    background-color: var(--bg-light);
    margin-top: -60px;
    position: relative;
    z-index: 3;
}

.price-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 650px;
    margin: 0 auto;
    border: 4px solid var(--secondary-yellow);
    position: relative;
}

.price-info {
    margin-bottom: 20px;
}

.price-old {
    font-size: 1.5rem;
    color: var(--urgency-red);
    text-decoration: line-through;
    display: block;
    font-weight: 800;
}

.price-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-muted);
}

.price-current {
    font-size: clamp(3.5rem, 10vw, 4.5rem);
    font-weight: 900;
    color: var(--accent-green-dark);
    display: block;
    line-height: 1;
    text-shadow: 2px 2px 0px rgba(6, 214, 160, 0.2);
}

.price-description {
    font-size: 1.125rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.dynamic-viewers {
    background-color: #FFFBEB;
    color: #B45309;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-weight: 800;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px dashed #FCD34D;
}

.pulsing-dot {
    width: 12px;
    height: 12px;
    background-color: var(--urgency-red);
    border-radius: 50%;
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0.4; transform: scale(0.8); }
}

/* ==========================================================================
   4. COMO FUNCIONA
   ========================================================================== */
.section-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-blue);
    position: relative;
    display: block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--secondary-yellow);
    border-radius: 2px;
}

.how-it-works {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 40px 24px;
    text-align: center;
    position: relative;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-yellow), var(--secondary-yellow-dark));
    color: var(--primary-blue-dark);
    font-size: 1.75rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--bg-white);
}

.step-icon {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    background-color: transparent;
    object-fit: contain;
}

.step-title {
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: var(--primary-blue);
}

.step-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* ==========================================================================
   5. BENEFÍCIOS / CONTEÚDOS
   ========================================================================== */
.contents-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contents-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.content-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 4px solid transparent;
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary-blue);
}

.content-img {
    width: 100%;
    height: 260px;
    background-color: transparent;
    margin-bottom: 20px;
    object-fit: contain;
    transform: scale(1.1);
}

.content-title {
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.content-desc {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ==========================================================================
   6. BÔNUS EXCLUSIVOS
   ========================================================================== */
.bonus-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, var(--highlight-orange), #D9531E);
    color: var(--bg-white);
    text-align: center;
    position: relative;
}

.section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

.bonus-intro {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    margin-bottom: 50px;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
}

.bonus-tag {
    background-color: var(--secondary-yellow);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1rem;
    margin-bottom: 12px;
    display: inline-block;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
}

.bonus-card {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-seal {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
    color: var(--bg-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
}

.bonus-img {
    width: 100%;
    height: 280px;
    background-color: transparent;
    margin: 20px 0;
    object-fit: contain;
    transform: scale(1.1);
}

.bonus-title {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.bonus-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* ==========================================================================
   7. DEPOIMENTOS
   ========================================================================== */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    padding-left: 7.5%;
    padding-right: 7.5%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    flex: 0 0 85%;
    scroll-snap-align: center;
}

.testimonial-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.testimonial-img-wrapper {
    width: 100%;
    height: 350px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.testimonial-img-wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   8. OFERTAS
   ========================================================================== */
.offers-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.offers-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.offer-card {
    width: 100%;
    max-width: 450px;
    border-radius: var(--border-radius-lg);
    padding: 50px 30px;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border: 1px solid #E5E7EB;
    position: relative;
    transition: transform 0.3s ease;
}

.basic-offer {
    background-color: var(--bg-light);
}

.premium-offer {
    border: 4px solid var(--accent-green);
    background: linear-gradient(180deg, #ffffff 0%, #f0fffb 100%);
}

.featured-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-yellow), var(--secondary-yellow-dark));
    color: var(--primary-blue-dark);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.offer-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px dashed #E5E7EB;
}

.premium-offer .offer-header {
    border-bottom-color: rgba(6, 214, 160, 0.3);
}

.offer-name {
    font-size: 1.75rem;
    font-weight: 900;
    margin: 12px 0;
    line-height: 1.2;
}

.sub-name {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 700;
}

.offer-price {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 900;
    color: var(--accent-green-dark);
    line-height: 1;
}

.basic-offer .offer-price {
    color: var(--text-dark);
}

.offer-list {
    margin-bottom: 40px;
}

.offer-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.not-included {
    color: #9CA3AF !important;
    text-decoration: line-through;
}

/* ==========================================================================
   9. URGÊNCIA FINAL
   ========================================================================== */
.final-urgency {
    padding: 80px 0;
    background: var(--primary-blue);
    color: var(--bg-white);
    text-align: center;
}

.urgency-title {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.3;
}

.progress-container {
    max-width: 600px;
    margin: 0 auto 40px;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--urgency-red), #ff758f);
    border-radius: 50px;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.2) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    animation: move-stripes 1s linear infinite;
}

@keyframes move-stripes {
    0% { background-position: 0 0; }
    100% { background-position: 20px 0; }
}

.progress-text {
    font-weight: 800;
    font-size: 1.1rem;
}

/* ==========================================================================
   10. GARANTIA
   ========================================================================== */
.guarantee-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.guarantee-box {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 50px 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 3px solid #E5E7EB;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.guarantee-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 8px;
    background: linear-gradient(90deg, var(--secondary-yellow), var(--highlight-orange));
}

.guarantee-icon {
    color: var(--secondary-yellow-dark);
    margin-bottom: 24px;
}

.guarantee-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.guarantee-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* ==========================================================================
   11. FAQ
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #E5E7EB;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background-color: transparent;
    border: none;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-icon {
    font-size: 1.75rem;
    font-weight: 400;
    transition: transform 0.3s ease;
    color: var(--highlight-orange);
}

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

.faq-answer {
    padding: 0 24px;
    background-color: var(--bg-white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    /* Padding is now applied to child elements to avoid jumpiness with max-height transition */
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.site-footer {
    padding: 50px 0;
    text-align: center;
    background-color: var(--primary-blue-dark);
    color: #9CA3AF;
    font-size: 1rem;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--secondary-yellow);
}

.separator {
    margin: 0 12px;
}

/* ==========================================================================
   MEDIA QUERIES (DESKTOP)
   ========================================================================== */
/* ==========================================================================
   9. MODAL UPSELL
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.modal-content {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 30px 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    text-align: center;
    position: relative;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}
.modal-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.modal-close {
    position: absolute;
    top: 10px; right: 15px;
    background: none; border: none;
    font-size: 2rem; cursor: pointer; color: var(--text-muted);
}
.modal-title { font-size: 1.3rem; font-weight: 900; margin-bottom: 10px; }
.modal-subtitle { font-size: 1.1rem; color: var(--primary-blue); margin-bottom: 15px; }
.modal-desc { font-size: 1.1rem; margin-bottom: 30px; color: var(--text-dark); }
.modal-actions { display: flex; flex-direction: column; gap: 15px; }
.modal-actions .btn { padding: 15px; font-size: 1.1rem; }
.decline-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
}
.decline-link:hover {
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .mobile-break { display: none; }
    
    .steps-grid {
        flex-direction: row;
        align-items: stretch;
    }
    
    .step-card { flex: 1; }
    
    .contents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        justify-content: center;
        overflow-x: visible;
        padding-left: 0;
        padding-right: 0;
    }
    
    .testimonial-card {
        flex: 0 0 30%;
    }

    .offers-grid {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }

    .premium-offer {
        transform: scale(1.05);
        z-index: 2;
    }
    
    .premium-offer:hover {
        transform: scale(1.07);
    }

    .guarantee-box {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 40px;
        padding: 50px;
    }
    
    .guarantee-icon { margin-bottom: 0; flex-shrink: 0; }
}

@media (min-width: 1024px) {
    .contents-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
