/* 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: #ffd700;
    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;
}

/* ===== Offer Section ===== */
.offer {
    background: linear-gradient(145deg, #8b0000, #000000);
    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: #ffd700;
    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;
    text-decoration: line-through;
    opacity: 0.8;
}

.old-price span {
    color: #ffbaba;
}

.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: #ffff;
    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;
}

/* ===== 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+ */
@media (min-width: 1440px) {
    .offer {
        max-width: 1200px;
        margin: auto;
        border-radius: 12px;
    }
}


/* 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 {
        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;
}

.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;
}


/* 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);
}

#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%;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
        max-width: 1200px;
    }
    
    .stories-wrapper {
        display: flex;
        transition: transform 0.5s ease;
        width: 100%;
        padding: 10px 0;
    }
    
    .story-item {
        flex: 0 0 calc(100% / 1);
        padding: 0 5px;
        box-sizing: border-box;
    }
    
    .story-image-container {
                    margin: 0 auto; /* Centraliza horizontalmente */

        width: 100%;
        height: 800px;
        width: 400px;
        position: relative;
        overflow: hidden;
        border-radius: 16px;
    }
    
    .story-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .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: #3A0808;
    }
    
    .video-container {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 177.78%; /* Proporção 16:9 */
        overflow: hidden;
        border-radius: 10px;
        background: #000;
    }
    
    .story-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .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;
    }
    
    .play-button:hover {
        background: rgba(255, 255, 255, 0.8);
        color: #000;
        transform: translate(-50%, -50%) scale(1.1);
    }
    
    .story-info {
        display: flex;
        align-items: center;
        margin-top: 15px;
    }
    
    .client-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-right: 10px;
        object-fit: cover;
    }

      .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: #fff;
        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: #ffd700;
        color: #ffff;
        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 (min-width: 768px) {
        .story-item {
            flex: 0 0 calc(100% / 3);
        }
        
        .arrow {
            width: 50px;
            height: 80px;
            font-size: 30px;
        }
    }
    
    @media (max-width: 767px) {
        .story-image-container {
            height: 800px;
            width: 300px;
            
        }
    }

     @media (max-width: 767px) {
       
       .story-image-container {
    width: 90vw; /* Usa a largura total da viewport */
    height: 100vh; /* Usa a altura total da viewport */
    max-width: 100%; /* Garante que não ultrapasse a largura disponível */
    max-height: 90vh; /* Deixa um espaço para eventual barra de navegação */
    object-fit: contain; /* Mantém a proporção sem cortar a imagem */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000; /* Fundo preto para áreas não preenchidas */
}

.story-image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
        
        .arrow {
            width: 30px;
            height: 50px;
            font-size: 20px;
        }
        
        .left-arrow {
            left: 5px;
        }
        
        .right-arrow {
            right: 5px;
        }
    }
/* 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: #ffd700;
        color: #ffff;
        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;
    }

    