/* Reset e Estilos Base */
:root {
    --primary-color: #28a745;
    --dark-bg: #080808;
    --darker-red: #3A0808;
    --medium-red: #5B2934;
    --text-color: #f8f9fa;
    --text-secondary: #adb5bd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

/* Todos os títulos de seções em verde e negrito */
section h2 {
    color: var(--primary-color);
    font-weight: 800;
}

section {
    padding: 60px 0;
}

/* ===== Black Friday Ribbons (X) in Hero ===== */
.vsl-hero .bf-ribbons {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 8px auto clamp(18px, 3vw, 32px); /* garante folga abaixo do X */
    height: clamp(90px, 12vw, 150px); /* altura suficiente para conter a rotação */
    pointer-events: none; /* não bloquear cliques em CTAs abaixo */
    z-index: 0;
}

.vsl-hero .bf-ribbon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(88vw, 980px);
    height: clamp(26px, 3.8vw, 46px);
    padding: 0 18px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: clamp(11px, 2.2vw, 18px);
    white-space: nowrap;
}

.vsl-hero .bf-ribbon:nth-child(1) {
    transform: translate(-50%, -50%) rotate(-10deg);
    background: #111;
    color: #ffd400;
    border: 1px solid #ffd400;
}
.vsl-hero .bf-ribbon:nth-child(2) {
    transform: translate(-50%, -50%) rotate(10deg);
    background: #ffd400;
    color: #111;
    border: 1px solid #111;
}

/* Garante que o título e o parágrafo fiquem acima visualmente (por segurança) */
.vsl-hero .vsl-hero-content h1,
.vsl-hero .vsl-hero-content p {
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
    .vsl-hero .bf-ribbons { margin: 6px auto clamp(14px, 3.2vw, 22px); height: clamp(88px, 24vw, 130px); }
    .vsl-hero .bf-ribbon { width: 96vw; border-radius: 8px; }
}

