/* Reset & Base Variables */
:root {
    --bg-dark: #0f172a; /* Slate 900 */
    --bg-darker: #020617; /* Slate 950 */
    --bg-light: #f8fafc; /* Slate 50 */
    --text-dark: #e2e8f0;
    --text-light: #334155;
    
    --gold: #fbbf24;
    --gold-glow: rgba(251, 191, 36, 0.4);
    --gold-glow-strong: rgba(251, 191, 36, 0.6);
    --action: #10b981;
    --action-hover: #059669;

    --font-body: 'Inter', sans-serif;
    --font-heading: 'Oswald', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-darker);
    overflow-x: hidden;
}

/* Typography & Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.text-xs { font-size: 0.8rem; }
.text-gold { color: var(--gold); }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.container-sm {
    max-width: 900px;
}

/* Sections */
section {
    padding: 6rem 0;
}

.dark-section {
    background-color: var(--bg-dark);
    color: var(--text-dark);
}
.light-section {
    background-color: var(--bg-light);
    color: var(--text-light);
}
.light-section .text-dark {
    color: var(--bg-darker);
}

.dark-gradient {
    background: linear-gradient(135deg, var(--bg-darker) 0%, #1e1b4b 100%);
    color: var(--text-dark);
}

.final-dark-section {
    background: radial-gradient(circle at center, #1e293b 0%, var(--bg-darker) 100%);
    color: var(--text-dark);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 var(--gold-glow); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(251, 191, 36, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.pulse-anim { animation: pulse 2.5s infinite; }

/* Buttons */
.cta-btn {
    display: inline-block;
    background-color: var(--action);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-decoration: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    letter-spacing: 1px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}
.cta-btn:hover {
    background-color: var(--action-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.6);
}

.small-btn {
    font-size: 1rem;
    padding: 0.8rem 2rem;
}

/* Navbar */
.navbar {
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
}
.logo span {
    color: var(--gold);
}
.btn-sm {
    background: var(--gold);
    color: var(--bg-darker);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: 0.3s;
}
.btn-sm:hover {
    background: #f59e0b;
    color: var(--bg-darker);
}

/* Hero */
.hero {
    padding-top: 10rem;
    padding-bottom: 8rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top center, #1e293b 0%, var(--bg-darker) 100%);
}
.badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.1);
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}
.headline {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
}
.subheadline {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto; margin-right: auto;
}
.hero-image-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto 3rem;
}
.hero-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    object-fit: contain;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.glow-effect {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: var(--gold);
    filter: blur(100px);
    opacity: 0.15;
    z-index: 1;
}

/* Bullet Lists & Icons */
.bullet-list {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}
.bullet-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.bullet-list svg.check {
    width: 20px; height: 20px;
    stroke: var(--action);
    stroke-width: 3;
    fill: none;
    margin-right: 10px;
    flex-shrink: 0;
}
.horizontal-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Method Blocks */
.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.method-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}
.method-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(251, 191, 36, 0.3);
}
.icon-wrapper {
    width: 70px; height: 70px;
    background: rgba(251, 191, 36, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
}
.highlight-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gold);
    font-weight: 600;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.feature-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    border-bottom: 4px solid var(--bg-light);
    transition: 0.3s;
}
.feature-box:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-5px);
}
.feature-box h3 {
    margin: 1rem 0;
    color: var(--bg-darker);
    font-size: 1.2rem;
}
.feature-box p {
    font-size: 0.95rem;
    color: #64748b;
}
.feature-box .highlight-xs {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--bg-darker);
}
.feature-icon {
    width: 60px; height: 60px;
    background: var(--bg-light);
    color: var(--bg-darker);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
}
.col-span-full {
    grid-column: 1 / -1;
}

/* Gallery / Samples Carousel */
.gallery-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
    white-space: nowrap;
}
.gallery {
    display: flex;
    width: max-content;
    gap: 1.5rem;
    animation: scroll-gallery 20s linear infinite;
}
.gallery:hover {
    animation-play-state: paused;
}
@keyframes scroll-gallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)); }
}
.amostra-card {
    flex: 0 0 320px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: #111827;
}
.amostra-card img {
    width: 100%;
    max-height: 400px;
    display: block;
    object-fit: contain;
}

/* Testimonials */
.testimonials-masonry {
    column-count: 3;
    column-gap: 1.5rem;
    margin-top: 3rem;
}

