:root {
    --color-bg: #0A0A0A;
    --color-bg-light: #111111;
    --color-bg-card: #1A1A1A;
    --color-text: #FFFFFF;
    --color-text-muted: #EAEAEA;
    --color-yellow: #FFF200; /* Amarelo vibrante exigido */
    --color-gold: #D4A037; /* Dourado exigido */
    --color-green: #25D366;
    --color-red: #ff4d4d;
    --font-main: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.02) 75%, transparent 75%, transparent);
    background-size: 100px 100px;
}

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

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.highlight {
    color: var(--color-yellow);
}
.highlight-price {
    color: var(--color-green);
    font-size: 3rem;
    font-weight: 800;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

h2 {
    font-size: 2.2rem;
    color: var(--color-gold);
}

.subtitle, .subtitle-max {
    color: var(--color-text-muted);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}
.subtitle-max {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--color-yellow);
    color: #000;
    text-decoration: none;
    font-size: clamp(1rem, 4vw, 1.3rem);
    font-weight: 800;
    padding: 18px 30px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 242, 0, 0.1);
    margin-top: 20px;
    border: 2px solid var(--color-yellow);
    position: relative;
    overflow: hidden;
    max-width: 100%;
    white-space: normal;
    line-height: 1.3;
}

.cta-button:hover {
    transform: translateY(-3px) skewX(-5deg);
    box-shadow: 0 15px 30px rgba(255, 242, 0, 0.2);
    background: transparent;
    color: var(--color-yellow);
}

.pulse {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Sections */
section, header {
    padding: 80px 0;
    position: relative;
}

/* Header Logo */
.logo {
    max-width: 180px;
    margin-bottom: 30px;
}

/* Hero */
.hero {
    padding-top: 5vh;
    padding-bottom: 80px;
    text-align: center;
}

.hero .headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.hero .subheadline {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
    text-transform: none;
}

/* Connection */
.connection {
    background-color: var(--color-bg-light);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}
.connection p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Expert Section Image */
.expert-image-container {
    display: flex;
    justify-content: center;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
    border-bottom: 4px solid var(--color-gold);
}
.expert-image {
    width: 100%;
    /* Corta a parte de baixo da foto automaticamente */
    clip-path: inset(0 0 25% 0);
    margin-bottom: -25%;
    object-fit: contain;
}

/* Video de Vendas (Local) */
.main-video-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid var(--color-gold);
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(212, 160, 55, 0.2);
}
.main-video-wrapper video {
    width: 100%;
    display: block;
}

/* YouTube Videos Wrapper */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 4px;
    background: #000;
    border-bottom: 3px solid var(--color-yellow);
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Depoimentos */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}
.testimonial-card {
    background: var(--color-bg-light);
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
}
.testimonial-card p {
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Pains */
.pains-desires {
    background-color: var(--color-bg-light);
}
.check-list {
    list-style: none;
    max-width: 800px;
    margin: 40px auto;
}
.check-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.icon-red { color: var(--color-red); }
.icon-green { color: var(--color-green); }

/* Happy People Gallery */
.happy-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 40px;
}
.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    border: 2px solid #333;
    position: relative;
    background: #000;
}
.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center 15%; /* Meio termo: mostra a cabeça e parte das pernas */
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Product */
.product-box {
    border: 1px solid var(--color-gold);
    border-radius: 4px;
    padding: 40px;
    background: var(--color-bg-card);
    position: relative;
}
.product-box::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, var(--color-gold), transparent, var(--color-yellow));
    z-index: -1;
    border-radius: 6px;
}
.benefits-list {
    list-style: none;
    margin-top: 20px;
}
.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.benefits-list i { color: var(--color-yellow); }

/* Benefits */
.benefit-card {
    background: var(--color-bg-light);
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    border-top: 4px solid var(--color-yellow);
    transition: transform 0.3s;
}
.benefit-card:hover {
    transform: translateY(-5px);
}
.benefit-card i {
    width: 48px; height: 48px; color: var(--color-gold); margin-bottom: 15px;
}

/* Steps */
.how-it-works {
    background-color: var(--color-bg-light);
}
.steps {
    max-width: 600px;
    margin: 40px auto;
}
.step {
    background: var(--color-bg-card);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.1rem;
    border-left: 2px solid #333;
}
.step span {
    background: var(--color-yellow);
    color: #000;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}
.alert-box {
    background: rgba(255, 77, 77, 0.1);
    border-left: 4px solid var(--color-red);
    padding: 15px;
    border-radius: 4px;
    max-width: 600px;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-box i { color: var(--color-red); }

/* Modules */
.modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}
.module-card {
    background: var(--color-bg-card);
    padding: 25px;
    border-radius: 4px;
    border-left: 3px solid var(--color-yellow);
}
.module-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: #fff; text-transform: none; }
.module-card p { font-size: 0.95rem; color: var(--color-text-muted); }

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.bonus-card {
    background: var(--color-bg-light);
    border: 1px dashed var(--color-gold);
    padding: 20px;
    border-radius: 4px;
}
.bonus-card h4 { color: var(--color-gold); margin-bottom: 10px; text-transform: none; }

/* Guarantee */
.guarantee {
    background-color: var(--color-bg-light);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}
.g-item {
    margin-bottom: 25px;
}
.g-item h3 { font-size: 1.3rem; text-transform: none; }

/* Pricing */
.pricing {
    background: radial-gradient(circle at center, #1a1a1a 0%, var(--color-bg) 100%);
}
.price-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    background: var(--color-bg-card);
    border: 2px solid var(--color-yellow);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.old-price { text-decoration: line-through; color: var(--color-red); font-size: 1.2rem; }
.installments { font-size: 1.5rem; margin: 20px 0; }
.cash-price { font-size: 1.1rem; color: var(--color-text-muted); }
.scarcity { margin-top: 15px; color: var(--color-red); font-weight: bold; }

/* FAQ */
.faq { background-color: var(--color-bg-light); }
.accordion { max-width: 800px; margin: 40px auto; }
.accordion-item { margin-bottom: 10px; border: 1px solid #333; border-radius: 4px; overflow: hidden; background: var(--color-bg-card); }
.accordion-header {
    width: 100%; padding: 20px; background: transparent; color: #fff;
    border: none; text-align: left; font-size: 1.1rem; font-weight: bold; font-family: var(--font-main);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s;
}
.accordion-header:hover { color: var(--color-yellow); }
.accordion-content { 
    padding: 0 20px; 
    display: none; 
}
.accordion-content p { padding-bottom: 20px; color: var(--color-text-muted); }
.accordion-item.active .accordion-content {
    display: block;
}
.accordion-item.active .accordion-header {
    color: var(--color-yellow);
}

/* Footer */
footer { background: #000; padding: 40px 0; font-size: 0.9rem; color: #888; }
.footer-links { margin-bottom: 20px; }
.footer-links a { color: #888; text-decoration: none; margin: 0 10px; }
.footer-links a:hover { color: #fff; }
.disclaimer { font-size: 0.8rem; margin-top: 20px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Responsive */
@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .hero .headline { font-size: 2.2rem; }
    .price-box { padding: 30px 20px; }
    .cta-button { 
        padding: 15px 20px; 
    }
}
@media (max-width: 400px) {
    .cta-button { 
        padding: 12px 10px; 
    }
}
