/* =========================================
   ASB NA PRÁTICA — Página de Vendas
   Design: Mobile-first, altamente conversivo
   ========================================= */

:root {
    --primary: #1A6B4A;
    --primary-dark: #0f4a32;
    --primary-light: #2a8a61;
    --accent: #F4B942;
    --accent-dark: #d9a032;
    --danger: #e74c3c;
    --danger-light: #fdf0ef;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --text: #1f2937;
    --text-light: #6b7280;
    --font: 'Inter', sans-serif;
    --radius: 16px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.20);
}

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

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

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== URGENCY BAR ========== */
.urgency-bar {
    background: linear-gradient(135deg, var(--danger) 0%, #c0392b 100%);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 1.5s infinite;
    flex-shrink: 0;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(160deg, #0d3d27 0%, var(--primary) 50%, #1e7a52 100%);
    color: white;
    text-align: center;
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(244,185,66,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.badge-top {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.headline {
    font-size: clamp(2rem, 7vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--accent);
    position: relative;
}

.subheadline {
    font-size: clamp(1rem, 3.5vw, 1.25rem);
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 36px;
    font-weight: 400;
    line-height: 1.7;
}

.subheadline strong { color: var(--accent); font-weight: 700; }

/* ---- eBook Mockup ---- */
.hero-image-wrap {
    display: flex;
    justify-content: center;
    margin: 0 0 40px;
}

.ebook-mockup {
    position: relative;
    width: 200px;
}

.mockup-inner {
    perspective: 800px;
}

.mockup-cover {
    background: linear-gradient(145deg, #0f4a32 0%, #1A6B4A 40%, #22c55e 100%);
    border-radius: 8px 16px 16px 8px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 
        -6px 6px 0 rgba(0,0,0,0.3),
        4px 0 20px rgba(0,0,0,0.4),
        inset 3px 0 0 rgba(255,255,255,0.1);
    transform: rotateY(-10deg);
    border-left: 6px solid rgba(0,0,0,0.3);
    animation: floatBook 3s ease-in-out infinite;
}

@keyframes floatBook {
    0%, 100% { transform: rotateY(-10deg) translateY(0); }
    50% { transform: rotateY(-10deg) translateY(-8px); }
}

.cover-badge {
    display: inline-block;
    background: var(--accent);
    color: #1a1a1a;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.cover-title {
    font-size: 1.7rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 4px;
}

.cover-title span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    display: block;
}

.cover-sub {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.7);
    margin: 8px 0 12px;
    line-height: 1.4;
}

.cover-icons {
    font-size: 1.2rem;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.mockup-shadow {
    width: 160px;
    height: 12px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.4) 0%, transparent 70%);
    margin: 8px auto 0;
    border-radius: 50%;
}

/* ---- CTA Buttons ---- */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, #e8a830 100%);
    color: #1a1a1a;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    font-weight: 800;
    padding: 18px 36px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 30px rgba(244,185,66,0.5);
    max-width: 100%;
    text-align: center;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(244,185,66,0.6);
}

.btn-cta:active { transform: scale(0.98); }

.btn-hero { margin-bottom: 16px; }

.pulse-btn {
    animation: pulseCta 2.5s ease-in-out infinite;
}

@keyframes pulseCta {
    0%, 100% { box-shadow: 0 6px 30px rgba(244,185,66,0.5); }
    50% { box-shadow: 0 6px 50px rgba(244,185,66,0.85); }
}

.hero-note {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    margin-top: 8px;
}

/* ========== SECTION COMMONS ========== */
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: rgba(26,107,74,0.1);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

.section-desc strong { color: var(--primary); }

/* ========== PAIN SECTION ========== */
.pain-section {
    background: #fdf9f0;
    padding: 72px 0;
    text-align: center;
    border-top: 4px solid var(--accent);
}

.highlight-red { color: var(--danger); }

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin: 36px 0;
    text-align: left;
}

.pain-card {
    background: white;
    border: 1.5px solid var(--gray-200);
    border-left: 4px solid var(--danger);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.pain-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.pain-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
}

.pain-card p {
    font-size: 0.92rem;
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.55;
}

.pain-conclusion {
    background: linear-gradient(135deg, #fff8f8, #fdf0ef);
    border: 2px solid var(--danger);
    border-radius: var(--radius);
    padding: 24px 28px;
    max-width: 600px;
    margin: 0 auto;
}

.pain-conclusion p {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.65;
}

.pain-conclusion strong { color: var(--gray-900); }

/* ========== SOLUTION SECTION ========== */
.solution-section {
    padding: 72px 0;
    text-align: center;
    background: white;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
}

.feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    padding: 20px;
    border: 1.5px solid var(--gray-200);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 16px rgba(26,107,74,0.08);
}

.feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.feature-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.55;
}

