/* ========================================
   DESIGN SYSTEM — Dinâmicas Terapêuticas
   Low Ticket • Mobile-First
   ======================================== */

:root {
    --primary: #1B3A5C;
    --primary-dark: #0F2137;
    --gold: #C9A84C;
    --gold-dark: #A07830;
    --green: #5A8F7B;
    --terracotta: #C0635A;
    --bg: #FAFAF6;
    --bg-alt: #F0EDF5;
    --text: #2D2D3A;
    --text-muted: #8A8A9A;
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-gold: 0 6px 28px rgba(201,168,76,0.35);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--primary);
    line-height: 1.2;
}

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

a { text-decoration: none; }

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 17px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover { box-shadow: 0 8px 36px rgba(201,168,76,0.5); }

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

.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-large { padding: 18px 40px; font-size: 18px; }

.btn-pulse { animation: pulse 4s infinite; }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.cta-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
}

.cta-sub-dark {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ========================================
   BADGES
   ======================================== */

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.badge-gold {
    background: rgba(201,168,76,0.12);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
}

.badge-green {
    background: rgba(90,143,123,0.12);
    color: var(--green);
    border: 1px solid rgba(90,143,123,0.3);
}

.section-sub {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* ========================================
   STICKY BAR
   ======================================== */

.sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--primary);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 44px;
}