/* ===== Playbox Steps (Como funciona) ===== */
.playbox-steps {
    background: linear-gradient(145deg, #0a0a0a, #1a0f0f);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.playbox-steps h2 {
    text-align: center;
    font-size: clamp(1.4rem, 1rem + 2vw, 2rem);
    margin-bottom: 20px;
}
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
.step-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.35);
    border-color: rgba(255,255,255,0.18);
}
.step-icon { display: inline-grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 10px; background: #0e0e0e; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); }
.step-card h3 { margin: 8px 0 6px; font-size: 1.1rem; }
.step-card p { color: var(--text-secondary); font-size: .98rem; }

@media (min-width: 768px) {
    .steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--darker-red);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn:hover {
    background-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
}

/* Mensagem ao finalizar o contador da oferta */
.countdown-ended {
    color: #ff6b6b;
    font-weight: 800;
    text-align: center;
    margin-top: 8px;
}

/* Activity Section */
.activity {
    background-color: var(--medium-red);
    text-align: center;
    padding: 15px 0;
    position: relative;
    z-index: 10;
}

.activity p {
    font-size: 1rem;
    font-weight: 600;
    color: #FFC107;
    margin-bottom: 10px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.trust-badges img {
    height: 30px;
    width: auto;
}

/* What Is Section */
.what-is {
    background-color: var(--dark-bg);
    text-align: center;
}

.what-is h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.what-is p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.consoles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.console-item {
    background-color: var(--medium-red);
    padding: 15px;
    border-radius: 4px;
    font-weight: 600;
}

.compatibility {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.screenshot-placeholder {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.screenshot-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

/* Games Section */
.games-section {
    background-color: var(--darker-red);
    padding: 60px 0;
}

.games-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.games-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
}

.games-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.game-slide {
    scroll-snap-align: start;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.game-slide img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.game-slide:hover img {
    transform: scale(1.05);
}

.game-name {
    margin-top: 10px;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--dark-bg);
    padding: 60px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.testimonials-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-slide {
    scroll-snap-align: start;
    min-width: 300px;
}

.testimonial-content {
    background-color: var(--medium-red);
    padding: 25px;
    border-radius: 8px;
    height: 100%;
}

.stars {
    color: #FFC107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* ===== Offer Section ===== */
.offer {
    background: linear-gradient(145deg, #0b0b0b, #151515);
    color: white;
    text-align: center;
    padding: 60px 20px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

/* Contagem Regressiva */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 15px;
    border-radius: 10px;
    min-width: 70px;
}

.countdown-item span:first-child {
    font-size: 2rem;
    font-weight: 900;
    color: #ffd700;
}

.countdown-item span:last-child {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Texto Promocional */
.promo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffcc00;
    margin-bottom: 20px;
}

/* Caixa de Preço */
.price-box {
    background: rgba(255, 255, 255, 0.12);
    padding: 20px;
    border-radius: 12px;
    margin: 0 auto 30px;
    max-width: 400px;
}

.old-price {
    font-size: 1rem;
    opacity: 0.9;
}

.old-price span {
    color: #ff2a2a; /* vermelho vivo para destacar apenas o número */
    text-decoration: line-through; /* risco somente no valor */
    font-weight: 800;
}

.new-price {
    font-size: 1.2rem;
    margin: 10px 0 5px;
}

.installments {
    font-size: 2rem;
    font-weight: 900;
    color: #ffd700;
}

.cash-price {
    font-size: 1.1rem;
    margin-top: 5px;
}

/* Lista de Benefícios */
.benefits {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 350px;
    text-align: left;
}

.benefits li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    padding: 5px 12px;
    border-radius: 6px;
}

/* Botão */
.btn {
    display: inline-block;
    margin-top: 20px;
    background: #ffd700;
    color: #8b0000;
    font-weight: 900;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn:hover {
    background: #ffcc00;
    transform: scale(1.05);
}

/* Garantia */
.guarantee-badge {
    margin-top: 25px;
}

.guarantee-badge img {
    max-width: 180px;
}

/* ===== Suporte e Segurança ===== */
.support-security {
    background: linear-gradient(145deg, #0a0a0a, #111111);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.support-title {
    text-align: center;
    font-size: clamp(1.4rem, 1rem + 2vw, 2rem);
    margin-bottom: 6px;
    color: var(--primary-color);
}
.support-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
.support-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 18px;
}
.schedule-list {
    list-style: none;
    margin: 8px 0 10px;
    padding: 0;
}
.schedule-list li { margin-bottom: 6px; }
.support-note { color: var(--text-secondary); font-size: .95rem; margin-top: 6px; }

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.feature { display: flex; align-items: center; gap: 10px; padding: 8px 6px; }
.feature-icon { width: 36px; height: 36px; display: grid; place-items: center; background: #0f0f0f; border-radius: 8px; border: 1px solid rgba(255,255,255,0.08); color: #53d39f; }
.feature h4 { margin: 0 0 2px; font-size: 1rem; }
.feature p { margin: 0; color: var(--text-secondary); font-size: .95rem; }

@media (min-width: 768px) {
    .support-grid { grid-template-columns: 1.2fr 1fr; }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Sinais de confiança minimalistas */
.trust-minilist {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    justify-content: center;
    margin: 16px auto 0;
    padding: 0;
    color: var(--text-secondary);
    font-size: .95rem;
}
.trust-minilist li { display: flex; align-items: center; gap: 8px; }
.trust-minilist i { color: #53d39f; }

/* ===== Responsividade ===== */

/* Telas pequenas - smartphones */
@media (max-width: 480px) {
    .offer {
        padding: 40px 15px;
    }
    .promo-text {
        font-size: 1.2rem;
    }
    .countdown {
        gap: 10px;
    }
    .countdown-item span:first-child {
        font-size: 1.5rem;
    }
    .installments {
        font-size: 1.6rem;
    }
    .cash-price {
        font-size: 1rem;
    }
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .guarantee-badge img {
        max-width: 140px;
    }
}

/* Telas médias - tablets */
@media (min-width: 481px) and (max-width: 768px) {
    .promo-text {
        font-size: 1.3rem;
    }
    .installments {
        font-size: 1.8rem;
    }
    .btn {
        padding: 14px 30px;
        font-size: 1.05rem;
    }
}

/* Telas grandes - desktops */
@media (min-width: 1024px) {
    .offer {
        padding: 80px 20px;
    }
    .promo-text {
        font-size: 1.6rem;
    }
    .countdown-item span:first-child {
        font-size: 2.2rem;
    }
    .installments {
        font-size: 2.2rem;
    }
    .cash-price {
        font-size: 1.2rem;
    }
    .btn {
        font-size: 1.2rem;
        padding: 18px 40px;
    }
}

/* Telas muito grandes - monitores 1440px+ */
/* Mantemos a section .offer em largura total para o fundo cobrir toda a página */
@media (min-width: 1440px) {
    .offer {
        max-width: none;
        margin: 0;
        border-radius: 0;
    }
}


/* FAQ Section */
.faq {
    background-color: var(--dark-bg);
    padding: 60px 0;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 15px;
    border-bottom: 1px solid var(--medium-red);
}

.faq-question {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.faq-answer p {
    padding-bottom: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Footer */
footer {
    background-color: #000;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-color);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== CTA reutilizável por seção ===== */
.section-cta {
    text-align: center;
    padding: 10px 0 0;
}
.section-cta .btn { margin-top: 8px; }
.section-cta .cta-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* ===== Botão Verde Padrão + Pulso Suave ===== */
.btn-green {
    background-color: #28a745 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 8px 24px rgba(40,167,69,0.35) !important;
}
.btn-green:hover {
    background-color: #218838 !important;
    box-shadow: 0 10px 28px rgba(40,167,69,0.45) !important;
}

@keyframes btnPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.btn-pulse {
    animation: btnPulse 1.8s ease-in-out infinite;
    transform-origin: center;
}
.btn-pulse:hover {
    animation-play-state: paused;
    transform: scale(1.04);
}
/* Seção Consoles e Jogos */
.consoles-games-section {
    background-color: #1a1a1a;
    padding: 60px 0;
    color: white;
}

.consoles-games-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #28a745;
}

.consoles-games-section p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.consoles-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.console-tab {
    background: #2d2d2d;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 120px;
    border: 2px solid transparent;
}

.console-tab:hover {
    transform: translateY(-5px);
    background: #333;
}

.console-tab.active {
    background: #28a745;
    border-color: #fff;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.console-tab img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.console-tab span {
    font-weight: 600;
    text-align: center;
}

.games-display {
    min-height: 300px;
    position: relative;
}

.games-container {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    animation: fadeIn 0.5s ease-out;
}

.games-container.active {
    display: grid;
}

.game-card {
    background: #2d2d2d;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-card h3 {
    padding: 15px;
    font-size: 1rem;
    text-align: center;
    margin: 0;
}

.compatibility {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: #28a745;
    font-weight: 600;
}

.consoles-games-section {
    background-color: #1a1a1a;
    padding: 60px 0;
    color: white;
}

.consoles-games-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #28a745;
}

.consoles-games-section p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.consoles-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.console-tab {
    background: #2d2d2d;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 120px;
    border: 2px solid transparent;
}

.console-tab:hover {
    transform: translateY(-5px);
    background: #333;
}

.console-tab.active {
    background: #28a745;
    border-color: #fff;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.playstation-subtabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0 25px;
    flex-wrap: wrap;
}

.subtab {
    padding: 8px 15px;
    background: #333;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.subtab:hover {
    background: #444;
}

.subtab.active {
    background: #28a745;
    border-color: #fff;
    font-weight: 600;
}

.games-display {
    min-height: 300px;
    position: relative;
}

.games-container {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    animation: fadeIn 0.5s ease-out;
}

.games-container.active {
    display: grid;
}

.game-card {
    background: #2d2d2d;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-card h3 {
    padding: 15px;
    font-size: 1rem;
    text-align: center;
    margin: 0;
}

.compatibility {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: #28a745;
    font-weight: 600;
}

/* Seção de Demonstração */
.demo-section {
    background-color: #080808;
    padding: 60px 0;
    color: white;
    text-align: center;
}

.demo-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #28a745;
    position: relative;
    display: inline-block;
}

.demo-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #28a745;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-placeholder {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    width: 100%;
    display: block;
    opacity: 0.9;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.play-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(40, 167, 69, 0.9);
    border-radius: 50%;
    margin: 0 auto 15px;
    position: relative;
    transition: all 0.3s ease;
}

.play-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -50%);
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent white;
}

.play-button span {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 8px 15px;
    border-radius: 20px;
}

#demo-video {
    width: 100%;
    display: none;
}

.consoles-badge {
    max-width: 600px;
    margin: 0 auto;
}

.consoles-badge img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.consoles-badge p {
    font-size: 1.1rem;
    color: #ddd;
}


/* Seção Stories */
.stories-testimonials {
    background-color: #080808;
    padding: 60px 0;
    color: white;
    text-align: center;
}

.stories-testimonials h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #28a745;
}

.stories-testimonials .subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #aaa;
}

.stories-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.stories-track {
        margin: 25px auto; /* Margem automática nas laterais para centralizar */

    justify-content: center;
    align-items: center;
    display: flex;
    gap: 15px;
    padding: 0 20px;
    width: max-content;
}

/* Depoimentos: manter cabeçalho centralizado, mas iniciar carrossel pela esquerda e permitir arrastar até o primeiro */
.stories-testimonials .container { display: flex; flex-direction: column; align-items: center; }
.stories-testimonials .stories-wrapper {
    width: 100%;
    display: block;                 /* evita centrar o track por flex */
    overflow-x: auto;               /* garante rolagem horizontal */
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}
.stories-testimonials .stories-track { margin-left: 0; margin-right: 0; }

.story {
    position: relative;
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 280px; /* Ajuste conforme necessário */
    height: 500px; /* Ajuste conforme necessário */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.story-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 15px;
    border-radius: 20px;
}

.client-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #28a745;
}

/* Barra de rolagem personalizada */
.stories-wrapper::-webkit-scrollbar {
    height: 8px;
}

.stories-wrapper::-webkit-scrollbar-track {
    background: #2d2d2d;
    border-radius: 10px;
}

.stories-wrapper::-webkit-scrollbar-thumb {
    background: #28a745;
    border-radius: 10px;
}


/* Seção de Vídeo Simplificada */
.demo-section {
    background-color: #080808;
    padding: 60px 0;
    color: white;
    text-align: center;
}

.demo-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #28a745;
    position: relative;
    display: inline-block;
}

.demo-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #28a745;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#demo-video {
    width: 100%;
    display: block;
    background-color: #000;
}

