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

html, body {
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

body {
    overflow-y: auto;
}

.stage {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: #000;
}

.video-wrapper {
    width: 100%;
    background: #000;
}

video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
    object-fit: contain;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    z-index: 10;
    text-align: center;
    padding: 20px;
}

    .overlay.hidden {
        display: none;
    }

.btn {
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .video-wrapper {
        max-width: none;
    }
}

/* Desktop */
@media (min-width: 1024px) {

    .video-wrapper {
        width: 70vw;
        max-width: none;
        position: relative; /* mantém no fluxo */
        top: -300px; /* desloca sem quebrar */
    }
}

    video {
        width: 100%;
        height: auto; /* mantém 9:16 */
    }
}
/* OFERTA RELÂMPAGO */

.oferta-bg {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    isolation: isolate;
}

.oferta-box {
    width: 60vw;
    height: 100vh;
    background: #2b2b2b;
    padding: 40px;
    overflow-y: auto;
    color: #fff;
}

    .oferta-box h1 {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .oferta-box h2 {
        font-size: 20px;
        opacity: 0.85;
        margin-bottom: 30px;
    }

.produto {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

    .produto img {
        width: 140px;
    }

    .produto strong {
        font-size: 20px;
        display: block;
        margin: 10px 0;
    }

    .produto a {
        display: inline-block;
        padding: 12px 20px;
        background: #fff;
        color: #000;
        text-decoration: none;
        border-radius: 999px;
        font-weight: 600;
    }

/* MOBILE */
@media (max-width: 1023px) {
    .oferta-box {
        width: 100vw;
        height: 100vh;
    }
}
