:root {
    --primary-pink: #FF2A85;
    --primary-blue: #00E5FF;
    --primary-purple: #8A2BE2;
    --dark-bg: #05030A;
    --darker-bg: #020104;
    --text-main: #FFFFFF;
    --text-muted: #B0B0C0;
    --glass-bg: rgba(10, 5, 20, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--darker-bg);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .time-value, .cta-button {
    font-family: 'Oswald', sans-serif;
}

/* Globais */
.overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(2,1,4,1) 100%);
    z-index: 1;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.top-nav {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.nav-logo {
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.scarcity-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 42, 133, 0.2);
    border: 1px solid var(--primary-pink);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 42, 133, 0.4);
}

.pulsing-dot {
    width: 12px; height: 12px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    animation: pulseDot 1s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7); }
    70% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(0, 229, 255, 0); }
    100% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}

.glitch-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
    text-shadow: 3px 3px 0 var(--primary-pink), -3px -3px 0 var(--primary-blue);
    margin-bottom: 0.5rem;
}

.sub-title {
    font-size: 1.5rem;
    color: var(--primary-blue);
    letter-spacing: 2px;
}

.hero-copy {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 800px;
}

/* TIMER */
.timer-grid {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0 2rem 0;
}

.time-block {
    background: var(--glass-bg);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.time-value {
    font-size: 3rem;
    color: var(--primary-blue);
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
    line-height: 1;
}

.time-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #fff;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* BUTTONS */
.cta-button {
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 500px;
}

.cta-button.full-width {
    max-width: 100%;
    margin-top: 1rem;
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--primary-pink), #D8005A);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 42, 133, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 42, 133, 0.6);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.cta-button.secondary:hover {
    background: var(--primary-blue);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

/* SECTIONS */
.feature-section {
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-section.dark-bg {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.feature-content {
    flex: 1;
}

.feature-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    position: relative;
}

.feature-image::after {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
    pointer-events: none;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.05);
}

.section-title {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.neon-text {
    color: var(--primary-pink);
    text-shadow: 0 0 20px rgba(255, 42, 133, 0.5);
}

.section-copy {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.section-copy.highlight {
    color: #fff;
    border-left: 4px solid var(--primary-blue);
    padding-left: 1rem;
    font-style: italic;
}

.bonus-box {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--primary-blue);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.bonus-box h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.bonus-box ul {
    list-style: none;
}

.bonus-box li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.bonus-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-pink);
    font-weight: bold;
}

/* GALLERY */
.gallery-section {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.grid-img {
    width: 100%;
    border-radius: 12px;
    filter: grayscale(30%) contrast(120%);
    transition: filter 0.3s;
}

.grid-img:hover {
    filter: grayscale(0%) contrast(100%);
}

/* FINAL CTA */
.final-cta {
    position: relative;
    padding: 8rem 2rem;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(2,1,4,1) 0%, rgba(2,1,4,0.4) 100%);
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.final-title {
    font-size: 4rem;
    color: #fff;
    text-shadow: 2px 2px 0 var(--primary-blue);
}

.secure-badges {
    display: flex;
    gap: 2rem;
    color: #00FF66;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* MODAL */
.modal-backdrop {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.modal-glass {
    background: var(--dark-bg);
    border: 2px solid var(--primary-pink);
    border-radius: 20px;
    padding: 2.5rem;
    width: 90%;
    max-width: 480px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 42, 133, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

/* Scrollbar para modal */
.modal-glass::-webkit-scrollbar {
    width: 8px;
}
.modal-glass::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.5);
    border-radius: 4px;
}
.modal-glass::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.modal-logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.price-tag {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.new-price {
    color: #00FF66;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Oswald', sans-serif;
}

/* Formulário de Checkout */
.custom-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: left;
    margin-top: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 14px;
    background: #0A0A0A;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 10px rgba(255, 42, 133, 0.2);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300E5FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* Loaders e Mensagens */
#loading-container {
    padding: 3rem 0;
}

.spinner-large {
    width: 50px; height: 50px;
    border: 4px solid rgba(255,255,255,0.1);
    border-top-color: var(--primary-pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem auto;
}

.success-alert {
    background: rgba(0, 255, 102, 0.1);
    border: 1px solid #00FF66;
    color: #00FF66;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Seção do Pix */
.qr-container {
    background: white;
    padding: 10px;
    display: inline-block;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.copy-paste-section {
    text-align: left;
}

.copy-paste-section label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.input-group {
    display: flex;
    margin-top: 10px;
}

.input-group input {
    flex: 1;
    padding: 12px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px 0 0 4px;
}

.input-group button {
    padding: 0 20px;
    background: var(--primary-pink);
    border: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

.modal-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.status-indicator {
    color: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.spinner {
    width: 20px; height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* RESPONSIVE */
@media (max-width: 900px) {
    .feature-section {
        flex-direction: column;
        padding: 4rem 1.5rem;
        text-align: center;
    }
    .feature-section.left-image {
        flex-direction: column-reverse;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .timer-grid {
        gap: 0.5rem;
    }
    .secure-badges {
        flex-direction: column;
        gap: 10px;
    }
}


/* PLATFORM SELECTION BOXES */
.platform-selection {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}
.platform-box {
    flex: 1;
    cursor: pointer;
}
.platform-box input {
    display: none;
}
.box-content {
    background: #0A0A0A;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    color: var(--text-muted);
    font-weight: bold;
    font-size: 1.1rem;
}
.box-content .platform-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s;
    filter: grayscale(100%) brightness(150%);
}
.platform-box.ps5 .platform-icon {
    width: 60px;
    height: 60px;
}
.platform-box:hover .box-content {
    border-color: #555;
    background: #111;
}

/* Xbox Active State */
.platform-box.xbox input:checked + .box-content {
    border-color: #107C10;
    box-shadow: 0 0 20px rgba(16, 124, 16, 0.4);
    background: rgba(16, 124, 16, 0.1);
    color: #fff;
}
.platform-box.xbox input:checked + .box-content .platform-icon {
    filter: drop-shadow(0 0 5px #107C10);
    transform: scale(1.15);
}

/* PS5 Active State */
.platform-box.ps5 input:checked + .box-content {
    border-color: #00439C;
    box-shadow: 0 0 20px rgba(0, 67, 156, 0.4);
    background: rgba(0, 67, 156, 0.1);
    color: #fff;
}
.platform-box.ps5 input:checked + .box-content .platform-icon {
    filter: drop-shadow(0 0 5px #00E5FF);
    transform: scale(1.15);
}
.platform-box.ps5 input:checked + .box-content {
    border-color: #00E5FF;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}



/* SALES VIDEO */
.video-container {
    width: 100%;
    max-width: 800px;
    margin: 1rem auto 2rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 20px rgba(255, 42, 133, 0.3);
    border: 2px solid rgba(255, 42, 133, 0.5);
    background: #000;
}

.sales-video {
    width: 100%;
    height: auto;
    display: block;
    outline: none;
}



/* Custom VSL Play Button */
.video-container {
    position: relative;
    cursor: pointer;
}
.custom-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 42, 133, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255, 42, 133, 0.6);
}
.custom-play-btn svg {
    width: 40px;
    height: 40px;
    fill: #fff;
    margin-left: 5px; /* Offset para centrar opticamente */
}
.video-container:hover .custom-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 42, 133, 1);
}
.custom-play-btn.hidden {
    opacity: 0;
    pointer-events: none;
}



/* Fix logo overlap on mobile */
@media (max-width: 768px) {
    .top-nav {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .hero-section {
        justify-content: flex-start;
        padding-top: 1rem;
    }
    .glitch-title {
        font-size: 2.8rem;
    }
}

