/* BLACK EDITION PREMIUM VIBRANTE - Clube Proibido */

/* ========== VARIÁVEIS E CONFIGURAÇÕES ========== */
:root {
    /* Paleta Premium */
    --preto-grafite: #0A0A0A;
    --preto-base: #1C1C1C;
    --cinza-chumbo: #2A2A2A;
    --branco-puro: #FFFFFF;
    --vermelho-neon: #FF0000;
    --dourado-metalico: linear-gradient(135deg, #FFD700, #FFA500);
    --dourado-1: #FFD700;
    --dourado-2: #FFA500;
    --whatsapp-verde: #25D366;
    
    /* Tipografia */
    --font-title: 'Oswald', 'Anton', sans-serif;
    --font-body: 'Inter', 'Roboto', sans-serif;
    
    /* Animações */
    --transition-fast: 200ms ease;
    --transition-medium: 400ms ease;
    --transition-slow: 600ms ease;
}

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

body {
    font-family: var(--font-body);
    background: var(--preto-grafite);
    color: var(--branco-puro);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ========== STICKY BAR (TOPO FIXO) ========== */
.sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--preto-base), var(--cinza-chumbo));
    border-bottom: 2px solid var(--dourado-1);
    padding: 12px 20px;
    z-index: 9999;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.3);
}

.sticky-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.sticky-bonus {
    color: var(--dourado-1);
    font-weight: 700;
    animation: fadeInDown 0.5s ease;
}

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

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 100vh;
    background: var(--preto-grafite);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Linha dourada animada */
.golden-line-animation {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dourado-1), var(--dourado-2), transparent);
    animation: goldSweep 15s linear infinite;
}

@keyframes goldSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-image {
    margin-bottom: 40px;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(255, 0, 0, 0.4),
        0 0 100px rgba(255, 0, 0, 0.2);
    filter: contrast(1.1) saturate(1.2);
    border: 2px solid rgba(255, 0, 0, 0.3);
}

.premium-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 72px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: 40px;
    color: var(--vermelho-neon);
    font-weight: 700;
    margin-bottom: 40px;
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 0, 0, 0.8),
                     0 0 40px rgba(255, 0, 0, 0.6),
                     0 0 60px rgba(255, 0, 0, 0.4);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 0, 0, 1),
                     0 0 50px rgba(255, 0, 0, 0.8),
                     0 0 70px rgba(255, 0, 0, 0.6);
    }
}

/* ========== CTA BUTTON PREMIUM ========== */
.cta-button {
    background: linear-gradient(135deg, var(--vermelho-neon), #CC0000);
    color: var(--branco-puro);
    border: 3px solid var(--dourado-1);
    padding: 25px 50px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.5),
                0 0 60px rgba(255, 215, 0, 0.3);
    transition: all var(--transition-fast);
}

.premium-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    animation: ctaShine 3s linear infinite;
}

@keyframes ctaShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-button:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.7),
                0 0 80px rgba(255, 215, 0, 0.5);
}

/* ========== MICRO BADGES ========== */
.micro-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.micro-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.micro-badges i {
    color: var(--dourado-1);
}

/* ========== PAIN SECTION ========== */
.pain-section {
    background: var(--cinza-chumbo);
    padding: 80px 0;
}

.pain-image {
    margin-bottom: 40px;
}

.pain-image img {
    width: 100%;
    max-width: 700px;
    border-radius: 15px;
    filter: grayscale(90%) contrast(1.2) brightness(0.8);
    opacity: 0.85;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 100px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pain-bullets {
    max-width: 700px;
    margin: 0 auto;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 18px;
    opacity: 0;
    animation: fadeInLeft 0.6s ease forwards;
}

.bullet-item:nth-child(1) { animation-delay: 0.2s; }
.bullet-item:nth-child(2) { animation-delay: 0.4s; }
.bullet-item:nth-child(3) { animation-delay: 0.6s; }

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

.bullet-dot {
    width: 10px;
    height: 10px;
    background: var(--vermelho-neon);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--vermelho-neon);
}

.bullet-item.emphasis {
    color: var(--vermelho-neon);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}

/* ========== TOGGLE CONTAINER ========== */
.toggle-container {
    margin-top: 40px;
    text-align: center;
}

