/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background-color: #000000; 
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    color: #e9b949;
    text-align: center;
}

h2 {
    font-size: 2rem;
    text-align: center;
    color: #e9b949;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
    color: #e9b949;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

/* Header and Footer Images */
.header-image-container, 
.footer-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background-color: #000000;
}

.header-image-container {
    padding-bottom: 0; /* Removendo o padding inferior */
    margin-bottom: 0; /* Removendo a margem inferior */
}

.header-image,
.footer-image {
    max-width: 20%; 
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Botão ACESSAR na barra de navegação */
.cta-button .btn {
    background: linear-gradient(to bottom, #e9c76a 0%, #d4af37 50%, #b8860b 100%);
    color: #000000;
    border: 1px solid #8b6914;
    box-shadow: 0 0 10px rgba(233, 185, 73, 0.5), inset 0 0 5px rgba(255, 255, 255, 0.5);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.cta-button .btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button .btn:hover:before {
    left: 100%;
}

.cta-button .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(233, 185, 73, 0.4), inset 0 0 5px rgba(255, 255, 255, 0.5);
    background: linear-gradient(to bottom, #f0d78a 0%, #e9b949 50%, #c99c1e 100%);
}

.cta-button .btn:active {
    transform: translateY(1px);
    box-shadow: 0 3px 8px rgba(233, 185, 73, 0.4), inset 0 0 3px rgba(255, 255, 255, 0.5);
}

/* Ajuste para o botão quando a barra está rolada */
header.scrolled .cta-button .btn {
    color: #ffffff !important; /* Forçando a cor branca */
    border-color: #6b4e00;
    box-shadow: 0 0 15px rgba(233, 185, 73, 0.7), inset 0 0 5px rgba(255, 255, 255, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, #d4af37 0%, #b8860b 50%, #8b6914 100%); /* Gradiente mais escuro para contraste */
}

.btn.primary {
    background-color: #e9b949;
    color: #000000; 
    font-size: 1rem;
    padding: 15px 30px;
}

.btn.primary:hover {
    background-color: #d3a73c;
    transform: translateY(-2px);
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid #e9b949;
    color: #e9b949;
}

.btn.secondary:hover {
    background-color: rgba(233, 185, 73, 0.1);
    transform: translateY(-2px);
}

.btn.video {
    background-color: transparent;
    border: 2px solid #e9b949;
    color: #e9b949;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn.video:hover {
    background-color: rgba(233, 185, 73, 0.1);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Header */
header {
    padding: 10px 0;
    position: sticky;
    top: 0;
    background-color: rgba(0, 0, 0, 0.95); 
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.8); /* Fundo preto semi-transparente */
    border-bottom: 2px solid #e9b949; /* Borda inferior dourada */
    box-shadow: 0 0 15px rgba(233, 185, 73, 0.5); /* Sombra dourada para efeito de luz */
}

header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

header.scrolled nav ul li a,
header.scrolled .cta-button .btn {
    color: #e9b949; /* Mantendo o texto dourado para combinar com a borda */
}

header.scrolled nav ul li a:hover {
    color: #ffffff; /* Hover branco para melhor contraste */
    text-shadow: 0 0 5px rgba(233, 185, 73, 0.7); /* Efeito de brilho no hover */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 160px;
}

.logo img {
    height: 150px;
    width: 150px;
    object-fit: contain;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #e9b949;
}

/* VSL Hero Section */
.vsl-hero {
    padding: 20px 0 80px; 
    background: #000000; 
    text-align: center;
}

.vsl-content {
    max-width: 900px;
    margin: 0 auto;
}

.vsl-content h1 {
    margin-bottom: 20px;
}

.vsl-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vsl-player {
    margin: 30px auto;
    max-width: 800px;
}

.main-video {
    border: 3px solid #e9b949;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.main-video wistia-player {
    width: 100%;
    height: 100%;
    display: block;
}

/* Modal styles for Wistia player */
.modal .video-container wistia-player {
    width: 100%;
    height: 100%;
    display: block;
}

.wistia_responsive_padding {
    border-radius: 8px;
    overflow: hidden;
}

.wistia_embed {
    border-radius: 8px;
}

.guarantee-small {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #a0a0a0;
}

.guarantee-small i {
    color: #e9b949;
    margin-right: 5px;
}

/* Benefits Section */
.benefits {
    background-color: #000000; 
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: #111111; 
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .icon {
    font-size: 2rem;
    color: #e9b949;
    margin-bottom: 20px;
}

/* How It Works Section */
.how-it-works {
    background-color: #000000; 
}

.steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    margin-bottom: 40px;
    gap: 20px;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e9b949;
    min-width: 30px;
}

.step-content {
    flex: 1;
}

/* Course Content Section */
.course-content {
    background-color: #0a0a0a;
    padding: 80px 0;
}

.content-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.content-item {
    display: flex;
    gap: 30px;
    background-color: #111111;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border-left: 4px solid #e9b949;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(233, 185, 73, 0.2);
}

.content-icon {
    font-size: 2.5rem;
    color: #e9b949;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-details {
    flex: 1;
}

.content-details h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.content-details p {
    color: #d0d0d0;
    line-height: 1.6;
}

.content-cta {
    margin-top: 50px;
    text-align: center;
}

.content-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    background-color: #000000; 
}

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

.testimonial-card {
    background-color: #111111; 
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.stars {
    color: #e9b949;
    margin-bottom: 15px;
}

.user {
    margin-top: 20px;
}

.user h4 {
    margin-bottom: 5px;
}

.user span {
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: #000000; 
    text-align: center;
}

.cta .container {
    max-width: 800px;
}

.cta .cta-buttons {
    justify-content: center;
}

.guarantee {
    margin-top: 30px;
    font-size: 1rem;
    color: #f0f0f0;
}

.guarantee i {
    color: #e9b949;
    margin-right: 5px;
}

/* Price Tag Styles */
.price-tag {
    margin: 30px auto;
    text-align: center;
    display: block;
    max-width: 400px;
    background-color: rgba(233, 185, 73, 0.1);
    padding: 15px 30px;
    border-radius: 8px;
    border: 2px solid #e9b949;
    box-shadow: 0 0 15px rgba(233, 185, 73, 0.3);
}

.price-alt {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 5px;
    text-align: center;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e9b949;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    margin: 0;
}

.smaller {
    font-size: 1.3rem;
    font-weight: 400;
    vertical-align: middle;
    opacity: 0.8;
}

.countdown-timer {
    margin: 20px auto 30px;
    padding: 15px;
    background-color: rgba(233, 185, 73, 0.1);
    border: 2px solid #e9b949;
    border-radius: 8px;
    display: block;
    max-width: 400px;
}

.countdown-timer p {
    margin: 0;
    font-size: 0.9rem;
    color: #f0f0f0;
}

.countdown-timer i {
    color: #e9b949;
    margin-right: 8px;
}

#timer {
    font-weight: bold;
    color: #e9b949;
    font-size: 1.1rem;
}

/* Brainwave Icons */
.brainwave-icons-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 15px 0 30px;
}

.brainwave-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.brainwave-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
}

.brainwave-icon:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.1));
}

