/* ===== PREMIUM UI SYSTEM - Alquimistas Mágicos ===== */
/* Sistema de design premium para experiência imersiva */

/* ===== VARIÁVEIS GLOBAIS ===== */
:root {
    /* Cores principais */
    --bg-primary: #0a0a12;
    --bg-secondary: #0f0f1a;
    --bg-card: #151522;
    --bg-elevated: #1a1a2e;
    
    /* Cores de destaque */
    --gold-primary: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8941f;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --gold-subtle: rgba(212, 175, 55, 0.1);
    
    /* Cores de estado */
    --success: #4ade80;
    --success-glow: rgba(74, 222, 128, 0.3);
    --warning: #fbbf24;
    --error: #f87171;
    
    /* Texto */
    --text-primary: #ffffff;
    --text-secondary: #f0f0f0;
    --text-muted: #a0a0b0;
    --text-subtle: #6b6b7b;
    
    /* Bordas */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-normal: rgba(255, 255, 255, 0.12);
    --border-gold: rgba(212, 175, 55, 0.3);
    
    /* Gradientes */
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    --gradient-gold-reverse: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #f4d03f 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.25);
    --shadow-gold-intense: 0 12px 40px rgba(212, 175, 55, 0.4);
    
    /* Blur */
    --blur-sm: blur(8px);
    --blur-md: blur(16px);
    --blur-lg: blur(24px);
    
    /* Transições */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Duração */
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
    
    /* Tipografia */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ===== GLASSMORPHISM ===== */
.glass {
    background: rgba(21, 21, 34, 0.7);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border: 1px solid var(--border-subtle);
}

.glass-gold {
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border: 1px solid var(--border-gold);
}

/* ===== ANIMAÇÕES PREMIUM ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes fadeInScale {
    from { 
        opacity: 0; 
        transform: scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--gold-glow); }
    50% { box-shadow: 0 0 40px var(--gold-glow), 0 0 60px rgba(212, 175, 55, 0.2); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes scaleIn {
    from { 
        opacity: 0; 
        transform: scale(0.8); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

@keyframes checkmark {
    0% { 
        stroke-dashoffset: 100; 
    }
    100% { 
        stroke-dashoffset: 0; 
    }
}

/* ===== BOTÕES PREMIUM ===== */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-smooth);
    box-shadow: var(--shadow-gold);
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left var(--duration-slow);
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-gold-intense);
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:active {
    transform: translateY(-1px) scale(1.01);
}

.btn-premium-outline {
    padding: 14px 36px;
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.btn-premium-outline:hover {
    background: var(--gold-subtle);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-smooth);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.btn-whatsapp svg {
    width: 22px;
    height: 22px;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #0F7A6E 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:active {
    transform: translateY(-1px);
}

/* ===== CARDS PREMIUM ===== */
.card-premium {
    background: var(--bg-card);
    border: 1px solid var(--border-normal);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.card-premium:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-gold);
}

.card-premium-glow {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(21, 21, 34, 0.95) 100%);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.card-premium-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(21, 21, 34, 0.95);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--border-normal);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    pointer-events: auto;
    animation: slideInRight var(--duration-normal) var(--ease-smooth);
    max-width: 400px;
}

.toast-success {
    border-left: 4px solid var(--success);
}

.toast-success .toast-icon {
    color: var(--success);
}

.toast-warning {
    border-left: 4px solid var(--warning);
}

.toast-error {
    border-left: 4px solid var(--error);
}

.toast-info {
    border-left: 4px solid var(--gold-primary);
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.toast-message {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: color var(--duration-fast);
}

.toast-close:hover {
    color: var(--text-primary);
}

.toast-exit {
    animation: fadeOutRight var(--duration-normal) var(--ease-smooth) forwards;
}

@keyframes fadeOutRight {
    to {
        opacity: 0;
        transform: translateX(30px);
    }
}

/* ===== LOADING STATES ===== */
.skeleton {
    background: linear-gradient(90deg, 
        var(--bg-card) 25%, 
        var(--bg-elevated) 50%, 
        var(--bg-card) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-normal);
    border-top-color: var(--gold-primary);
    border-radius: 50%;
    animation: rotate 0.8s linear infinite;
}

.spinner-sm {
    width: 20px;
    height: 20px;
    border-width: 2px;
}

/* ===== BADGES ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.badge-gold {
    background: var(--gold-subtle);
    color: var(--gold-primary);
    border: 1px solid var(--border-gold);
}

.badge-success {
    background: rgba(74, 222, 128, 0.1);
    color: var(--success);
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.badge-premium {
    background: var(--gradient-gold);
    color: var(--bg-primary);
}

/* ===== PROGRESS BAR ===== */
.progress-premium {
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.progress-premium-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    transition: width var(--duration-slow) var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.progress-premium-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-smooth);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== TIPOGRAFIA PREMIUM ===== */
.heading-xl {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-primary);
}

