/* =========================================================
   RESET GLOBAL (ÚNICO)
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================================
   BODY / BASE
========================================================= */
body {
    background-color: #000;
    color: #fff;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* =========================================================
   UTILITÁRIOS
========================================================= */
.text-color-gradient-txt {
    display: inline-block;
    background: linear-gradient(100deg, #fecbff, #ff79b0 37%, #8b5cf6);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 900;
}

.cta-rounded {
    border-radius: 999px;
    font-size: 1rem;
    padding: 16px 36px;
    font-weight: 600;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 40px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(106, 17, 203, 0.4);
}

/* =========================================================
   HEADER / FOOTER
========================================================= */
.site-header,
.site-footer {
    background: #fff;
    padding: 10px;
    text-align: center;
    z-index: 10;
    position: relative;
}

/* =========================================================
   HERO SECTION (CORRIGIDO)
========================================================= */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5vw;
}

.hero-text-content {
    max-width: 800px;
    z-index: 20;
}

/* TAMANHOS DE FONTE CORRIGIDOS - ESCALA PROGRESSIVA */
.hero-text-content h1 {
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero-text-content p {
    font-size: clamp(1rem, 1.8vw, 1.5rem);
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 700px;
}

.hero-image {
    position: absolute;
    right: 5vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    height: 90vh;
    pointer-events: none;
}

.hero-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    filter: brightness(0.9) contrast(1.05);
}

/* Responsivo do Hero */
@media (max-width: 992px) {
    .hero-overlay {
        justify-content: center;
        padding-left: 0;
        text-align: center;
    }
    
    .hero-text-content {
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(8px);
        padding: 2rem;
        border-radius: 20px;
        max-width: 90%;
    }
    
    .hero-image {
        display: none;
    }
}

/* =========================================================
   FAIXA DE LOGOS
========================================================= */
.logo-marquee {
    background: #000;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
    overflow: hidden;
    padding: 25px 0;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: fit-content;
    animation: marquee-left 25s linear infinite;
}

.logo-track img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(65%);
    opacity: 0.9;
    flex-shrink: 0;
}

@keyframes marquee-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =========================================================
   ABOUT SECTION
========================================================= */
.about-section {
    padding: 80px 0;
    border-top: 1px solid #222;
}

.about-container,
.about-container-section2 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-container-section2 {
    grid-template-columns: 1.6fr 1fr;
}

.about-image img,
.about-image-section2 img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-highlight {
    background: linear-gradient(100deg, #fecbff, #ff79b0 37%, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.about-list img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 4px;
}

/* =========================================================
   VIDEO SECTION
========================================================= */
.video-section {
    padding: 60px 0;
}

.video-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2vw;
    text-align: center;
}

.video-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.video-subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.landing-video {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
}

.video-bottom-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* =========================================================
   FREE EBOOK SECTION
========================================================= */
.free-ebook-section {
    padding: 80px 0;
}

.free-ebook-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2vw;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.free-ebook-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.free-ebook-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.title-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.title-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fecbff, #ff79b0, #8b5cf6);
}

/* =========================================================
   ACCORDION BOOKS
========================================================= */
.books-accordion-section {
    padding: 60px 0;
}

.books-accordion-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1vw;
}

.books-accordion-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border: 1px solid #222;
    border-radius: 14px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: none;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #050505;
}

.accordion-item.active .accordion-content {
    max-height: 600px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 2rem;
}

.accordion-image img {
    width: 100%;
    max-width: 260px;
}

.accordion-text p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* =========================================================
   GALLERY SECTION
========================================================= */
.gallery-section {
    padding: 60px 0;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.gallery-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    filter: grayscale(100%) brightness(0.9);
    transition: all 0.3s ease;
}

.gallery-item img:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

/* =========================================================
   PRICING CARDS (UNIFICADO)
========================================================= */
.plans-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2vw;
}

.card {
    background: #1a1a1a;
    border: 2px solid #6a11cb;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(106, 17, 203, 0.4);
}