.toggle-button {
    background: transparent;
    color: var(--dourado-1);
    border: 2px solid var(--dourado-1);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.toggle-button:hover {
    background: var(--dourado-1);
    color: var(--preto-grafite);
}

.toggle-content {
    max-width: 600px;
    margin: 20px auto 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    display: none;
}

.toggle-content.show {
    display: block;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* ========== SECTION TITLE METALLIC FIRE ========== */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.fire-3d-container {
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    animation: fireFloat 3s ease-in-out infinite;
}

@keyframes fireFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.fire-3d-metallic {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fire-icon {
    font-size: 80px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, 
        #FF0000 0%, 
        #FF3333 20%, 
        #CC0000 40%, 
        #990000 60%, 
        #FF6666 80%, 
        #FF0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: 
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8))
        drop-shadow(0 0 20px rgba(255, 0, 0, 0.8))
        drop-shadow(0 0 40px rgba(255, 0, 0, 0.6));
    animation: fireMetallicShine 2s linear infinite;
}

@keyframes fireMetallicShine {
    0%, 100% { 
        filter: 
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8))
            drop-shadow(0 0 20px rgba(255, 0, 0, 0.8))
            drop-shadow(0 0 40px rgba(255, 0, 0, 0.6))
            brightness(1);
    }
    50% { 
        filter: 
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8))
            drop-shadow(0 0 30px rgba(255, 0, 0, 1))
            drop-shadow(0 0 60px rgba(255, 0, 0, 0.8))
            brightness(1.3);
    }
}

.fire-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle,
        rgba(255, 0, 0, 0.6) 0%,
        rgba(255, 0, 0, 0.3) 30%,
        rgba(255, 102, 0, 0.2) 60%,
        transparent 100%);
    filter: blur(20px);
    animation: fireGlowPulse 1.5s ease-in-out infinite;
}

@keyframes fireGlowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.fire-reflection {
    position: absolute;
    top: 10%;
    left: 35%;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8),
        rgba(255, 200, 200, 0.4),
        transparent);
    border-radius: 50%;
    filter: blur(3px);
    animation: reflectionMove 3s ease-in-out infinite;
}

@keyframes reflectionMove {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50% { transform: translate(5px, -5px) scale(0.8); opacity: 0.4; }
}

.section-title.metallic-text {
    font-family: var(--font-title);
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 0;
    position: relative;
}

.text-line-1 {
    display: block;
    font-size: 42px;
    background: linear-gradient(135deg,
        #C0C0C0 0%,
        #E8E8E8 20%,
        #808080 40%,
        #C0C0C0 60%,
        #F0F0F0 80%,
        #C0C0C0 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: metallicFlow 3s linear infinite;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(192, 192, 192, 0.3);
}

.text-line-2 {
    display: block;
    font-size: 64px;
    background: linear-gradient(135deg,
        #FF0000 0%,
        #FF6666 20%,
        #CC0000 40%,
        #FF0000 60%,
        #FF3333 80%,
        #990000 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: redMetallicFlow 2s linear infinite;
    filter: drop-shadow(0 4px 8px rgba(255, 0, 0, 0.5));
    position: relative;
}

.text-line-2::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #660000, #330000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translate(2px, 2px);
    opacity: 0.5;
}

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

@keyframes redMetallicFlow {
    0% { 
        background-position: 0% 50%;
        filter: drop-shadow(0 4px 8px rgba(255, 0, 0, 0.5)) brightness(1);
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 4px 12px rgba(255, 0, 0, 0.8)) brightness(1.2);
    }
    100% { 
        background-position: 200% 50%;
        filter: drop-shadow(0 4px 8px rgba(255, 0, 0, 0.5)) brightness(1);
    }
}

.title-underline {
    width: 300px;
    height: 4px;
    margin: 20px auto;
    background: linear-gradient(90deg, 
        transparent,
        #FF0000 20%,
        #FFD700 50%,
        #FF0000 80%,
        transparent);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.title-underline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent);
    animation: underlineShine 3s linear infinite;
}

@keyframes underlineShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Mobile responsivo para o título */
@media (max-width: 768px) {
    .fire-3d-metallic {
        width: 80px;
        height: 80px;
    }
    
    .fire-icon {
        font-size: 60px;
    }
    
    .text-line-1 {
        font-size: 28px;
    }
    
    .text-line-2 {
        font-size: 36px;
    }
}

