/* --- GERAL & FONTES --- */
:root {
    --primary-color: #ffd700; /* Dourado */
    --secondary-color: #1a1a1a;
    --dark-bg: #121212;
    --light-bg: #f4f4f4;
    --text-light: #ffffff;
    --text-dark: #333;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 40px; /* Espaço para a faixa superior fixa */
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-container {
    max-width: 720px;
}

h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section {
    padding: 60px 0;
}

.section-dark {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 900;
}

.section-divider {
    height: 10px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* Faixa Superior de Escassez */
.top-bar {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

/* --- BOTÕES (CTA) --- */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    text-align: center;
    margin-top: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* --- SEÇÕES ESPECÍFICAS --- */

/* Header / Hero */
.section-hero {
    background-color: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.section-hero .container {
    position: relative;
    z-index: 2;
}
.hero-subtitle {
    max-width: 700px;
    margin: 20px auto 30px;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-light);
}
.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/efeito-loja-shopping.png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}
.main-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 0px;
}

/* Tabela Comparativa */
.comparison-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    color: var(--text-light);
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
}
.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #444;
}
.comparison-table th {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    background-color: #111;
}
.comparison-table td:first-child {
    text-align: left;
    font-weight: bold;
}
.comparison-table tbody tr:last-child td {
    border-bottom: none;
}
.comparison-table .check { font-size: 1.5rem; color: #2ecc71; }
.comparison-table .cross { font-size: 1.5rem; color: #e74c3c; }
.comparison-table .warning { font-size: 1.5rem; color: #f1c40f; }


/* Objeções */
.objection-list {
    list-style: none;
}
.objection-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding-left: 30px;
    position: relative;
}
.objection-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* Demo GIF Container */
.gif-demo-container {
    width: 100%;
    max-width: 720px;
    margin: 20px auto 40px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid var(--primary-color);
    line-height: 0;
}
.gif-demo-container img {
    width: 100%;
    display: block;
}

/* Oferta e Galeria de Clientes */
.real-catalogs-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    align-items: center;
}
.real-catalogs-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}
.real-catalogs-gallery img:hover {
    transform: scale(1.03);
}
.feature-list .feature-item {
    background-color: #2a2a2a;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}
.check-list {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

/* Depoimentos */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}
.testimonial {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
}
.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
}
.testimonial-text {
    font-style: italic;
    color: #555;
    flex-grow: 1;
}
.testimonial-text::before { content: '“'; margin-right: 4px; }
.testimonial-text::after { content: '”'; margin-left: 4px; }

/* Seção do Criador */
.creator-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
}
.creator-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    flex-shrink: 0;
}
.creator-bio .section-title {
    text-align: left;
    margin-bottom: 15px;
}
.creator-bio p {
    margin-bottom: 10px;
}

/* Benefícios */
.benefits-list {
    list-style: none;
    padding-left: 0;
    columns: 2;
    gap: 20px;
}

/* Bônus */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    }
}
.fast-action-bonus {
    background: linear-gradient(45deg, #1d1d1d, #2b2b2b);
    border: 2px solid var(--primary-color);
    padding: 20px;
    margin: 40px auto 0 auto; /* Ajustado para centralizar */
    border-radius: 10px;
    text-align: center;
    max-width: 700px;
    color: var(--text-light);
    animation: pulse-glow 2.5s infinite; /* Animação adicionada */
}
#spot-counter {
    color: var(--primary-color);
    font-weight: 900;
}
.bonus-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}
.bonus-card {
    border: 2px solid var(--primary-color);
    padding: 25px;
    border-radius: 10px;
}

/* FAQ */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #444;
    padding-bottom: 20px;
}

/* Garantia e Planos */
.section-guarantee {
    background-color: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
}
.guarantee-seal-placeholder {
    display: flex;
    justify-content: center;
    margin: 0 auto 20px;
}
.guarantee-seal-img {
    width: 150px;
    height: auto;
}
.no-risk {
    font-style: italic;
    color: #ccc;
    margin-bottom: 30px;
}
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.plan-box {
    background-color: #2a2a2a;
    border: 2px solid #555;
    border-radius: 10px;
    padding: 30px;
    width: 320px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}
.plan-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}
.plan-box .price-description {
    font-size: 0.9rem;
    color: #ccc;
    min-height: 40px;
}
.plan-box .price {
    font-size: 1.5rem;
    margin: 10px 0 20px 0;
    color: var(--text-light);
    line-height: 1.1;
}
.plan-box .price strong {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
}
.original-price {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
}
.plan-box.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}
.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 5px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
}
.plan-box.popular h3 {
    margin-top: 25px;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    body { padding-top: 55px; } /* Espaço maior para a faixa no mobile */
    .top-bar { font-size: 0.8rem; line-height: 1.2; }
    h2 { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .columns, .benefits-list {
        grid-template-columns: 1fr;
        columns: 1;
    }
    .comparison-table { font-size: 0.8rem; }
    .comparison-table th, .comparison-table td { padding: 8px; }
    .real-catalogs-gallery { grid-template-columns: 1fr; }
    .creator-section .container { flex-direction: column; text-align: center; }
    .creator-bio .section-title { text-align: center; }
    .pricing-container { flex-direction: column; align-items: center; }
    .plan-box.popular { transform: scale(1); }
    .main-logo { max-width: 200px; }
}