/* TattooVista Degustação — style.css v1.2 */

/* ── Overlay do modal (cobre tudo e inibe a viewport) ───────────────────────── */
#tvt-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    background: rgba(0, 0, 0, 0.85); /* Escurece o fundo mantendo visível */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    backdrop-filter: blur(5px); /* Adiciona um leve desfoque para inibir a visão clara */
}

/* ── Container do Iframe ────────────────────────────────────────────────────── */
#tvt-modal-container {
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    height: 600px;
    max-height: 90vh;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.4);
}

#tvt-iframe-modal {
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Tela de expiração ──────────────────────────────────────────────────────── */
#tvt-fim {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    background: rgba(0,0,0,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #fff;
}

#tvt-fim p:first-child {
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

#tvt-fim p:last-of-type {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 28px;
}

.tvt-spinner {
    width: 46px;
    height: 46px;
    border: 4px solid rgba(255,215,0,.25);
    border-top-color: #ffd700;
    border-radius: 50%;
    animation: tvt-gira 1s linear infinite;
    margin: 0 auto;
}

@keyframes tvt-gira {
    to { transform: rotate(360deg); }
}