.consoles-badge {
    max-width: 600px;
    margin: 0 auto;
}

.consoles-badge p {
    font-size: 1.1rem;
    color: #ddd;
}

/* Reset e Estilos Base */
:root {
    --primary-color: #28a745;
    --dark-bg: #080808;
    --darker-red: #3A0808;
    --medium-red: #5B2934;
    --text-color: #f8f9fa;
    --text-secondary: #adb5bd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

section {
    padding: 60px 0;
}



/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--darker-red);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn:hover {
    background-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
}

/* Activity Section */
.activity {
    background-color: var(--medium-red);
    text-align: center;
    padding: 15px 0;
    position: relative;
    z-index: 10;
}

.activity p {
    font-size: 1rem;
    font-weight: 600;
    color: #FFC107;
    margin-bottom: 10px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.trust-badges img {
    height: 30px;
    width: auto;
}

/* What Is Section */
.what-is {
    background-color: var(--dark-bg);
    text-align: center;
}

.what-is h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.what-is p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.consoles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.console-item {
    background-color: var(--medium-red);
    padding: 15px;
    border-radius: 4px;
    font-weight: 600;
}

.compatibility {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.screenshot-placeholder {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.screenshot-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

/* Games Section */
.games-section {
    background-color: var(--darker-red);
    padding: 60px 0;
}

.games-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: white;
}

.games-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
}

.games-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.game-slide {
    scroll-snap-align: start;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.game-slide img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.game-slide:hover img {
    transform: scale(1.05);
}

.game-name {
    margin-top: 10px;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--dark-bg);
    padding: 60px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.testimonials-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-slide {
    scroll-snap-align: start;
    min-width: 300px;
}

.testimonial-content {
    background-color: var(--medium-red);
    padding: 25px;
    border-radius: 8px;
    height: 100%;
}

.stars {
    color: #FFC107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99999;

  width: 56px;
  height: 56px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #25D366;
  color: #fff;
  text-decoration: none;

  box-shadow: 0 10px 22px rgba(0,0,0,.28);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.whatsapp-float svg{
  width: 30px;
  height: 30px;
  display: block;
}

.whatsapp-float:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 28px rgba(0,0,0,.32);
}

/* FAQ Section */
.faq {
    background-color: var(--dark-bg);
    padding: 60px 0;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 15px;
    border-bottom: 1px solid var(--medium-red);
}

.faq-question {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.faq-answer p {
    padding-bottom: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Footer */
footer {
    background-color: #000;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-color);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
/* Seção Consoles e Jogos */
.consoles-games-section {
    background-color: #1a1a1a;
    padding: 60px 0;
    color: white;
}

.consoles-games-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #28a745;
}

.consoles-games-section p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.consoles-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.console-tab {
    background: #2d2d2d;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 120px;
    border: 2px solid transparent;
}

.console-tab:hover {
    transform: translateY(-5px);
    background: #333;
}

.console-tab.active {
    background: #28a745;
    border-color: #fff;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.console-tab img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.console-tab span {
    font-weight: 600;
    text-align: center;
}

.games-display {
    min-height: 300px;
    position: relative;
}

.games-container {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    animation: fadeIn 0.5s ease-out;
}

.games-container.active {
    display: grid;
}

.game-card {
    background: #2d2d2d;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-card h3 {
    padding: 15px;
    font-size: 1rem;
    text-align: center;
    margin: 0;
}

.compatibility {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: #28a745;
    font-weight: 600;
}

.consoles-games-section {
    background-color: #1a1a1a;
    padding: 60px 0;
    color: white;
}

.consoles-games-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #28a745;
}

.consoles-games-section p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.consoles-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.console-tab {
    background: #2d2d2d;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 120px;
    border: 2px solid transparent;
}

.console-tab:hover {
    transform: translateY(-5px);
    background: #333;
}

.console-tab.active {
    background: #28a745;
    border-color: #fff;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.playstation-subtabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0 25px;
    flex-wrap: wrap;
}

.subtab {
    padding: 8px 15px;
    background: #333;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.subtab:hover {
    background: #444;
}

.subtab.active {
    background: #28a745;
    border-color: #fff;
    font-weight: 600;
}

.games-display {
    min-height: 300px;
    position: relative;
}

.games-container {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    animation: fadeIn 0.5s ease-out;
}

.games-container.active {
    display: grid;
}

.game-card {
    background: #2d2d2d;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-card h3 {
    padding: 15px;
    font-size: 1rem;
    text-align: center;
    margin: 0;
}

.compatibility {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: #28a745;
    font-weight: 600;
}

/* Seção de Demonstração */
.demo-section {
    background-color: #080808;
    padding: 60px 0;
    color: white;
    text-align: center;
}

.demo-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #28a745;
    position: relative;
    display: inline-block;
}

.demo-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #28a745;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-placeholder {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    width: 100%;
    display: block;
    opacity: 0.9;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.play-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(40, 167, 69, 0.9);
    border-radius: 50%;
    margin: 0 auto 15px;
    position: relative;
    transition: all 0.3s ease;
}

.play-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -50%);
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent white;
}

