/* Reset e Variáveis */
:root {
    --bg-color: #050505;
    --text-main: #Eaeaea;
    --text-muted: #a0a0a0;
    --primary-red: #d32f2f;
    --dark-red: #8b0000;
    --glow-red: rgba(211, 47, 47, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Tipografia */
h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 span, h2 span {
    color: var(--primary-red);
    text-shadow: 0 0 15px var(--glow-red);
}

/* Hero Section */
.hero {
    padding: 80px 0 40px;
    text-align: center;
    background: radial-gradient(circle at center top, rgba(139, 0, 0, 0.15) 0%, var(--bg-color) 70%);
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(211, 47, 47, 0.1);
    border: 1px solid var(--primary-red);
    border-radius: 50px;
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    max-width: 800px;
    margin: 0 auto 20px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Videos Section */
.videos-section {
    padding: 50px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px var(--glow-red);
    border-color: rgba(211, 47, 47, 0.3);
}

.video-wrapper {
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
    margin-bottom: 20px;
    position: relative;
}

.bunny-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    height: 100%;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 1px dashed var(--glass-border);
}

.placeholder-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

/* Remove this padding if iframe is direct, this is 16:9 ratio trick */
iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
}

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

/* Solution / Offer */
.solution-section {
    padding: 60px 0 100px;
    text-align: center;
}

.solution-content h2 {
    font-size: 2rem;
    max-width: 700px;
    margin: 0 auto 20px;
}

.solution-content > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

.checkout-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    backdrop-filter: blur(15px);
}

.glow-effect {
    box-shadow: inset 0 0 20px rgba(139, 0, 0, 0.1), 0 15px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-red) 0%, transparent 60%);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.checkout-box * {
    position: relative;
    z-index: 1;
}

.checkout-box h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 25px;
}

.benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.benefits li {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.benefits .icon-check {
    color: var(--primary-red);
    font-style: normal;
    margin-right: 10px;
    font-weight: bold;
}

.price-container {
    margin-bottom: 30px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.main-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin: 5px 0;
}

.main-price .parcelas {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
}

.main-price .valor {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 20px var(--glow-red);
}

.cash-price {
    font-size: 0.9rem;
    color: #aaa;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(139, 0, 0, 0.6), 0 0 20px rgba(211, 47, 47, 0.5);
    background: linear-gradient(135deg, #e53935, var(--primary-red));
}

.guarantee {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.guarantee-icon {
    font-size: 2rem;
}

.guarantee-text h4 {
    font-size: 0.95rem;
    color: #fff;
    margin: 0 0 5px 0;
}

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

footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

footer p {
    font-size: 0.8rem;
    color: #666;
}

/* Responsividade */
@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .main-price .valor {
        font-size: 2.5rem;
    }
    
    .checkout-box {
        padding: 25px;
    }
}
