/* DecalKink Degustação — style.css v1.0.0 */

/* ── Overlay do modal (cobre tudo) ─────────────────────────────────────────── */
#stn-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;
    backdrop-filter: blur(5px);
}

/* ── Logo do modal ──────────────────────────────────────────────────────────── */
#stn-logo {
    display: block;
    max-width: 160px;
    max-height: 70px;
    width: auto;
    height: auto;
    margin: 0 auto 20px;
    object-fit: contain;
}

/* ── Caixa do modal ─────────────────────────────────────────────────────────── */
#stn-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);
}

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

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

/* ── Botão Google ───────────────────────────────────────────────────────────── */
#stn-google-btn {
    display: flex;
    justify-content: center;
    margin-bottom: 4px;
    min-height: 44px;
}

#stn-google-btn iframe {
    width: 100% !important;
    min-width: 280px !important;
}

#stn-google-btn > div {
    width: 100% !important;
}

/* ── Divisor "ou" (oculto por padrão) ──────────────────────────────────────── */
.stn-ou {
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 16px 0;
    position: relative;
}
.stn-ou::before, .stn-ou::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: #e5e5e5;
}
.stn-ou::before { left: 0; }
.stn-ou::after  { right: 0; }

/* ── Input de email (oculto por padrão) ────────────────────────────────────── */
#stn-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;
}
#stn-email:focus { border-color: #1a73e8; }

/* ── Botão email (oculto por padrão) ───────────────────────────────────────── */
#stn-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;
}
#stn-btn:hover    { background: #333; }
#stn-btn:disabled { background: #999; cursor: default; }

/* ── Mensagem de erro ───────────────────────────────────────────────────────── */
#stn-erro {
    display: block;
    font-size: 13px;
    color: #d32f2f;
    min-height: 18px;
    margin-bottom: 6px;
}

/* ── Rodapé do modal ────────────────────────────────────────────────────────── */
#stn-modal small {
    font-size: 11px;
    color: #aaa;
    line-height: 1.5;
}
#stn-modal small a { color: #1a73e8; text-decoration: none; }
