@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

:root {
    /* Cores do Fundo da Página (Suave) */
    --bg-page: #e9e4f0; 
    
    /* Cores do Card (Vibrante igual a imagem) */
    --card-gradient-top: #231557;
    --card-gradient-mid: #44107a;
    --card-gradient-bottom: #ff1361; /* O rosa vivo */
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    /* Fundo da página em tom lavanda/cinza claro igual à imagem */
    background: radial-gradient(circle at center, #f5f0ff 0%, #e1d9f0 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    position: relative;
    width: 90%;
    max-width: 450px;
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    color: white;
    /* O segredo: Gradiente vibrante + Sombra pesada e colorida */
    background: linear-gradient(180deg, var(--card-gradient-top) 0%, var(--card-gradient-mid) 45%, var(--card-gradient-bottom) 100%);
    box-shadow: 0 30px 60px rgba(68, 16, 122, 0.4), 0 15px 30px rgba(255, 19, 97, 0.2);
    overflow: hidden;
}

/* Brilho interno para parecer mais tecnológico */
.card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.rocket-icon {
    font-size: 50px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

h2 {
    font-size: 32px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 400;
}

.google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px;
    background: rgba(255, 255, 255, 0.2); /* Botão semi-transparente estilo Glass */
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.google-btn:hover {
    background: white;
    color: #44107a;
    transform: scale(1.02);
}

.google-icon {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    background: white;
    border-radius: 50%;
    padding: 2px;
}

.footer {
    margin-top: 30px;
    font-size: 12px;
    opacity: 0.7;
}

.footer a {
    color: white;
    text-decoration: underline;
}

.cpf-form { width: 100%; margin-bottom: 16px; }
.cpf-input { width: 100%; padding: 16px 18px; font-size: 17px; font-family: 'Inter', sans-serif; border: 2px solid rgba(255,255,255,0.3); border-radius: 16px; background: rgba(255,255,255,0.15); color: white; outline: none; box-sizing: border-box; -webkit-appearance: none; }
.cpf-input::placeholder { color: rgba(255,255,255,0.5); }
.btn-cpf { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 16px 20px; border-radius: 50px; font-size: 16px; font-weight: 700; cursor: pointer; border: none; margin-top: 12px; font-family: 'Inter', sans-serif; transition: all 0.2s; box-sizing: border-box; }
.btn-cpf.disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
.divider { display: flex; align-items: center; gap: 12px; margin: 16px 0; font-size: 13px; opacity: 0.6; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.3); }
.accept-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 20px; text-align: left; font-size: 13px; opacity: 0.85; }
.accept-row input[type=checkbox] { margin-top: 2px; flex-shrink: 0; width: 16px; height: 16px; cursor: pointer; }
.accept-row label { cursor: pointer; line-height: 1.5; }
.accept-row button { background: none; border: none; color: white; text-decoration: underline; cursor: pointer; font-size: 13px; padding: 0; font-family: 'Inter', sans-serif; }
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 999; align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal-box { background: #1a1a2e; border: 1px solid rgba(255,255,255,0.15); border-radius: 24px; width: 92%; max-width: 480px; max-height: 80vh; overflow-y: auto; color: #fff; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px 0; }
.modal-header h3 { margin: 0; font-size: 17px; }
.modal-close { background: none; border: none; color: #fff; font-size: 20px; cursor: pointer; padding: 0; }
.modal-body { padding: 16px 24px 24px; font-size: 13px; line-height: 1.7; opacity: 0.9; }
.modal-body h4 { margin: 16px 0 6px; font-size: 14px; }
.modal-body p { margin: 0 0 8px; }
.btn-ok { width: 100%; padding: 13px; background: linear-gradient(135deg,#44107a,#ff1361); color: #fff; border: none; border-radius: 50px; font-size: 15px; font-weight: 700; cursor: pointer; margin: 0 24px 24px; width: calc(100% - 48px); display: block; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; animation: blobMove 8s infinite alternate ease-in-out; }
.blob:nth-child(1) { width: 300px; height: 300px; background: #44107a; top: -100px; left: -100px; }
.blob:nth-child(2) { width: 250px; height: 250px; background: #ff1361; bottom: -80px; right: -80px; animation-delay: 2s; }
.blob:nth-child(3) { width: 200px; height: 200px; background: #231557; top: 50%; left: 50%; animation-delay: 4s; }
@keyframes blobMove { 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(30px,20px) scale(1.1)} }
.google-btn.disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