.play-button span {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 8px 15px;
    border-radius: 20px;
}

#demo-video {
    width: 100%;
    display: none;
}

.consoles-badge {
    max-width: 600px;
    margin: 0 auto;
}

.consoles-badge img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.consoles-badge p {
    font-size: 1.1rem;
    color: #ddd;
}


/* Seção Stories */
.stories-testimonials {
    background-color: #080808;
    padding: 60px 0;
    color: white;
    text-align: center;
}

.stories-testimonials h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #28a745;
}

.stories-testimonials .subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #aaa;
}

.stories-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.stories-track {
    display: flex;
    gap: 15px;
    padding: 0 20px;
    width: max-content;
}

.story {
    position: relative;
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 280px; /* Ajuste conforme necessário */
    height: 500px; /* Ajuste conforme necessário */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.story-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 15px;
    border-radius: 20px;
}

.client-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #28a745;
}

/* Barra de rolagem personalizada */
.stories-wrapper::-webkit-scrollbar {
    height: 8px;
}

.stories-wrapper::-webkit-scrollbar-track {
    background: #2d2d2d;
    border-radius: 10px;
}

.stories-wrapper::-webkit-scrollbar-thumb {
    background: #28a745;
    border-radius: 10px;
}


/* Seção de Vídeo Simplificada */
.demo-section {
    background-color: #080808;
    padding: 60px 0;
    color: white;
    text-align: center;
}