/* ========== WHATSAPP CAROUSEL ========== */
.whatsapp-carousel {
    max-width: 500px;
    margin: 40px auto;
    background: linear-gradient(135deg, #0B141A, #1a0505);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    border: 1px solid rgba(255, 0, 0, 0.3);
    box-shadow: 
        0 10px 30px rgba(255, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.whatsapp-message {
    margin-bottom: 15px;
    animation: slideInRight 0.5s ease;
}

.whatsapp-time {
    font-size: 11px;
    color: #8696a0;
    margin-bottom: 5px;
    display: block;
}

.whatsapp-bubble {
    background: var(--whatsapp-verde);
    color: var(--branco-puro);
    padding: 12px 16px;
    border-radius: 10px;
    position: relative;
    display: inline-block;
    max-width: 80%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.whatsapp-check {
    position: absolute;
    bottom: 5px;
    right: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #8696a0;
    font-size: 12px;
    margin-top: 10px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #8696a0;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

/* ========== REVIEWS SECTION ========== */
.reviews-title {
    font-size: 24px;
    margin: 40px 0 30px;
    text-align: center;
    color: var(--dourado-1);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: var(--preto-base);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all var(--transition-fast);
}

.gold-frame {
    border: 3px solid;
    border-image: var(--dourado-metalico);
    border-image-slice: 1;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.reviewer-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cinza-chumbo), var(--preto-base));
    border-radius: 50%;
    border: 3px solid var(--dourado-1);
    box-shadow: 
        0 5px 15px rgba(255, 215, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.reviewer-avatar i {
    font-size: 50px;
    background: linear-gradient(135deg, #666, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviewer-avatar.female i {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stars.gold {
    font-size: 22px;
    margin: 15px 0;
}

.stars.gold i {
    color: transparent;
    background: linear-gradient(135deg, #FFD700, #FFEA00, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.9));
    animation: individualStarGlow 1.5s ease-in-out infinite;
}

.stars.gold i:nth-child(odd) {
    animation-delay: 0.2s;
}

.stars.gold i:nth-child(even) {
    animation-delay: 0.4s;
}

@keyframes individualStarGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.9)) brightness(1);
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1)) brightness(1.3);
        transform: scale(1.1);
    }
}

.reviewer {
    display: block;
    margin-top: 15px;
    color: #999;
    font-size: 14px;
    font-style: italic;
}

/* ========== AGGREGATE RATING ========== */
.aggregate-rating {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--preto-base), var(--cinza-chumbo));
    border-radius: 20px;
    margin-top: 40px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.stars-animated {
    font-size: 50px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.stars-animated.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
}

.stars-animated.pulse i {
    display: inline-block;
    color: transparent;
    background: linear-gradient(135deg, #FFD700, #FFEA00, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    animation: starPulseBright 2s ease-in-out infinite, starBounce 0.5s ease;
    animation-delay: calc(var(--i) * 0.1s);
}

.stars-animated i:nth-child(1) { --i: 1; }
.stars-animated i:nth-child(2) { --i: 2; }
.stars-animated i:nth-child(3) { --i: 3; }
.stars-animated i:nth-child(4) { --i: 4; }
.stars-animated i:nth-child(5) { --i: 5; }

@keyframes goldShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes starPulseBright {
    0%, 100% { 
        filter: brightness(1) drop-shadow(0 0 20px #FFD700) drop-shadow(0 0 40px #FFA500);
        transform: scale(1);
    }
    25% {
        filter: brightness(1.3) drop-shadow(0 0 30px #FFD700) drop-shadow(0 0 50px #FFA500);
        transform: scale(1.05);
    }
    50% { 
        filter: brightness(1.5) drop-shadow(0 0 40px #FFD700) drop-shadow(0 0 60px #FFA500);
        transform: scale(1.1);
    }
    75% {
        filter: brightness(1.3) drop-shadow(0 0 30px #FFD700) drop-shadow(0 0 50px #FFA500);
        transform: scale(1.05);
    }
}

@keyframes starBounce {
    0%, 100% { transform: scale(1) rotateZ(0deg); }
    50% { transform: scale(1.3) rotateZ(5deg); }
}

.rating-text {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(90deg, #FFD700, #FFEA00, #FFA500, #FFD700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGoldFlow 3s linear infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 20px rgba(255, 215, 0, 0.5);
}

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

/* ========== OFFER SECTION ========== */
.offer-section {
    background: var(--preto-base);
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-title);
    font-size: 48px;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}

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

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.offer-card {
    background: var(--cinza-chumbo);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all var(--transition-medium);
    border: 3px solid transparent;
}

.hover-gold:hover {
    border-color: var(--dourado-1);
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vermelho-neon);
    color: var(--branco-puro);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 12px;
    animation: badgePulse 2s ease infinite;
}

.offer-badge.hot {
    background: linear-gradient(135deg, var(--vermelho-neon), var(--dourado-1));
}

.offer-badge.premium {
    background: var(--dourado-metalico);
    color: var(--preto-grafite);
}

@keyframes badgePulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.offer-icon-3d {
    font-size: 80px;
    margin: 20px 0;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.icon-touro, .icon-fogo, .icon-coroa {
    display: inline-block;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.5));
}

.offer-title {
    font-family: var(--font-title);
    font-size: 32px;
    margin: 20px 0 10px;
    text-transform: uppercase;
    color: var(--dourado-1);
}

.offer-subtitle {
    font-size: 16px;
    color: #999;
    margin-bottom: 30px;
}

.offer-price {
    margin: 30px 0;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #666;
    font-size: 20px;
    margin-bottom: 10px;
}

.current-price {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--vermelho-neon);
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

/* ========== URGENCY SECTION ========== */
.urgency-section {
    background: var(--preto-grafite);
    padding: 60px 0;
    text-align: center;
}

.countdown-timer.neon-red {
    display: inline-block;
    background: var(--preto-base);
    border: 3px solid var(--vermelho-neon);
    border-radius: 15px;
    padding: 30px 50px;
    margin-bottom: 30px;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.5);
}

.timer-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Courier New', monospace;
    font-size: 72px;
    font-weight: 900;
    color: var(--vermelho-neon);
    text-shadow: 0 0 30px var(--vermelho-neon);
}

.timer-separator {
    animation: blink 1s ease infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.urgency-text {
    font-size: 24px;
    color: var(--vermelho-neon);
    margin: 30px 0;
    font-weight: 700;
}

.urgency-text.blink {
    animation: textBlink 1s ease infinite;
}

@keyframes textBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

.stock-label {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dourado-1);
}

.progress-bar {
    height: 30px;
    background: var(--cinza-chumbo);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--vermelho-neon);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--vermelho-neon), var(--dourado-1));
    transition: width 0.5s ease;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