.card.featured {
    border-color: #8a2be2;
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.4);
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, #ff5722, #ff9800);
    color: white;
    padding: 8px 35px;
    font-weight: bold;
    font-size: 0.85rem;
    transform: rotate(45deg);
}

.header {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.pricing-section {
    padding: 30px 20px;
    border-bottom: 1px dashed #333;
}

.original-price {
    font-size: 1.4rem;
    color: #aaa;
    text-decoration: line-through;
}

.current-price {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 800;
}

.economy {
    color: #2ecc71;
    font-weight: 600;
}

.features {
    padding: 30px 25px;
}

.features h3 {
    margin-bottom: 1.5rem;
    border-left: 4px solid #6a11cb;
    padding-left: 15px;
}

.price-features {
    list-style: none;
}

.feature-item {
    padding: 12px 0;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item.negative {
    color: #777;
}

.feature-item::before {
    content: "✓";
    color: #2ecc71;
    font-weight: bold;
}

.feature-item.negative::before {
    content: "✗";
    color: #e74c3c;
}

.cta-section {
    padding: 25px 20px;
    text-align: center;
    background: #222;
    border-top: 1px solid #333;
}

.cta-button {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding: 16px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.cta-button.featured-btn {
    background: linear-gradient(135deg, #ff5722, #ff9800);
}

.guarantee {
    margin-top: 10px;
    color: #aaa;
    font-size: 0.85rem;
}

/* =========================================================
   COUNTDOWN (SIMPLIFICADO)
========================================================= */
.countdown-section {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    padding: 30px 20px;
    margin-bottom: 40px;
}

.countdown-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.countdown-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.time-unit {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 15px 10px;
    min-width: 80px;
}

.time-value {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Courier New', monospace;
}

.time-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.time-separator {
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
}

/* =========================================================
   GUARANTEE SECTION
========================================================= */
.guarantee-two-columns {
    padding: 60px 20px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.guarantee-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.guarantee-image-wrapper img {
    width: 100%;
    max-width: 400px;
}

/* =========================================================
   RESPONSIVO GERAL
========================================================= */
@media (max-width: 1200px) {
    .plans-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .about-container,
    .about-container-section2,
    .free-ebook-container,
    .guarantee-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .accordion-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-list li {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .plans-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 10px 5px;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .time-separator {
        display: none;
    }
}

/* =========================================================
   HEADER COMPLETO
========================================================= */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 0.8rem 2rem;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.logo a {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-text {
    color: #fff;
}

/* Navegação */
.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: #fff;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Seletor de idioma */
.header-lang {
    position: relative;
}

.lang-current {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-current:hover {
    background: rgba(106, 17, 203, 0.2);
    border-color: #6a11cb;
}

.lang-current img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 3px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    min-width: 160px;
    display: none;
    z-index: 1001;
    overflow: hidden;
}

.lang-dropdown.show {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #333;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: #6a11cb;
    color: #fff;
}

.lang-option img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 3px;
}

/* CTA do header */
.header-cta {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
}

/* Menu mobile */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #0a0a0a;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 1rem;
    z-index: 999;
}

.mobile-menu.show {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-nav a:hover {
    background: rgba(106, 17, 203, 0.2);
}

.mobile-lang {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.mobile-lang-title {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.mobile-lang-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mobile-lang-options a {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
}

/* =========================================================
   FOOTER COMPLETO
========================================================= */
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 2rem 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    border-radius: 3px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #6a11cb;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #8a5cf6;
    padding-left: 5px;
}

.footer-security {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-security .security-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-security .security-item i {
    color: #6a11cb;
    width: 20px;
}

.footer-payment {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-payment i {
    transition: color 0.3s ease;
}

.footer-payment i:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.legal-warning {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-warning i {
    color: #ff5722;
}

/* =========================================================
   RESPONSIVO DO HEADER/FOOTER
========================================================= */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .main-nav, .header-lang, .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .header-container {
        padding: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0.8rem 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .legal-warning {
        justify-content: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-payment {
        justify-content: center;
    }
}