@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { color: #1f2937; overflow: hidden; background-color: #0f172a; }

.video-fundo { position: fixed; top: 50%; left: 50%; min-width: 100%; min-height: 100%; z-index: -2; transform: translate(-50%, -50%); object-fit: cover; opacity: 0.5; }
.overlay-organico { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, rgba(255,255,255,0.88) 0%, rgba(235,238,245,0.98) 100%); z-index: -1; }

.tela-completa { display: flex; flex-direction: column; min-height: 100vh; justify-content: space-between; align-items: center; padding: 20px 30px; }
.topo-minimalista { padding-top: 10px; z-index: 10; }
.badge-pequeno { font-size: 0.9rem; font-weight: 800; color: #dc2626; letter-spacing: 1.2px; background: rgba(220, 38, 38, 0.08); padding: 8px 22px; border-radius: 30px; border: 1px solid rgba(220, 38, 38, 0.15); }

.container-central { background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border: 1px solid rgba(255, 255, 255, 0.95); border-radius: 32px; padding: 40px 35px; width: 100%; max-width: 500px; box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08); text-align: center; display: flex; flex-direction: column; gap: 25px; margin: auto 0; }
@keyframes flutuar { 0% { transform: translateY(0px); } 50% { transform: translateY(-5px); } 100% { transform: translateY(0px); } }
.float-anim { animation: flutuar 8s ease-in-out infinite; }

.cabecalho-form h2 { font-size: 1.8rem; font-weight: 800; color: #111827; margin-bottom: 6px; }
.cabecalho-form p { font-size: 0.95rem; color: #4b5563; line-height: 1.5; }
.alerta-senha { color: #dc2626; font-weight: 700; font-size: 0.85rem; display: inline-block; margin-top: 4px; }

.caixa-blindada { background: #ffffff; border: 2px solid #f1f3f5; border-radius: 24px; padding: 25px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); display: flex; flex-direction: column; gap: 15px; width: 100%; }
input[type="email"] { width: 100%; padding: 20px; background: #f9fafb; border: 2px solid #e5e7eb; border-radius: 14px; color: #111827; font-size: 1.1rem; outline: none; text-align: center; font-weight: 600; transition: all 0.3s ease; }
input[type="email"]:focus { border-color: #dc2626; background: #ffffff; box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1); }

.btn-vermelho { width: 100%; padding: 20px; background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); border: none; border-radius: 14px; color: #ffffff; font-weight: 800; font-size: 1.1rem; letter-spacing: 1px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 12px; box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3); transition: all 0.3s ease; }
.btn-vermelho:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(220, 38, 38, 0.4); }

.chave-anim { transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); }
.destravado .chave-anim { transform: translate(-4px, 3px) rotate(-20deg); }

#mensagem-erro { font-size: 0.9rem; font-weight: 600; min-height: 20px; margin-bottom: 0; }

.beneficios-fluidos { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.beneficios-fluidos span { font-size: 0.85rem; color: #1f2937; background: rgba(255, 255, 255, 0.8); border: 1px solid rgba(0, 0, 0, 0.05); padding: 8px 16px; border-radius: 20px; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }

.rodape-confianca { padding-bottom: 10px; text-align: center; }
.rodape-confianca p { font-size: 0.72rem; color: #6b7280; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }

@media (max-width: 600px) { .container-central { padding: 30px 20px; border-radius: 24px; } .cabecalho-form h2 { font-size: 1.5rem; } .caixa-blindada { padding: 20px; } }