.wave-symbol {
    font-size: 2.4rem;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 20px rgba(233, 185, 73, 0.3);
    transition: all 0.3s ease;
}

.brainwave-icon:hover .wave-symbol {
    color: #e9b949;
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(233, 185, 73, 0.6);
}

@media (max-width: 768px) {
    .brainwave-icons-container {
        margin: 10px 0 20px;
    }
    
    .brainwave-icons {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px 20px;
        border-radius: 40px;
        -webkit-overflow-scrolling: touch;
    }
    
    .brainwave-icon {
        padding: 0 15px;
        flex-shrink: 0;
    }
    
    .wave-symbol {
        font-size: 1.8rem;
    }
    
    .brainwave-icon:not(:last-child)::after {
        height: 50%;
    }
}

@media (max-width: 480px) {
    .brainwave-icons {
        padding: 8px 15px;
        border-radius: 30px;
    }
    
    .brainwave-icon {
        padding: 0 10px;
    }
    
    .wave-symbol {
        font-size: 1.5rem;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); 
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #111111; 
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 10;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(233, 185, 73, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #000000; 
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: #e9b949;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background-color: #000000; 
    padding: 40px 0;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo img {
    height: 150px;
    width: 150px;
    object-fit: contain;
}

.footer-links ul {
    display: flex;
    gap: 20px;
}

.footer-links ul li a {
    color: #a0a0a0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #e9b949;
}

.copyright {
    font-size: 0.8rem;
    color: #666;
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 80px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(10, 10, 10, 0.7);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.thank-you-message {
    margin-top: 30px;
    font-size: 1.1rem;
}

.contact-info {
    margin: 30px 0;
    font-size: 1.2rem;
}

.contact-info a {
    color: #e9b949;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #f5d78e;
    text-decoration: underline;
}

.contact-info i {
    margin-right: 10px;
    color: #e9b949;
}

.back-home {
    margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .vsl-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    nav {
        display: none;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .header-image,
    .footer-image {
        width: 90%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .benefit-card, .testimonial-card {
        padding: 20px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Disclaimer Link and Section */
.disclaimer-link {
    font-size: 0.8rem;
    opacity: 0.7;
}

.disclaimer-section {
    padding: 80px 0;
    background-color: #080808;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(233, 185, 73, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(233, 185, 73, 0.2);
}

.disclaimer-content h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 20px;
}

.disclaimer-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}
