@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=Inter:wght@300;400;600;800&display=swap');

:root {
    --bg-color: #050505;
    --bg-secondary: #0c0c0c;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --gold: #d4af37;
    --gold-hover: #b5952f;
    --red: #8b0000;
    --red-glow: rgba(139, 0, 0, 0.4);
    --gold-glow: rgba(212, 175, 55, 0.4);
    --border-color: #2a2a2a;
    --font-heading: 'Special Elite', cursive;
    --font-body: 'Inter', sans-serif;
}

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

html { 
    background-color: var(--bg-color); 
    height: 100%; 
}

body { 
    min-height: 100vh;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 0%, #1a1a1a 0%, transparent 70%),
                      url('https://www.transparenttextures.com/patterns/stardust.png'); /* Subtle texture */
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-gold { color: var(--gold); }
.text-red { color: var(--red); }

/* Layout */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 var(--gold-glow); }
    70% { box-shadow: 0 0 20px 10px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}

@keyframes glitch {
    0% { transform: translate(0) }
    20% { transform: translate(-2px, 2px) }
    40% { transform: translate(-2px, -2px) }
    60% { transform: translate(2px, 2px) }
    80% { transform: translate(2px, -2px) }
    100% { transform: translate(0) }
}

/* Global Logo Styling */
.logo-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.brand-logo {
    max-width: 140px;
    height: auto;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.brand-logo:hover {
    transform: scale(1.1) rotate(3deg);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    border-color: var(--gold);
}

/* Hero Section */
.hero {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 60px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero .sub-headline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    border: 2px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    background-color: #000;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
}

.video-container::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(80%) contrast(120%);
}

.video-container:hover .video-thumbnail {
    opacity: 0.5;
    filter: grayscale(100%) contrast(150%);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px var(--gold-glow);
    animation: pulse 2s infinite;
    z-index: 10;
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #000;
    margin-left: 5px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #8c7322);
    color: #000;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px var(--gold-glow);
    transition: all 0.3s ease;
    border: 1px solid #fff;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--gold-hover), #6b581a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--gold-glow);
}

.urgency-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.urgency-text svg {
    fill: var(--text-secondary);
    width: 16px;
    height: 16px;
}

/* Problem Section */
.problem-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.symptoms-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.symptom-item {
    background-color: rgba(139, 0, 0, 0.05);
    border: 1px solid rgba(139, 0, 0, 0.3);
    padding: 15px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.symptom-item::before {
    content: '⚠️';
    font-size: 1.2rem;
}

.conclusion-box {
    margin-top: 30px;
    background-color: rgba(139, 0, 0, 0.1);
    border: 1px solid var(--red);
    padding: 20px;
    text-align: center;
    border-radius: 4px;
}

.conclusion-box p {
    color: #ff6b6b;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Solution Grid */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.module-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 4px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.module-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.module-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.module-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Bonuses */
.bonus-section {
    background-color: var(--bg-secondary);
    background-image: radial-gradient(circle at 100% 100%, #1a1505 0%, transparent 50%);
}

.bonus-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bonus-item {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.5);
    border: 1px dashed var(--gold);
    position: relative;
}

.bonus-value {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--red);
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 0.8rem;
    transform: rotate(5deg);
    border-radius: 2px;
}

.bonus-item h4 {
    color: var(--gold);
    margin: 15px 0 10px;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 4px;
    border-left: 3px solid var(--gold);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-family: var(--font-heading);
    color: var(--gold);
    text-align: right;
}

/* Guarantee Section */
.guarantee {
    text-align: center;
    background-color: var(--bg-secondary);
    padding: 60px 20px;
    border-top: 1px solid var(--border-color);
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.guarantee h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.guarantee p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: #666;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    margin: 0 10px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .cta-button {
        font-size: 1.2rem;
        padding: 15px 30px;
        width: 100%;
    }
    .section-title {
        font-size: 1.5rem;
    }
}

/* Indicador de Desbloqueio */
.unlock-indicator {
    margin-top: 30px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: opacity 0.5s ease;
}

.unlock-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.unlock-message svg {
    width: 16px;
    height: 16px;
    fill: var(--text-secondary);
}

.bouncing-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 10px;
    animation: bounceDown 2s infinite;
}

.bouncing-arrows svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
    margin: -8px 0; 
    opacity: 0.8;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}