.sticky-text {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

.timer {
    display: flex;
    align-items: center;
    gap: 4px;
}

.timer-block {
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 2px 8px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.timer-block span {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.timer-block small {
    color: rgba(255,255,255,0.6);
    font-size: 10px;
}

.timer-sep {
    color: rgba(255,255,255,0.4);
    font-weight: 700;
    font-size: 14px;
}

/* ========================================
   HERO
   ======================================== */

.hero {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    padding: 80px 0 40px;
    margin-top: 44px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-headline {
    color: var(--white);
    font-size: 34px;
    margin: 16px 0 20px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #ffffff 40%, rgba(201,168,76, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-headline em {
    color: var(--gold);
    font-style: normal;
    text-decoration: underline;
    text-decoration-color: rgba(201,168,76,0.4);
    text-underline-offset: 4px;
    -webkit-text-fill-color: var(--gold);
}

.hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 32px;
    display: inline-block;
    text-align: left;
    background: rgba(255,255,255,0.05);
    padding: 16px 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-bullets li {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    padding: 6px 0;
}

.social-proof-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.avatars-img {
    width: 100px;
    height: 36px;
    object-fit: cover;
    border-radius: 18px;
}

.social-proof-inline span {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 500;
}

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

.mockup-float {
    max-width: 340px;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px;
    margin-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.trust-bar span {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-weight: 500;
}

/* ========================================
   CREDIBILITY
   ======================================== */

.credibility {
    padding: 40px 0;
    background: var(--bg);
}

.cred-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.cred-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow);
}

.cred-icon { font-size: 28px; display: block; margin-bottom: 8px; }
.cred-card strong { font-size: 13px; color: var(--primary); display: block; margin-bottom: 4px; }
.cred-card p { font-size: 12px; color: var(--text-muted); }

/* ========================================
   PAIN SECTION
   ======================================== */

.pain {
    padding: 56px 0;
    background: var(--bg-alt);
    text-align: center;
}

.pain h2 {
    font-size: 26px;
    margin-bottom: 28px;
}

.pain-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 28px;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    padding: 14px 16px;
    border-radius: var(--radius);
    border-left: 3px solid var(--terracotta);
    margin-bottom: 10px;
}

.pain-x {
    color: var(--terracotta);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.pain-item p {
    font-size: 15px;
    line-height: 1.45;
}

.pain-item em { color: var(--primary); font-weight: 500; }

.pain-close {
    margin-bottom: 24px;
}

.pain-close p {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 4px;
}

/* ========================================
   PRODUCT SECTION
   ======================================== */

.product {
    padding: 56px 0;
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.product-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.product-text h2 {
    font-size: 28px;
    margin: 12px 0;
}

.product-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.module-list {
    list-style: none;
}

.module-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mod-icon {
    font-size: 16px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.product-detail {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
    padding: 12px;
    background: var(--bg);
    border-radius: 8px;
}

/* ========================================
   BONUS SECTION
   ======================================== */

.bonus {
    padding: 56px 0;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.bonus h2 {
    color: var(--white);
    font-size: 26px;
    text-align: center;
    margin-bottom: 28px;
}

.bonus-list {
    max-width: 600px;
    margin: 0 auto;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    margin-bottom: 8px;
    border: 1px solid rgba(255,255,255,0.08);
}

.bonus-tag {
    background: var(--gold);
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.bonus-content {
    flex: 1;
    min-width: 0;
}

.bonus-content strong {
    font-size: 14px;
    display: block;
    line-height: 1.3;
}

.bonus-pages {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.bonus-price {
    text-align: right;
    flex-shrink: 0;
}

.bonus-price s {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    display: block;
}

.free {
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
}

.bonus-total {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: var(--radius);
    font-size: 15px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
    padding: 56px 0;
    background: var(--bg-alt);
    text-align: center;
}

.testimonials h2 {
    font-size: 26px;
    margin-bottom: 8px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    text-align: left;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--gold);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-alt);
    flex-shrink: 0;
    border: 2px solid var(--gold);
    background-size: cover;
    background-position: center;
}

.avatar-1 { background-image: url('img/avatares.png'); background-position: 0% center; background-size: 300%; }
.avatar-2 { background-image: url('img/avatares.png'); background-position: 50% center; background-size: 300%; }
.avatar-3 { background-image: url('img/avatares.png'); background-position: 100% center; background-size: 300%; }

.testimonial-header strong {
    display: block;
    font-size: 14px;
    color: var(--primary);
}

.testimonial-stars { font-size: 12px; }

.testimonial-info {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
    font-style: italic;
}

/* ========================================
   PRICING
   ======================================== */

.pricing {
    padding: 56px 0;
    background: var(--white);
    text-align: center;
}

.pricing h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.pricing-timer {
    font-size: 16px;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 32px;
}

.timer-inline {
    font-variant-numeric: tabular-nums;
    font-weight: 800;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
}

.pricing-basic {
    background: #F5F5F3;
    border: 1px solid #E0E0DD;
}

.pricing-complete {
    background: var(--white);
    border: 2px solid var(--gold);
    box-shadow: 0 8px 40px rgba(201,168,76,0.2);
    position: relative;
}

.pricing-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.pricing-badge-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pricing-old {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-old s { color: var(--terracotta); }

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin: 8px 0;
}

.pricing-currency {
    font-size: 20px;
    font-weight: 700;
    margin-top: 8px;
    color: var(--primary);
}

.pricing-value {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
}

.pricing-cents {
    font-size: 20px;
    font-weight: 700;
    margin-top: 8px;
    color: var(--primary);
}

.pricing-type {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 16px;
}

.pricing-savings {
    background: rgba(90,143,123,0.1);
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.pricing-features li {
    padding: 6px 0;
    font-size: 14px;
    padding-left: 24px;
    position: relative;
}

.pricing-features li.yes::before {
    content: '✅';
    position: absolute;
    left: 0;
    font-size: 12px;
}

.pricing-features li.no {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.pricing-features li.no::before {
    content: '❌';
    position: absolute;
    left: 0;
    font-size: 12px;
}

.bonus-highlight {
    color: var(--gold-dark) !important;
    font-weight: 600;
}

/* ========================================
   GUARANTEE + AUTHORITY
   ======================================== */

.guarantee-authority {
    padding: 56px 0;
    background: var(--bg);
}

.ga-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.guarantee-block {
    text-align: center;
    padding: 32px 24px;
    background: #F0FFF4;
    border: 2px solid var(--green);
    border-radius: var(--radius-lg);
}

.guarantee-seal {
    width: 120px;
    margin-bottom: 16px;
}

.guarantee-block h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.guarantee-block p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 16px;
}

.guarantee-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--green);
    font-weight: 600;
}

.authority-block {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.authority-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}

.authority-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 4px;
}

.authority-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--primary);
    display: block;
}

.authority-title {
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.authority-stats {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ========================================
   FAQ
   ======================================== */

.faq {
    padding: 56px 0;
    background: var(--white);
}

.faq h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 28px;
}

.faq-list {
    max-width: 600px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    gap: 12px;
}

.faq-toggle {
    font-size: 20px;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 16px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

/* ========================================
   FINAL CTA
   ======================================== */

.final-cta {
    padding: 64px 0;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 16px;
}

.final-text {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.final-proof {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    margin-bottom: 24px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: #0A1628;
    padding: 24px 0;
    text-align: center;
}

.footer p {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 4px;
}

/* ========================================
   ANIMATIONS (scroll reveal)
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* Fallback: ensure elements become visible after animation delay */
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
}

/* ========================================
   RESPONSIVE — DESKTOP
   ======================================== */

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 55% 45%;
    }

    .hero-text h1 { font-size: 42px; }

    .cred-grid { grid-template-columns: repeat(4, 1fr); }

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

    .testimonial-grid { grid-template-columns: repeat(3, 1fr); max-width: 100%; }

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

    .ga-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }

    .guarantee-block { display: flex; flex-direction: column; justify-content: center; }

    .trust-bar { gap: 32px; }

    .sticky-text { font-size: 14px; }
}

@media (min-width: 1024px) {
    .container { max-width: 1040px; }
    .hero-text h1 { font-size: 48px; }
    .mockup-float { max-width: 420px; }
}

/* ========================================
   MOBILE ADJUSTMENTS
   ======================================== */

@media (max-width: 767px) {
    .sticky-text { font-size: 11px; }
    .sticky-bar { gap: 8px; }
    
    .hero { padding: 80px 0 40px; }
    .hero-text .hero-headline { font-size: 28px; }
    .hero-sub { font-size: 15px; padding: 0 10px; }
    .mockup-float { max-width: 280px; }
    
    .trust-bar span { font-size: 10px; }
    
    .pain h2 { font-size: 22px; }
    
    .bonus-item { flex-wrap: wrap; gap: 8px; }
    .bonus-price { width: 100%; text-align: left; display: flex; gap: 8px; align-items: center; }
    
    .pricing-value { font-size: 48px; }
    
    .authority-block { flex-direction: column; text-align: center; }
    .authority-stats { justify-content: center; flex-wrap: wrap; }
}
/* ========================================
   PROMO BADGE
   ======================================== */

.promo-badge {
    background: linear-gradient(135deg, #FFF9EB 0%, #FFF3D6 100%);
    border: 1px solid rgba(201,168,76, 0.3);
    color: var(--primary);
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.15);
    display: inline-block;
}

.promo-badge strong {
    color: var(--terracotta);
    font-weight: 800;
    background: rgba(192, 99, 90, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
}

/* ========================================
   URGENCY PULSE
   ======================================== */

.urgency-pulse {
    animation: urgency-pulse 1.5s infinite;
}

@keyframes urgency-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; color: var(--terracotta); }
    100% { transform: scale(1); opacity: 1; }
}

