/* ===== Estilos globais ===== */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f3f4f6;
    -webkit-tap-highlight-color: transparent;
}

/* ===== Scrollbar oculta ===== */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ===== Container de vídeo (proporção 16:9) ===== */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-container video,
.video-container iframe,
.video-container div.player-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== Simulação de moldura mobile no desktop ===== */
@media (min-width: 640px) {
    .app-container {
        max-width: 430px;
        margin: 20px auto;
        border-radius: 32px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        overflow: hidden;
        border: 8px solid #27251F;
        min-height: 844px;
        max-height: 90vh;
    }
}
