/**
 * TattooVistaTry — Estilos
 * Arquivo: assets/tvt-styles.css
 * Versão:  1.4.0
 */

/* ── Overlay de Captura de Lead ── */
.tvt-lead-overlay {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Modal Base ── */
.tvt-modal {
    background: #111;
    border: 1px solid #00aaff;
    border-radius: 15px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    color: #fff;
    font-family: sans-serif;
}

.tvt-modal h2 {
    color: #00aaff;
    margin-bottom: 15px;
}

.tvt-modal p {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* ── Modal de Expiração ── */
.tvt-modal--expire {
    border-color: #ff00ff;
}

.tvt-modal--expire h2 {
    color: #ff00ff;
}

/* ── Input de E-mail ── */
#tvt-email {
    width: 100%;
    padding: 12px;
    margin: 20px 0 8px;
    border-radius: 5px;
    border: 1px solid #333;
    background: #222;
    color: #fff;
    box-sizing: border-box;
    font-size: 15px;
}

#tvt-email:focus {
    outline: none;
    border-color: #00aaff;
}

/* ── Mensagem de Erro ── */
.tvt-error-msg {
    color: #ff4444;
    font-size: 13px;
    margin-bottom: 10px;
}

/* ── Botão ── */
.tvt-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #00aaff, #a855f7);
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    transition: opacity 0.2s ease;
}

.tvt-btn:hover {
    opacity: 0.9;
}

.tvt-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.tvt-btn--expire {
    background: linear-gradient(135deg, #ff00ff, #a855f7);
    margin-top: 15px;
}

/* ── Display do Timer (canto inferior direito) ── */
#tvt-timer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #000;
    color: #ff00ff;
    padding: 10px 20px;
    border: 1px solid #ff00ff;
    border-radius: 50px;
    font-weight: bold;
    font-family: monospace;
    font-size: 14px;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.4);
}

/* ── Overlay de Expiração ── */
.tvt-expire-overlay {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
}

.tvt-expire-overlay.active {
    display: flex;
}