.demo-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #28a745;
    position: relative;
    display: inline-block;
}

.demo-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #28a745;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Botão flutuante WhatsApp */
.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99999;

  width: 56px;
  height: 56px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #25D366;
  color: #fff;
  text-decoration: none;

  box-shadow: 0 10px 22px rgba(0,0,0,.28);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.whatsapp-float i{
  font-size: 28px;
  line-height: 1;
}

.whatsapp-float:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 28px rgba(0,0,0,.32);
}

.whatsapp-float:active{
  transform: translateY(0);
}

/* Mobile: não ficar colado demais */
@media (max-width: 480px){
  .whatsapp-float{
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}


#demo-video {
    width: 100%;
    display: block;
    background-color: #000;
}

.consoles-badge {
    max-width: 600px;
    margin: 0 auto;
}

.consoles-badge p {
    font-size: 1.1rem;
    color: #ddd;
}

vsl-hero {
    position: relative;
    background-color: var(--darker-red);
    padding: 40px 0 0;
    overflow: hidden;
}

.vsl-hero-content {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.vsl-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out;
}

.vsl-hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 30px;
    color: var(--text-secondary);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vsl-video-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.vsl-video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16/9;
    background-color: #000;
}

.vsl-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vsl-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
}

.vsl-floating-elements {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.vsl-activity {
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    text-align: center;
}

.vsl-activity p {
    color: #FFC107;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.vsl-cta-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    z-index: 3;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    animation: pulse 2s infinite;
}

.vsl-cta-btn:hover {
    background-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
}

 .demo-section {
        padding: 20px 0;
        position: relative;
    }
    
    .demo-title {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .stories-container {
        width: 100%;
        position: relative;
        margin: 0 auto;
        max-width: 1200px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Firefox */
    }
    .stories-container::-webkit-scrollbar { display: none; }
    
    .stories-wrapper {
        display: flex;
        gap: 12px;
        width: max-content; /* largura baseada no conteúdo */
        padding: 8px 6px 14px;
    }
    
    .story-item {
        flex: 0 0 auto; /* impede encolhimento */
        scroll-snap-align: start;
        padding: 0 5px;
        box-sizing: border-box;
    }
    
    .story-image-container {
        margin: 0 auto; /* Centraliza horizontalmente */
        position: relative;
        overflow: hidden;
        border-radius: 16px;
        width: clamp(220px, 70vw, 360px);
        height: clamp(320px, 62vw, 520px);
        background: #0b0b0b;
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 10px 24px rgba(0,0,0,0.35);
        transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    
    .story-image-container:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 14px 32px rgba(0,0,0,0.45);
        border-color: rgba(255,255,255,0.18);
    }
    
    .story-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .image-fade {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 30%;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    }
    
    .consoles-badge {
        text-align: center;
        margin-top: 20px;
    }
    
    .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.5);
        color: white;
        border: none;
        font-size: 24px;
        cursor: pointer;
        width: 40px;
        height: 60px;
        z-index: 10;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .left-arrow {
        left: 10px;
    }
    
    .right-arrow {
        right: 10px;
    }

     .stories-testimonials {
        padding: 40px 0;
        background: #0a0a0a;
    }
    
    .stories-testimonials .video-container {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 177.78%; /* Mantém o mesmo tamanho visual (aprox. 280x500) e responsivo */
        overflow: hidden;
        border-radius: 10px;
        background: #000;
    }
    
    .stories-testimonials .story-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; /* preenche como antes, sem “cortar” o card em largura */
        background: #000;
        display: block;
    }
    
    .stories-testimonials .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        cursor: pointer;
        z-index: 2;
        transition: all 0.3s ease;
    }
    
    .stories-testimonials .play-button:hover {
        background: rgba(255, 255, 255, 0.8);
        color: #000;
        transform: translate(-50%, -50%) scale(1.1);
    }
    
    .stories-testimonials .story-info {
        display: flex;
        align-items: center;
        margin-top: 15px;
    }
    
    .stories-testimonials .client-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-right: 10px;
        object-fit: cover;
    }

    /* Evitar recorte do primeiro vídeo: usa largura responsiva e altura automática */
    .stories-testimonials .story {
        width: 280px;   /* mesmo tamanho de antes */
        height: 500px;  /* mesmo tamanho de antes */
    }

    @media (max-width: 768px) {
        .stories-testimonials .story {
            width: 72vw;                   /* responsivo mantendo proporção visual */
            height: calc(72vw * 1.7778);   /* ~500/280 = 1.7857; usamos 16:9 aprox para fluidez */
            max-height: 86vh;              /* evita extrapolar a altura visível */
        }
    }

      .system-requirements {
        background-color: #000;
        color: #fff;
        padding: 50px 0;
        font-family: 'Segoe UI', Arial, sans-serif;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .section-title {
        text-align: center;
        color: var(--primary-color);
        font-size: 2.2rem;
        margin-bottom: 40px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .requirements-grid {
        display: flex;
        gap: 30px;
    }
    
    .requirements-column, .controls-column {
        flex: 1;
    }
    
    .requirements-card, .controls-card {
        background-color: #111;
        border-radius: 8px;
        padding: 30px;
        height: 100%;
    }
    
    .card-title {
        color: #fff;
        font-size: 1.5rem;
        margin-bottom: 25px;
        text-transform: uppercase;
        border-bottom: 2px solid #333;
        padding-bottom: 10px;
    }
    
    .specs-list {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
    }
    
    .specs-list li {
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .spec-category {
        color: #f0f0f0;
        font-weight: bold;
        display: inline-block;
        min-width: 150px;
    }
    
    .games-info {
        margin-top: 30px;
    }
    
    .games-info p {
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .games-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 15px;
    }
    
    .games-grid span {
        background-color: #222;
        padding: 8px 12px;
        border-radius: 4px;
        text-align: center;
        font-size: 0.9rem;
    }
    
    .controls-list {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
    }
    
    .controls-list li {
        margin-bottom: 12px;
        padding-left: 20px;
        position: relative;
        line-height: 1.6;
    }
    
    .controls-list li:before {
        content: "•";
        color: #4CAF50;
        font-size: 1.5rem;
        position: absolute;
        left: 0;
        top: -3px;
    }
    
    .driver-info {
        background-color: #222;
        padding: 20px;
        border-radius: 6px;
    }
    
    .driver-info h4 {
        color: #4CAF50;
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    
    .driver-info p {
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .requirements-grid {
            flex-direction: column;
        }
        
        .section-title {
            font-size: 1.8rem;
        }
        
        .card-title {
            font-size: 1.3rem;
        }
        
        .games-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .spec-category {
            display: block;
            margin-bottom: 5px;
            min-width: auto;
        }
         .highlight-1 {
        color: #2196F3; /* Verde para "Acesso Ilimitado" - sensação de liberdade */
    }
    
    .highlight-2 {
        color: #2196F3; /* Laranja para "Jogos dos Sonhos" - emoção e desejo */
    }
    
 
    
     .highlight-4 {
        background-color: #2196F3; /* Azul como fundo */
        color: white; /* Texto branco */
        padding: 2px 6px; /* Espaçamento interno */
        border-radius: 4px; /* Cantos levemente arredondados */
        font-weight: bold; /* Texto em negrito */
    }
    
    }

     .highlight-1 {
        color: #2196F3; /* Verde para "Acesso Ilimitado" - sensação de liberdade */
    }
    
    .highlight-2 {
        color: #2196F3; /* Laranja para "Jogos dos Sonhos" - emoção e desejo */
    }
    
 
    
     .highlight-4 {
        background-color: #2196F3; /* Azul como fundo */
        color: white; /* Texto branco */
        padding: 2px 6px; /* Espaçamento interno */
        border-radius: 4px; /* Cantos levemente arredondados */
        font-weight: bold; /* Texto em negrito */
    }
    
   
   
  
    
    /* Mantenha os estilos existentes abaixo */
    .countdown {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .countdown-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
        font-weight: bold;
    }
    
    .price-box {
    margin: 25px auto; /* Margem automática nas laterais para centralizar */
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;     /* Centraliza verticalmente */
    width: fit-content;     /* Ajusta a largura ao conteúdo */
}
    .installments {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    border-radius: 9px;
    display: inline; /* ou inline-block */
    background-color: rgb(0, 0, 0); /* fundo preto */
    color: rgb(45, 223, 9); /* cor do texto (amarelo típico de marca-texto) */
    padding: 2px 6px; /* espaçamento interno */
    box-decoration-break: clone; /* garante que o fundo se comporte como marca-texto */
    -webkit-box-decoration-break: clone; /* para compatibilidade com Safari */
    line-height: 1.8; /* altura de linha aumentada */
}
    
    .cash-price {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .btn {
        background-color: #ffcc00;
        color: #000;
        padding: 15px 30px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        display: inline-block;
        font-size: 1.2rem;
        transition: all 0.3s;
    }
    
    .btn:hover {
        background-color: #fff;
        transform: scale(1.05);
    }
    
    .guarantee-badge {
        margin-top: 30px;
    }
    
    @media (max-width: 767px) {
        .stories-wrapper { gap: 10px; }
        /* Preview de imagens (seção "Um pouco do que você vai receber por dentro") */
        #preview-scroller .story-image-container {
            width: 92vw;
            aspect-ratio: 9 / 16;
            height: auto;
        }
        #preview-scroller .story-image-container img { object-fit: contain; }
    }
/* Efeito de pulsação para o botão */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsivo */
@media (max-width: 768px) {
    .vsl-hero {
        padding: 30px 0 0;
    }
    
    .vsl-hero-content h1 {
        font-size: 2rem;
    }
    
    .vsl-hero-content p {
        font-size: 1.1rem;
    }
    
    .vsl-video-wrapper {
        padding: 0;
    }
    
    .vsl-video-container {
        border-radius: 0;
    }
    
    .vsl-cta-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .vsl-activity p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .vsl-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .vsl-hero-content p {
        font-size: 1rem;
    }
    
    .vsl-floating-elements {
        padding: 15px;
    }
    
}
/* Efeitos para a contagem regressiva */
.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #28a745;
    transition: all 0.3s ease;
}

.countdown-item span:last-child {
    font-size: 0.9rem;
    text-transform: uppercase;
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.1); color: #ff6b6b; }
}

/* Estilo para quando a oferta acabar */
.waitlist-form {
    max-width: 400px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.waitlist-form input {
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .countdown-item span:first-child {
        font-size: 2rem;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .demo-title {
        font-size: 1.8rem;
    }
    
    .video-container {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .demo-title {
        font-size: 1.5rem;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .story {
        width: 250px;
        height: 450px;
    }
}

@media (max-width: 480px) {
    .stories-testimonials h2 {
        font-size: 1.8rem;
    }
    
    .story {
        width: 220px;
        height: 400px;
    }
    
    .client-avatar {
        width: 35px;
        height: 35px;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .demo-title {
        font-size: 1.8rem;
    }
    
    .play-icon {
        width: 60px;
        height: 60px;
    }
    
    .play-button span {
        font-size: 1rem;
    }
    
    .video-container {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .demo-title {
        font-size: 1.5rem;
    }
    
    .play-icon {
        width: 50px;
        height: 50px;
    }
    
    .play-icon::before {
        border-width: 10px 0 10px 18px;
    }
    
    .play-button span {
        font-size: 0.9rem;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsivo */
@media (max-width: 768px) {
    .consoles-selector {
        gap: 10px;
    }
    
    .console-tab {
        width: 100px;
        padding: 10px;
    }
    
    .console-tab img {
        width: 50px;
        height: 50px;
    }
    
    .playstation-subtabs {
        gap: 8px;
    }
    
    .subtab {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .games-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .game-card img {
        height: 150px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsivo */
@media (max-width: 768px) {
    .consoles-selector {
        gap: 10px;
    }
    
    .console-tab {
        width: 100px;
        padding: 10px;
    }
    
    .console-tab img {
        width: 50px;
        height: 50px;
    }
    
    .games-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .game-card img {
        height: 150px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .btn {
       background-color: #ffcc00;
        color: #000;
        padding: 15px 30px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        display: inline-block;
        font-size: 1.2rem;
        transition: all 0.3s;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
    }
    
    .installments {
        font-size: 1.5rem;
    }
    
    .cash-price {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .what-is h2, .games-section h2, 
    .testimonials h2, .faq h2 {
        font-size: 1.5rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.5rem;
    }
    
    .countdown-item span:last-child {
        font-size: 0.8rem;
    }
    
    .offer h3 {
        font-size: 1.2rem;
    }
}


/* Efeitos para a contagem regressiva */
.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #28a745;
    transition: all 0.3s ease;
}

.countdown-item span:last-child {
    font-size: 0.9rem;
    text-transform: uppercase;
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.1); color: #ff6b6b; }
}

/* Estilo para quando a oferta acabar */
.waitlist-form {
    max-width: 400px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.waitlist-form input {
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .countdown-item span:first-child {
        font-size: 2rem;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .demo-title {
        font-size: 1.8rem;
    }
    
    .video-container {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .demo-title {
        font-size: 1.5rem;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .story {
        width: 250px;
        height: 450px;
    }
}

@media (max-width: 480px) {
    .stories-testimonials h2 {
        font-size: 1.8rem;
    }
    
    .story {
        width: 220px;
        height: 400px;
    }
    
    .client-avatar {
        width: 35px;
        height: 35px;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .demo-title {
        font-size: 1.8rem;
    }
    
    .play-icon {
        width: 60px;
        height: 60px;
    }
    
    .play-button span {
        font-size: 1rem;
    }
    
    .video-container {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .demo-title {
        font-size: 1.5rem;
    }
    
    .play-icon {
        width: 50px;
        height: 50px;
    }
    
    .play-icon::before {
        border-width: 10px 0 10px 18px;
    }
    
    .play-button span {
        font-size: 0.9rem;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsivo */
@media (max-width: 768px) {
    .consoles-selector {
        gap: 10px;
    }
    
    .console-tab {
        width: 100px;
        padding: 10px;
    }
    
    .console-tab img {
        width: 50px;
        height: 50px;
    }
    
    .playstation-subtabs {
        gap: 8px;
    }
    
    .subtab {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .games-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .game-card img {
        height: 150px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsivo */
@media (max-width: 768px) {
    .consoles-selector {
        gap: 10px;
    }
    
    .console-tab {
        width: 100px;
        padding: 10px;
    }
    
    .console-tab img {
        width: 50px;
        height: 50px;
    }
    
    .games-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .game-card img {
        height: 150px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
    }
    
    .installments {
        font-size: 1.5rem;
    }
    
    .cash-price {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .what-is h2, .games-section h2, 
    .testimonials h2, .faq h2 {
        font-size: 1.5rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.5rem;
    }
    
    .countdown-item span:last-child {
        font-size: 0.8rem;
    }
    
    .offer h3 {
        font-size: 1.2rem;
    }
}




.video-container {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .play-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        cursor: pointer;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .play-overlay:hover {
        background: rgba(0, 0, 0, 0.7);
        transform: translate(-50%, -50%) scale(1.1);
    }
    
    .story-video {
        width: 100%;
        height: auto;
        display: block;
    }

    