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

body {
    font-family: 'Lora', serif;
    background: linear-gradient(135deg, #1a0033 0%, #2d1b4e 25%, #1a0033 50%, #2d1b4e 75%, #1a0033 100%);
    background-attachment: fixed;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Fundo com galáxia sutil */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
}

/* Partículas de estrelas */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
    animation: twinkle 3s infinite;
}

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

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* Badge de exclusividade */
.badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #7c2d12;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: bold;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4), 0 0 40px rgba(251, 191, 36, 0.2);
    text-align: center;
    letter-spacing: 0.05em;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.4), 0 0 40px rgba(251, 191, 36, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.6), 0 0 60px rgba(251, 191, 36, 0.3);
    }
}

/* Headline */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(251, 191, 36, 0.2);
    letter-spacing: -0.02em;
    animation: headlineGlow 3s ease-in-out infinite;
}

@keyframes headlineGlow {
    0%, 100% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(251, 191, 36, 0.2);
    }
    50% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 50px rgba(251, 191, 36, 0.4);
    }
}

.highlight {
    background: linear-gradient(135deg, #fbbf24, #fcd34d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3)) drop-shadow(0 0 10px rgba(251, 191, 36, 0.4));
    animation: highlightGlow 2s ease-in-out infinite;
}

@keyframes highlightGlow {
    0%, 100% {
        filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3)) drop-shadow(0 0 10px rgba(251, 191, 36, 0.4));
    }
    50% {
        filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.5)) drop-shadow(0 0 20px rgba(251, 191, 36, 0.6));
    }
}

/* Subheadline */
.subheadline {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #e5e7eb;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 0 0.5rem;
    max-width: 100%;
    width: 100%;
}

/* Divider com linha vermelha */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    width: 100%;
    max-width: 100%;
}

.divider-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ef4444, transparent);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5), 0 0 20px rgba(239, 68, 68, 0.3);
    animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.5), 0 0 20px rgba(239, 68, 68, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(239, 68, 68, 0.7), 0 0 30px rgba(239, 68, 68, 0.5);
    }
}

.divider-text {
    color: #fbbf24;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(251, 191, 36, 0.2);
    }
    50% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(251, 191, 36, 0.4);
    }
}

/* Body copy */
.body-copy {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 0 0.5rem;
    max-width: 100%;
    width: 100%;
}

.body-copy strong {
    color: #fbbf24;
    font-weight: 600;
}

/* Benefits box */
.benefits {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(168, 85, 247, 0.5);
    border-radius: 0.75rem;
    padding: clamp(1.5rem, 4vw, 2rem);
    margin: 2rem auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(168, 85, 247, 0.2);
    max-width: 100%;
    width: 100%;
    animation: benefitsGlow 3s ease-in-out infinite;
}

@keyframes benefitsGlow {
    0%, 100% {
        border-color: rgba(168, 85, 247, 0.5);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(168, 85, 247, 0.2);
    }
    50% {
        border-color: rgba(168, 85, 247, 0.8);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(168, 85, 247, 0.4);
    }
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    font-size: clamp(1.5rem, 3vw, 2rem);
    flex-shrink: 0;
    min-width: 2rem;
}

.benefit-content h3 {
    font-family: 'Playfair Display', serif;
    color: #fbbf24;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.benefit-content p {
    color: #d1d5db;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    line-height: 1.5;
}

/* Urgency box */
.urgency {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(234, 88, 12, 0.2));
    border: 3px solid #ef4444;
    border-radius: 0.75rem;
    padding: clamp(1rem, 3vw, 1.5rem);
    margin: 2rem auto;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3), 0 0 40px rgba(239, 68, 68, 0.1);
    text-align: center;
    max-width: 100%;
    width: 100%;
    animation: urgencyPulse 1.5s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.3), 0 0 40px rgba(239, 68, 68, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(239, 68, 68, 0.5), 0 0 60px rgba(239, 68, 68, 0.2);
    }
}

.urgency-title {
    color: #fca5a5;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.urgency-text {
    color: #ffffff;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Objection breaker */
.objection {
    text-align: center;
    margin: 2rem 0;
    padding: 0 0.5rem;
    max-width: 100%;
    width: 100%;
}

.objection-question {
    color: #d1d5db;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.objection-quote {
    font-style: italic;
    color: #9ca3af;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.objection-answer {
    color: #fbbf24;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 600;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* CTA Button */
.cta-container {
    display: flex;
    justify-content: center;
    margin: 2.5rem auto;
    width: 100%;
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #7c2d12;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 40px rgba(251, 191, 36, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 40px rgba(251, 191, 36, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.6), 0 6px 16px rgba(0, 0, 0, 0.4), 0 0 60px rgba(251, 191, 36, 0.3);
    }
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.8), 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 80px rgba(251, 191, 36, 0.4);
}

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

/* Closing copy */
.closing {
    text-align: center;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    color: #d1d5db;
    line-height: 1.8;
    margin: 2rem 0;
    padding: 0 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    width: 100%;
}

.closing strong {
    color: #fbbf24;
    font-weight: 600;
}

/* Final urgency */
.final-urgency {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 3px solid #ef4444;
    width: 100%;
    max-width: 100%;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        border-top-color: #ef4444;
        box-shadow: inset 0 2px 0 rgba(239, 68, 68, 0.3);
    }
    50% {
        border-top-color: #f87171;
        box-shadow: inset 0 2px 0 rgba(239, 68, 68, 0.6);
    }
}

.final-urgency-title {
    color: #fbbf24;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: bold;
    margin-bottom: 0.5rem;
    animation: finalPulse 1.5s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 15px rgba(251, 191, 36, 0.3);
}

@keyframes finalPulse {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 15px rgba(251, 191, 36, 0.3);
    }
    50% {
        opacity: 0.8;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 30px rgba(251, 191, 36, 0.6);
    }
}

.final-urgency-text {
    color: #d1d5db;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}



/* Responsividade */
@media (max-width: 640px) {
    .container {
        padding: 1.5rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .divider {
        gap: 0.5rem;
    }

    .divider-line {
        height: 2px;
    }

    .benefits {
        padding: 1rem;
    }

    .benefit-item {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.875rem;
    }
}