/* ========== BENEFITS ========== */
.benefits-section {
    padding: 72px 0;
    background: linear-gradient(160deg, #0f3d28, var(--primary));
    text-align: center;
}

.benefits-section .section-label {
    background: rgba(255,255,255,0.15);
    color: white;
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 36px;
}

.benefit-card {
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(4px);
}

.benefit-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 14px;
    display: block;
}

.benefit-card h3 {
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-card p {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ========== INCLUDED ========== */
.included-section {
    padding: 72px 0;
    background: var(--gray-50);
    text-align: center;
}

.included-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 640px;
    margin: 36px auto;
    text-align: left;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.included-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(26,107,74,0.1);
}

.check-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.included-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.included-item span {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* ---- Bônus ---- */
.bonus-box {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 2px dashed var(--accent-dark);
    border-radius: var(--radius);
    padding: 28px 24px;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.bonus-badge {
    display: inline-block;
    background: var(--accent);
    color: #1a1a1a;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.bonus-box h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.bonus-box p {
    font-size: 0.92rem;
    color: var(--gray-600);
    margin-bottom: 14px;
    line-height: 1.6;
}

.bonus-value {
    font-size: 0.85rem;
    color: var(--gray-700);
    font-weight: 500;
}

.bonus-value span {
    font-weight: 800;
    color: var(--primary);
    font-size: 1rem;
}

/* ========== TRANSFORMATION ========== */
.transformation-section {
    padding: 72px 0;
    background: white;
    text-align: center;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    max-width: 760px;
    margin: 36px auto;
    align-items: center;
}

.col-label {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.before-label { color: var(--danger); }
.after-label { color: var(--primary); }

.transform-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.transform-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-weight: 500;
}

.before-list li {
    background: #fdf0ef;
    color: #7f1d1d;
    border-left: 3px solid var(--danger);
}

.before-list li i {
    color: var(--danger);
    flex-shrink: 0;
    font-size: 0.75rem;
}

.after-list li {
    background: #f0fdf4;
    color: #14532d;
    border-left: 3px solid var(--primary);
}

.after-list li i {
    color: var(--primary);
    flex-shrink: 0;
    font-size: 0.75rem;
}

.arrow-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon {
    font-size: 2.5rem;
    color: var(--accent-dark);
    font-weight: 900;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

/* ========== PROOF / TESTIMONIALS ========== */
.proof-section {
    padding: 72px 0;
    background: var(--gray-50);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.testimonial-card {
    background: white;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.featured-testimonial {
    border-color: var(--accent);
    background: linear-gradient(135deg, #fffbeb, white);
    box-shadow: 0 6px 24px rgba(244,185,66,0.2);
}

.stars {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.65;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-card p strong { color: var(--gray-900); font-style: normal; }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-900);
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ========== OBJECTIONS / FAQ ========== */
.objections-section {
    padding: 72px 0;
    background: white;
    text-align: center;
}

.faq-list {
    max-width: 640px;
    margin: 36px auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.faq-item {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.2s;
    cursor: pointer;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--gray-50);
    gap: 12px;
}

.faq-item.open .faq-question { background: #f0fdf4; }

.faq-question span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800, #1f2937);
    line-height: 1.4;
}

.faq-arrow {
    color: var(--primary);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.65;
    border-top: 1px solid var(--gray-200);
}

/* ========== OFFER / PRICE ========== */
.offer-section {
    padding: 72px 0;
    background: linear-gradient(160deg, #0d3d27, var(--primary-dark));
    text-align: center;
}

.offer-section .section-label {
    background: rgba(244,185,66,0.2);
    color: var(--accent);
}

.offer-title { color: white; }
.highlight-gold { color: var(--accent); }

.offer-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    max-width: 680px;
    margin: 36px auto;
    box-shadow: var(--shadow-xl);
}

.offer-badge-top {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 12px;
    text-align: center;
}

.offer-content {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.offer-includes {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offer-includes p {
    font-size: 0.92rem;
    color: var(--gray-700);
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-100);
    font-weight: 500;
}

.offer-includes p:last-child { border-bottom: none; }

.offer-price-box {
    text-align: center;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 2px dashed var(--gray-200);
}

.price-from {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.strikethrough {
    text-decoration: line-through;
    font-weight: 600;
    color: var(--danger);
}

.price-by {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.price-main {
    font-size: clamp(2.8rem, 10vw, 4rem);
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}

.price-cents {
    font-size: 1.6rem;
    font-weight: 700;
}

.price-note {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-offer {
    display: flex;
    width: 100%;
    margin-bottom: 16px;
    font-size: 1rem;
    padding: 18px 24px;
}

.payment-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.payment-badges span {
    font-size: 0.78rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
    background: white;
    border: 1px solid var(--gray-200);
    padding: 5px 12px;
    border-radius: 100px;
}

.guarantee-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: left;
}

.guarantee-icon {
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.guarantee-box strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.guarantee-box p {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ---- Timer ---- */
.urgency-timer {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.urgency-timer p {
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    margin-bottom: 12px;
}

.urgency-timer p strong { color: white; }

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.timer-block {
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    min-width: 72px;
    text-align: center;
    backdrop-filter: blur(4px);
}

.timer-block span {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.timer-block small {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.timer-sep {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 14px;
}

/* ========== CLOSING ========== */
.closing-section {
    padding: 72px 0;
    background: var(--gray-50);
    text-align: center;
}

.closing-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 32px;
}

.choices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 660px;
    margin: 0 auto 40px;
}

.choice-card {
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s;
}

.choice-card:hover { transform: translateY(-4px); }

.choice-no {
    background: #fff5f5;
    border: 2px solid #fecaca;
}

.choice-yes {
    background: #f0fdf4;
    border: 2px solid #86efac;
}

.choice-icon { font-size: 2.5rem; margin-bottom: 14px; display: block; }

.choice-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.choice-no h3 { color: var(--danger); }
.choice-yes h3 { color: var(--primary); }

.choice-card p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--gray-600);
}

.final-cta { max-width: 480px; margin: 0 auto; }

.final-text {
    font-size: 1.05rem;
    color: var(--gray-700);
    font-weight: 600;
    margin-bottom: 24px;
}

.btn-final {
    display: flex;
    width: 100%;
    margin-bottom: 12px;
}

.final-note {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--gray-900);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
}

.footer-logo span { color: var(--accent); }

.footer p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
}

.footer-disclaimer {
    max-width: 500px;
    margin: 12px auto 6px;
    line-height: 1.5;
}

.footer-refs { font-size: 0.75rem !important; }

/* ========== FLOAT CTA ========== */
.float-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, #e8a830 100%);
    color: #1a1a1a;
    font-size: 0.88rem;
    font-weight: 800;
    padding: 14px 22px;
    border-radius: 100px;
    box-shadow: 0 6px 30px rgba(244,185,66,0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 990;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(100px);
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

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

.float-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 40px rgba(244,185,66,0.7);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 640px) {
    .transformation-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .arrow-col { display: none; }

    .before-col, .after-col {
        padding: 20px;
        background: var(--gray-50);
        border-radius: var(--radius);
    }

    .offer-content { padding: 24px 16px; }

    .timer-block { min-width: 60px; padding: 10px 12px; }
    .timer-block span { font-size: 1.6rem; }
    .timer-sep { font-size: 1.4rem; }

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

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

    .benefits-grid { grid-template-columns: repeat(2, 1fr); }

    .float-cta { 
        bottom: 12px; 
        right: 12px; 
        font-size: 0.78rem;
        padding: 12px 16px;
    }

    .urgency-bar { font-size: 0.75rem; }
}

@media (max-width: 380px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .headline { font-size: 1.75rem; }
}

/* ========== ANIMATIONS ========== */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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