/* ========================================
   MODALS / POPUPS
   ======================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none; /* JS toggles flex */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--white);
    max-width: 500px;
    width: 100%;
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-badge {
    display: inline-block;
    background: var(--terracotta);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.modal-content h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.modal-content p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.5;
}

.modal-prices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    background: #f9f9f9;
    padding: 16px;
    border-radius: var(--radius);
}

.modal-price-card {
    display: flex;
    flex-direction: column;
}

.modal-price-card small {
    font-size: 11px;
    color: var(--text-muted);
}

.modal-price-card span {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted);
}

.modal-price-card.highlight span {
    font-size: 28px;
    color: var(--green);
}

.modal-price-arrow {
    font-size: 24px;
    color: var(--gold);
}

.modal-price-highlight {
    font-size: 48px;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 24px;
}

.modal-timer {
    font-weight: 800;
    color: var(--terracotta);
    margin-bottom: 12px;
    font-size: 14px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-decline {
    font-size: 13px;
    color: var(--text-muted);
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    padding: 8px;
}

.btn-close-modal {
    font-size: 13px;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 480px) {
    .modal-content { padding: 24px 16px; }
    .modal-content h2 { font-size: 20px; }
    .modal-price-highlight { font-size: 36px; }
}

/* ========================================
   SALES NOTIFICATIONS (SOCIAL PROOF)
   ======================================== */

.sales-notifications-container {
    position: fixed;
    top: 65px; /* Abaixo da sticky bar */
    right: 20px;
    z-index: 9998;
    pointer-events: none;
}

.notification-card {
    background: var(--white);
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    border-left: 3px solid var(--gold);
    min-width: 240px;
    width: fit-content;
    transform: translateX(130%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.notification-card.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-card.hide {
    transform: translateY(-20px);
    opacity: 0;
}

.notif-avatar {
    width: 28px;
    height: 28px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
}

.notif-content {
    display: flex;
    flex-direction: column;
}

.notif-content strong {
    font-size: 12px;
    color: var(--text);
}

.notif-content span {
    font-size: 10px;
    color: var(--text-muted);
}

.notif-check {
    margin-left: auto;
    color: var(--green);
    font-size: 12px;
}

@media (max-width: 767px) {
    .sales-notifications-container {
        top: 60px;
        right: 10px;
    }
    .notification-card {
        min-width: 200px;
        padding: 6px 10px;
        transform: translateX(110%);
    }
}

