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

/* ── Overlay do modal (cobre tudo) ─────────────────────────────────────────── */
#tvt-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Caixa do modal ─────────────────────────────────────────────────────────── */
#tvt-modal {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0,0,0,.4);
}

#tvt-modal h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
}

#tvt-modal p {
    font-size: 14px;
    color: #666;
    margin: 0 0 28px;
}

#tvt-google-btn {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    min-height: 44px;
}

.tvt-ou {
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 16px 0;
    position: relative;
}
.tvt-ou::before, .tvt-ou::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: #e5e5e5;
}
.tvt-ou::before { left: 0; }
.tvt-ou::after  { right: 0; }

#tvt-email {
    width: 100%;
    height: 46px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    margin-bottom: 10px;
    transition: border-color .2s;
}
#tvt-email:focus { border-color: #1a73e8; }

#tvt-btn {
    width: 100%;
    height: 46px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 6px;
    transition: background .2s;
}
#tvt-btn:hover    { background: #333; }
#tvt-btn:disabled { background: #999; cursor: default; }

#tvt-erro {
    display: block;
    font-size: 13px;
    color: #d32f2f;
    min-height: 18px;
    margin-bottom: 6px;
}

#tvt-modal small {
    font-size: 11px;
    color: #aaa;
    line-height: 1.5;
}
#tvt-modal small a { color: #1a73e8; text-decoration: 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); }
}