.heading-lg {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

.heading-md {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: 0 0 20px var(--gold-glow);
}

/* ===== GARANTIA VISUAL ===== */
.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: rgba(74, 222, 128, 0.08);
    border: 2px solid rgba(74, 222, 128, 0.3);
    border-radius: var(--radius-lg);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.guarantee-text h4 {
    color: var(--success);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

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

/* ===== TRUST BADGES ===== */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-badge svg {
    color: var(--gold-primary);
}

/* ===== DEPOIMENTOS ===== */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-normal);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 4rem;
    font-family: var(--font-display);
    color: var(--gold-primary);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    text-align: center;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-primary);
}

.testimonial-info h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-stars {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-left: auto;
}

/* ===== COUNTDOWN TIMER ===== */
.countdown {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.countdown-item {
    text-align: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    min-width: 80px;
}

.countdown-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .toast-container {
        top: auto;
        bottom: 24px;
        left: 16px;
        right: 16px;
    }
    
    .toast {
        max-width: 100%;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .countdown-item {
        padding: 12px 14px;
        min-width: 60px;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== HERO ELEMENTS ===== */
.hero-badge {
    display: inline-block;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ===== HEADING & SECTION ===== */
.heading-lg {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.03) 50%, transparent 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 5rem;
    font-family: var(--font-display);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    pointer-events: none;
}

.testimonial-text {
    position: relative;
    z-index: 1;
}

/* ===== URGENCY BANNER ===== */
.urgency-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.2), rgba(255, 107, 107, 0.1));
    border: 1px solid rgba(220, 53, 69, 0.4);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}

.urgency-icon {
    font-size: 1.2rem;
    animation: float 2s ease-in-out infinite;
}

.urgency-banner span {
    color: #ff6b6b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* ===== OFFER PRICE ===== */
.price-container {
    margin-bottom: 40px;
}

.cents {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-installments {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== PAYMENT BADGES ===== */
.payment-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.payment-badges img {
    height: 30px;
    opacity: 0.7;
    transition: opacity var(--duration-normal) ease;
}

.payment-badges img:hover {
    opacity: 1;
}

.payment-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: rgba(15, 15, 26, 0.5);
}

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

.faq-item {
    background: rgba(21, 21, 34, 0.6);
    border: 1px solid var(--border-normal);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all var(--duration-normal) ease;
}

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

.faq-item.open {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 24px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--duration-normal) ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-item.open .faq-question {
    background: rgba(212, 175, 55, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: transform var(--duration-normal) ease;
    font-weight: 300;
}

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

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

.faq-answer-content {
    padding: 18px;
    padding-top: 10px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-answer-content strong {
    color: var(--gold-primary);
}

/* ===== SUPPORT CTA ===== */
.support-cta {
    text-align: center;
    margin-top: 60px;
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(21, 21, 34, 0.9) 0%, rgba(30, 30, 45, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.support-cta h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 12px;
}

.support-cta p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

/* ===== FOOTER ===== */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--duration-normal) ease;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-copy {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.footer-legal {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== MODAL STYLES ===== */
.modal-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.modal-success {
    text-align: center;
    padding: 20px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.modal-success h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.modal-success p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.success-note {
    color: var(--text-muted) !important;
    font-size: 0.9rem !important;
    font-style: italic;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ===== EXTRA RESPONSIVE ===== */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 28px 24px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .testimonial-stars {
        margin-left: 0;
        width: 100%;
        margin-top: 12px;
    }
    
    .footer-links {
        gap: 16px;
        flex-direction: column;
    }
    
    .faq-question {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer-content {
        padding: 16px;
        padding-top: 8px;
    }
    
    .support-cta {
        padding: 36px 24px;
        margin-top: 50px;
    }
}

/* Tablets pequenos e celulares grandes */
@media (max-width: 600px) {
    .countdown {
        gap: 6px;
    }
    
    .countdown-item {
        padding: 10px 12px;
        min-width: 55px;
    }
    
    .countdown-value {
        font-size: 1.3rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .testimonial-card::before {
        font-size: 4rem;
        top: 16px;
        left: 20px;
    }
    
    .guarantee-badge {
        padding: 16px 20px;
        gap: 14px;
    }
    
    .guarantee-icon {
        font-size: 1.8rem;
    }
    
    .guarantee-text h4 {
        font-size: 1rem;
    }
    
    .guarantee-text p {
        font-size: 0.85rem;
    }
}

/* Dispositivos muito pequenos */
@media (max-width: 360px) {
    .toast {
        padding: 14px 16px;
        font-size: 0.85rem;
    }
    
    .countdown-item {
        padding: 8px 10px;
        min-width: 50px;
    }
    
    .countdown-value {
        font-size: 1.2rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .faq-answer-content {
        padding: 14px;
        padding-top: 6px;
        font-size: 0.85rem;
    }
    
    .faq-icon {
        font-size: 1.3rem;
    }
}
