/* --- Variáveis Globais e Reset --- */
:root {
    --primary-color: #FF6A00;
    --primary-color-hover: #ff7c26;
    --secondary-color: #00FF88;
    --dark-bg-primary: #121212;
    --dark-bg-secondary: #181818;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #2a2a2a;
    --font-family: 'Poppins', sans-serif;
    --max-width: 1140px;
    --border-radius: 12px;
    --section-padding: 60px 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg-primary);
    font-family: var(--font-family);
    color: var(--text-primary);
    line-height: 1.6;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color-hover);
}

ul {
    list-style: none;
}

section {
    padding: var(--section-padding);
}

.section-header, .faq-section, .final-cta-section {
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-header h2, .final-cta-section h2, .faq-section h2, .after-purchase-info h3 {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p, .final-cta-section p, .faq-section p {
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* NOVA REGRA 1: O Contêiner Principal */
.hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 80vh; /* Aumentado para melhor impacto visual */
    padding: 60px 20px;
    background-image: url('IMAGES/ninja.png'); /* Caminho para a sua nova imagem gerada */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden; /* Garante que nada vaze */
}

/* NOVA REGRA 2: A Camada de Efeito Escuro */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

/* NOVA REGRA 3: O Conteúdo de Texto */
.hero-content {
    position: relative;
    z-index: 2; /* Garante que o texto fique na frente da sobreposição */
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title strong {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* --- Features Section --- */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature-box {
    background: #111;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    width: 240px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards;
    animation-delay: calc(var(--i) * 0.2s);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.6);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
    animation: glow 2s ease-in-out infinite alternate;
}

.feature-text {
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

/* --- Tools, Bonus & Testimonials Sections --- */
.tools-columns, .bonus-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tool-card, .bonus-box {
    background-color: var(--dark-bg-secondary);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 350px;
}

.tool-card:hover, .bonus-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.4);
}

.tool-card h3, .bonus-box h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.tool-card ul li {
    margin-bottom: 10px;
}

.tool-card ul li::before {
    content: '✔️';
    margin-right: 8px;
    color: var(--secondary-color);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.bonus-box {
    max-width: none;
    text-align: center;
}

.bonus-box p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.section-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--text-primary);
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(255, 106, 0, 0.5);
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--primary-color-hover);
    transform: scale(1.05);
    color: var(--text-primary);
}

.link-secondary {
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.link-secondary:hover {
    color: var(--primary-color-hover);
}

.cta-button-large {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(255, 106, 0, 0.5);
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s, color 0.3s;
    max-width: 90%;
    width: fit-content;
    line-height: 1.5;
    font-size: 1.05rem;
}

.cta-button-large:hover {
    background-color: white;
    color: black;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.6);
}

.cta-button-large span {
    display: block;
}


/* --- Secure Banner --- */
.secure-banner {
    background: linear-gradient(90deg, var(--dark-bg-secondary), #111111);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 15px 30px;
    margin: 50px auto;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.2);
    max-width: var(--max-width);
    text-align: center;
}

.secure-icon {
    color: var(--secondary-color);
    font-size: 1.5rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.secure-banner span {
    font-weight: bold;
    font-size: 1.1rem;
}


/* --- Carousel/Gallery --- */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.2);
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-images img {
    width: 100%;
    flex-shrink: 0;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

.carousel-dots {
    text-align: center;
    margin-top: 15px;
}

.carousel-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #555;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dots .dot.active {
    background-color: var(--primary-color);
}


/* --- Final CTA & After Purchase --- */
.final-cta-wrapper, .after-purchase-info {
    background-color: var(--dark-bg-secondary);
    border-radius: var(--border-radius);
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
    border: 1px solid var(--border-color);
}

.cta-price {
    font-size: 26px;
    color: white;
    margin-bottom: 25px;
}

.cta-price span {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.cta-button-final {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(255, 106, 0, 0.5);
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.cta-button-final:hover {
    background-color: white;
    color: var(--dark-bg-primary);
    transform: scale(1.05);
}

.after-purchase-info {
    text-align: left;
    max-width: 900px;
    margin: 40px auto;
}

.after-purchase-info h3 {
    text-align: center;
    color: var(--primary-color);
}

.after-purchase-info p {
    color: var(--text-secondary);
    text-align: center;
}

/* --- FAQ Section --- */
.faq-item {
    background-color: var(--dark-bg-primary);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: #1a1a1a;
}

.faq-question {
    font-weight: bold;
    font-size: 1.1rem;
    padding-right: 20px; /* Space for icon */
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    color: var(--text-secondary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding-top 0.5s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0;
}

.faq-item.active .faq-answer {
    padding-top: 15px;
    max-height: 300px; /* Adjust as needed */
}


/* --- Footer --- */
.site-footer {
    background-color: var(--dark-bg-primary);
    padding: 25px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: 50px;
}

.footer-disclaimer {
    color: #888;
    font-size: 0.8rem;
    max-width: 800px;
    margin: 0 auto 15px;
    line-height: 1.6;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: underline;
    margin: 0 10px;
    font-size: 0.95rem;
}


/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: var(--dark-bg-primary);
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 255, 128, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    border: 1px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(0, 255, 128, 0.6);
    color: white;
}

.whatsapp-float img {
    width: 36px;
    height: 36px;
}

.whatsapp-float span {
    white-space: nowrap;
    padding-right: 10px;
}

/* --- Lightbox --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.show {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 95%;
    max-height: 95%;
    border-radius: var(--border-radius);
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.5);
    transition: transform 0.3s ease;
    transform: scale(0.9);
}

.lightbox.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    color: white;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.lightbox-close {
    top: 30px;
    right: 40px;
    font-size: 2rem;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-prev, .lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: rgba(255, 106, 0, 0.8);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }


/* --- Animações --- */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(255, 102, 0, 0.4);
    }
    to {
        text-shadow: 0 0 15px rgba(255, 102, 0, 1);
    }
}

.secure-icon {
    animation-name: glow-secondary;
}

@keyframes glow-secondary {
    from {
        text-shadow: 0 0 5px rgba(0, 255, 136, 0.4);
    }
    to {
        text-shadow: 0 0 15px rgba(0, 255, 136, 1);
    }
}


/* --- Responsividade --- */
@media (max-width: 768px) {
    .tools-columns {
        flex-direction: column;
        align-items: center;
    }

    .tool-card {
        width: 100%;
        max-width: 500px;
    }

    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float {
        padding: 12px;
    }

    .secure-banner {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .section-footer {
        flex-direction: column;
        gap: 20px;
    }

    .cta-button-large span:last-child {
        font-size: 0.9em;
    }

    .final-cta-wrapper .cta-title {
        font-size: 28px;
    }

    .cta-button-final {
        padding: 15px 25px;
        font-size: 1rem;
    }
}