/* ========== GOLDEN SEAL 3D ========== */
.golden-seal-3d {
    width: 200px;
    height: 200px;
    margin: 40px auto;
    position: relative;
}

.golden-seal-3d::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--dourado-metalico);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.5;
    animation: sealGlow 2s ease infinite;
}

.seal-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: sealShine 2s linear infinite;
}

@keyframes sealShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.seal-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--dourado-metalico);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        inset 0 -5px 10px rgba(0, 0, 0, 0.3),
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(255, 215, 0, 0.5);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--preto-grafite);
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
}

.seal-content i {
    font-size: 30px;
    margin-bottom: 10px;
}

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

/* ========== GUARANTEE SECTION ========== */
.guarantee-section {
    background: linear-gradient(135deg, var(--cinza-chumbo), var(--preto-base));
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.metallic-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 215, 0, 0.03) 2px,
            rgba(255, 215, 0, 0.03) 4px
        );
    pointer-events: none;
}

.guarantee-title {
    font-family: var(--font-title);
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.guarantee-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.guarantee-seal-3d {
    width: 250px;
    height: 250px;
    margin: 40px auto;
    position: relative;
}

.seal-rays {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle, transparent 30%, rgba(255, 215, 0, 0.1) 70%);
    animation: rayRotate 10s linear infinite;
}

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

.seal-border {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--dourado-metalico);
    border-radius: 50%;
    padding: 5px;
    box-shadow: 
        0 10px 40px rgba(255, 215, 0, 0.5),
        inset 0 2px 5px rgba(255, 255, 255, 0.5);
}

.seal-inner {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, var(--dourado-1), var(--dourado-2));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.seal-inner i {
    font-size: 50px;
    color: var(--preto-grafite);
    margin-bottom: 10px;
}

.seal-text {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 900;
    color: var(--preto-grafite);
    text-transform: uppercase;
    line-height: 1.2;
}

.seal-subtext {
    font-size: 12px;
    color: var(--preto-grafite);
    margin-top: 5px;
    letter-spacing: 2px;
}

.security-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.security-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--dourado-1);
    border-radius: 25px;
    font-size: 14px;
    color: var(--dourado-1);
}