.depoimento-img {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depoimento-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
}

.depoimentos-action {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-outline-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--bg-darker);
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    
    background-image: linear-gradient(var(--bg-darker), var(--bg-darker)), linear-gradient(135deg, #0ea5e9, #3b82f6);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.2);
}

.btn-outline-glow:hover {
    box-shadow: 0 0 25px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
}

.icon-down {
    width: 18px;
    height: 18px;
}

.extra-depoimento {
    display: none;
}

.extra-depoimento.show {
    display: block;
    animation: fadeInDepoimento 0.5s ease forwards;
}

@keyframes fadeInDepoimento {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Garantia */
.garantia p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* FAQ */
.faq-list {
    margin-top: 2rem;
}
.faq-item {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item[open] {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(251, 191, 36, 0.3);
}
.faq-item summary {
    padding: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
    list-style: none; /* Esconde a setinha em alguns navegadores */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker {
    display: none; /* Esconde a setinha no Chrome/Safari */
}
.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item[open] .faq-icon {
    transform: rotate(45deg); /* Vira um 'X' na abertura */
    color: var(--action);
}
.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .testimonials-masonry {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .testimonials-masonry {
        column-count: 1;
    }
}

/* Bonuses */
.bonus-list {
    margin-top: 3rem;
}
.bonus-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    background: rgba(255,255,255,0.02);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.15);
}
.bonus-item.reverse {
    flex-direction: row-reverse;
}
.bonus-img {
    flex: 1;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    object-fit: cover;
}
.bonus-text {
    flex: 1;
    text-align: left;
}
.bonus-text h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.price-strike {
    margin-top: 1.5rem;
    font-size: 1.2rem;
}
.price-strike del {
    color: #ef4444;
    opacity: 0.8;
}
.price-strike strong {
    color: var(--action);
    font-size: 1.8rem;
}

/* Bundle List - Nova Versão Responsiva */
.bundle-img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.resumo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem auto 1rem;
    max-width: 1000px;
}
.resumo-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.resumo-item:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
}
.resumo-icon {
    width: 45px; height: 45px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
}
.resumo-icon svg {
    width: 24px; height: 24px;
    stroke: var(--action);
    stroke-width: 2.5;
}
.resumo-content h4 {
    color: var(--bg-darker);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.resumo-content p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}

/* Pricing Section */
.alert-box {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid #ef4444;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.timer-wrapper {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(251, 191, 36, 0.3);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.pricing-card {
    background: #1e293b;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}
.pricing-card:hover {
    transform: translateY(-10px);
}
.pricing-card.premium {
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.15);
    transform: scale(1.05);
}
.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-5px);
}
.badge-premium {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    font-family: var(--font-heading);
    padding: 0.3rem 1.5rem;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
}
.card-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.basic-header h3 { color: #60a5fa; }
.premium-header h3 { color: var(--gold); font-size: 1.6rem; }
.premium-header p { font-size: 0.85rem; letter-spacing: 1px; color: #cbd5e1; }

.card-body {
    padding: 2rem;
    text-align: center;
}
.pricing-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}
.pricing-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.pricing-list li.disabled {
    opacity: 0.5;
    text-decoration: line-through;
}
.pricing-list svg {
    width: 20px; height: 20px;
    fill: none;
    stroke-width: 2.5;
    margin-right: 12px;
    flex-shrink: 0;
}
.check-green { stroke: var(--action); }
.x-red { stroke: #ef4444; }

.price-tag {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.premium-price { color: var(--gold); font-size: 3rem; }

.btn-outline {
    background: transparent;
    border: 2px solid #60a5fa;
    color: #60a5fa;
    width: 100%;
    padding: 0.8rem;
    box-shadow: none;
}
.btn-outline:hover {
    background: #60a5fa;
    color: #fff;
}
.btn-premium {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .headline { font-size: 2.5rem; }
    .bonus-item { flex-direction: column !important; gap: 1.5rem; text-align: center; }
    .bonus-text { text-align: center; }
    .pricing-card.premium { transform: scale(1); }
    .pricing-card.premium:hover { transform: translateY(-5px); }
    .method-grid, .features-grid, .pricing-grid { grid-template-columns: 1fr; }
    .hero { padding-top: 8rem; }
}
