<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
:root {
    --greed: #f39c12;     /* Ouro - Ganância */
    --lust: #e74c3c;       /* Vermelho - Desejo */
    --gluttony: #16a085;   /* Verde - Excesso */
    --pride: #9b59b6;      /* Roxo - Orgulho */
    --sloth: #95a5a6;      /* Cinza - Preguiça */
    --envy: #2ecc71;       /* Verde claro - Inveja */
    --wrath: #c0392b;      /* Vermelho escuro - Raiva */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: #111 url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=1350&amp;q=80') no-repeat center center/cover;
    color: #fff;
    line-height: 1.7;
    position: relative;
}

body:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: -1;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

/* Header com apelo ao orgulho */
.hero-header {
    background: linear-gradient(135deg, var(--wrath), var(--lust));
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    border-bottom: 5px solid var(--greed);
    position: relative;
    overflow: hidden;
}

.hero-header:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--greed), var(--lust), var(--gluttony), var(--pride), var(--wrath));
}

.logo {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

.logo span {
    color: var(--greed);
    font-weight: 900;
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 0 #000;
}

/* Urgência com contador regressivo */
.urgency-banner {
    background: linear-gradient(90deg, var(--lust), var(--wrath));
    color: white;
    padding: 1.2rem;
    text-align: center;
    font-weight: bold;
    margin: 1.5rem 0;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid var(--greed);
    animation: pulse 2s infinite;
}

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

#countdown {
    font-size: 1.5rem;
    display: inline-block;
    margin-left: 10px;
    color: var(--greed);
    font-weight: 900;
}

/* Video com thumbnail sensual */
.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin: 3rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 3px solid var(--lust);
}

#videoPlayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}

.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.video-cover:hover {
    transform: scale(1.02);
}

.play-btn {
    width: 90px;
    height: 90px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 3px solid var(--greed);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(243, 156, 18, 0.5);
}

.play-btn:hover {
    transform: scale(1.1);
    background-color: rgba(255,255,255,0.3);
}

.play-btn i {
    color: white;
    font-size: 2.5rem;
    margin-left: 5px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.click-text {
    color: white;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
    letter-spacing: 1px;
}

/* Benefícios com ícones luxuosos */
.benefits {
    background: rgba(0,0,0,0.7);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--greed);
    backdrop-filter: blur(5px);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--greed);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px);
}

.benefit-icon {
    color: var(--greed);
    font-size: 2rem;
    margin-right: 1.5rem;
    min-width: 40px;
    text-align: center;
}

/* Garantia com medo de perder */
.guarantee {
    background: linear-gradient(135deg, rgba(22, 160, 133, 0.2), rgba(46, 204, 113, 0.2));
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
    border: 2px dashed var(--gluttony);
    position: relative;
    overflow: hidden;
}

.guarantee h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gluttony);
}

.guarantee p {
    font-size: 1.2rem;
}

/* CTAs irresistíveis */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--greed), #e67e22);
    color: #000 !important;
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 15px;
    text-decoration: none;
    margin: 2rem auto;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
    border: 3px solid #fff;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e67e22, var(--greed));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.7);
    color: #000;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.5);
}

.cta-button i {
    margin-right: 15px;
    font-size: 1.5em;
    vertical-align: middle;
}

.cta-section {
    text-align: center;
    margin: 3rem 0;
    padding: 0 15px;
}

.pulse {
    animation: pulse 2s infinite;
    position: relative;
}

.pulse::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: rgba(243, 156, 18, 0.3);
    border-radius: 30px;
    z-index: -1;
    animation: pulseBorder 2s infinite;
}

/* Depoimentos que causam inveja */
.testimonials {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 250px;
    background: rgba(155, 89, 182, 0.2);
    padding: 25px;
    border-radius: 15px;
    position: relative;
    border: 1px solid var(--pride);
}

.testimonial:before {
    content: "";
    font-size: 80px;
    color: var(--pride);
    position: absolute;
    top: -30px;
    left: 10px;
    opacity: 0.2;
    font-family: serif;
}

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

.testimonial-author {
    font-weight: bold;
    color: var(--pride);
    display: flex;
    align-items: center;
}

.testimonial-author:before {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--pride);
    margin-right: 10px;
    opacity: 0.5;
}

/* Rodapé com políticas */
.footer {
    background: #000;
    color: #95a5a6;
    padding: 3rem 1rem;
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid var(--greed);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.9);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    border-top: 2px solid var(--greed);
}

.cookie-banner p {
    margin-right: 20px;
}

.cookie-btn {
    background: var(--greed);
    color: #000;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
}

/* Responsividade */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
    .tagline {
        font-size: 1.3rem;
    }
    .cta-button {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
    }
}
</pre></body></html>