@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;
}