/* ========== FINAL CTA SECTION ========== */
.final-cta-section {
    background: radial-gradient(ellipse at center, var(--cinza-chumbo) 0%, var(--preto-grafite) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.cta-image {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.zoom-hover {
    overflow: hidden;
    border-radius: 20px;
}

.zoom-hover img {
    width: 100%;
    max-width: 700px;
    height: auto;
    transition: transform var(--transition-slow);
    filter: contrast(1.15) saturate(1.2) brightness(1.08);
    box-shadow: 
        0 30px 80px rgba(255, 215, 0, 0.4),
        0 0 100px rgba(255, 0, 0, 0.3),
        inset 0 0 50px rgba(255, 255, 255, 0.1);
    border: 3px solid;
    border-image: linear-gradient(135deg, var(--dourado-1), var(--vermelho-neon), var(--dourado-1));
    border-image-slice: 1;
}

.zoom-hover:hover img {
    transform: scale(1.08);
    filter: contrast(1.25) saturate(1.4) brightness(1.12);
    box-shadow: 
        0 40px 100px rgba(255, 215, 0, 0.6),
        0 0 150px rgba(255, 0, 0, 0.4),
        inset 0 0 80px rgba(255, 255, 255, 0.15);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-title);
    font-size: 56px;
    margin-bottom: 40px;
    text-transform: uppercase;
    line-height: 1.2;
}

.glow-text {
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
}

.final-cta {
    font-size: 20px;
    padding: 30px 60px;
}

.trust-micro-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    font-size: 14px;
    color: #999;
    flex-wrap: wrap;
}

.trust-micro-text i {
    color: var(--dourado-1);
}

.separator {
    color: var(--dourado-1);
}

/* ========== UPSELL SECTION ========== */
.upsell-section {
    background: var(--cinza-chumbo);
    padding: 60px 0;
}

.upsell-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dourado-1);
    text-transform: uppercase;
}

.upsell-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.upsell-card {
    background: var(--preto-base);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all var(--transition-fast);
}

.red-border {
    border: 3px solid var(--vermelho-neon);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.upsell-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.5);
}

.upsell-card h4 {
    font-size: 24px;
    color: var(--dourado-1);
    margin-bottom: 10px;
}

.upsell-card p {
    color: #999;
    margin-bottom: 20px;
}

.upsell-button {
    background: var(--vermelho-neon);
    color: var(--branco-puro);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.upsell-button:hover {
    background: var(--dourado-1);
    color: var(--preto-grafite);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--preto-grafite);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--cinza-chumbo);
}

.footer-disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 20px;
    line-height: 1.8;
}

.footer-disclaimer a {
    color: var(--dourado-1);
    text-decoration: none;
}

.footer-disclaimer a:hover {
    text-decoration: underline;
}

/* ========== EXIT MODAL ========== */
.exit-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.exit-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.exit-modal-content {
    background: var(--preto-base);
    border: 3px solid var(--vermelho-neon);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: var(--dourado-1);
    cursor: pointer;
}

.exit-modal h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--vermelho-neon);
}

.exit-modal p {
    margin-bottom: 30px;
    font-size: 18px;
}

.exit-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.secondary-button {
    background: transparent;
    color: var(--dourado-1);
    border: 2px solid var(--dourado-1);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.secondary-button:hover {
    background: var(--dourado-1);
    color: var(--preto-grafite);
}

/* ========== PURCHASE POPUP ========== */
.purchase-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--preto-base);
    border: 2px solid var(--dourado-1);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    z-index: 9998;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s ease;
    max-width: 350px;
}

.purchase-popup.show {
    opacity: 1;
    transform: translateY(0);
}

/* ========== ANIMATIONS ========== */
.fade-in {
    animation: fadeIn 1s ease;
}

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

.fade-in-sequence > * {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

/* ========== RESPONSIVE MOBILE-FIRST ========== */
@media (max-width: 768px) {
    /* Hero Mobile */
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    /* Buttons Mobile */
    .cta-button {
        padding: 20px 35px;
        font-size: 16px;
    }
    
    /* Timer Mobile */
    .timer-display {
        font-size: 48px;
    }
    
    /* Reviews Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* Offers Mobile */
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA Title Mobile */
    .cta-title {
        font-size: 32px;
    }
    
    /* Micro badges Mobile */
    .micro-badges {
        flex-direction: column;
        align-items: center;
    }
    
    /* Trust text Mobile */
    .trust-micro-text {
        flex-direction: column;
    }
    
    .trust-micro-text .separator {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet adjustments */
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 32px;
    }
    
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* High resolution screens */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 88px;
    }
    
    .hero-subtitle {
        font-size: 48px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .sticky-bar,
    .exit-modal,
    .purchase-popup {
        display: none !important;
    }
}