/* Estilos básicos */
:root {
    --primary-purple: #8B5CF6; /* Roxo */
    --primary-green: #10B981; /* Verde */
    --dark-bg: #1A1A1A; /* Fundo escuro principal */
    --light-bg: #2C2C2C; /* Fundo de seções claras */
    --text-color: #E0E0E0; /* Cor do texto principal */
    --secondary-text-color: #A0A0A0; /* Cor do texto secundário */
    --border-color: #404040;
    --whatsapp-green: #25D366; /* Verde sólido do WhatsApp */
    --twitch-purple: #9147FF; /* Roxo sólido da Twitch */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--dark-bg);
    color: var(--text-color);
}

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

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(45deg, #EF4444, #DC2626);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.8; }
}

/* Header */
header {
    background-color: var(--dark-bg);
    color: var(--text-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.navbar .logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.hamburger-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.hero-section {
    background: linear-gradient(135deg, #333333, #1A1A1A);
    padding: 100px 0;
    text-align: center;
    color: white;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

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

.btn-primary {
    background-color: var(--twitch-purple); /* Cor sólida roxo */
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: #772CE8; /* Um tom mais escuro de roxo no hover */
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(145, 71, 255, 0.4);
}

.guarantee-badge {
    background: var(--primary-green);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin: 10px 0;
}

.social-proof {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    margin: 20px auto;
    max-width: 600px;
    color: var(--text-color);
}

.social-proof strong {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.features-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 700;
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--dark-bg);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-purple);
}

.feature-item i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.feature-item h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item h3 a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.feature-item h3 a:hover {
    color: var(--primary-green);
}

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.demo-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
}

.demo-section img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.demo-section h3 {
    color: var(--primary-purple);
    margin-top: 20px;
}

.demo-section p {
    color: var(--secondary-text-color);
}

/* About Section (Testimonials) */
.about-section {
    background: linear-gradient(135deg, #2C2C2C, #1A1A1A);
    padding: 100px 0;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 700;
}

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

.testimonial-item {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.testimonial-item::before {
    content: ";
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: var(--primary-purple);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid var(--primary-green);
}

.testimonial-item h3 {
    color: var(--primary-purple);
    margin-bottom: 5px;
    font-weight: 700;
}

.testimonial-item p {
    color: var(--secondary-text-color);
}

.testimonial-item p:last-child {
    font-style: italic;
    color: var(--secondary-text-color);
}

/* Buy Section */
.buy-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.buy-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.buy-section > p {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.2rem;
    color: var(--secondary-text-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.license-item {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.license-item:hover {
    border-color: var(--primary-purple);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.license-item h3 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.installments {
    color: var(--secondary-text-color);
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.btn-secondary {
    background-color: var(--primary-green); /* Cor sólida verde */
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background-color: #0D926F; /* Um tom mais escuro de verde no hover */
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

/* Blog Section */
.blog-section {
    background: var(--light-bg);
    padding: 100px 0;
}

.blog-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-item {
    background: var(--dark-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.blog-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-item-content {
    padding: 25px;
}

.blog-item h3 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-item p {
    color: var(--secondary-text-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: white;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.social-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-green);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    background-color: var(--whatsapp-green); /* Cor sólida do WhatsApp */
    color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    background-color: #1DA851; /* Um tom mais escuro de verde no hover */
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.8); }
    100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .features-grid,
    .testimonials-grid,
    .license-options,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Gatilhos de Venda */
.urgency-banner {
    background: linear-gradient(45deg, #EF4444, #DC2626);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.8; }
}

.guarantee-badge {
    background: var(--primary-green);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin: 10px 0;
}

.social-proof {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    margin: 20px auto;
    color: var(--text-color);
}

.social-proof strong {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.license-item .guarantee-badge {
    background: var(--primary-green);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 15px;
}

.license-item[style*="border: 3px solid #10B981;"] {
    border-color: var(--primary-green) !important;
}

.license-item[style*="border: 3px solid #10B981;"] div[style*="background: #10B981;"] {
    background: var(--primary-green) !important;
}




.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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



.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1;
}

.play-button-overlay i {
    font-size: 80px;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.play-button-overlay:hover i {
    opacity: 1;
}


