/* Estilos de la página "Próximamente" de Tattiva */

:root {
    --color-fondo: #0b0e14;
    --color-fondo-2: #131722;
    --color-primario: #f43f5e;
    --color-primario-claro: #fb7185;
    --color-texto: #e5e7eb;
    --color-texto-tenue: #9aa1b1;
    --color-borde: rgba(255, 255, 255, 0.08);
    --color-tarjeta: rgba(255, 255, 255, 0.04);
    --radio: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-texto);
    background: radial-gradient(circle at 20% 20%, #1a1030 0%, transparent 45%),
                radial-gradient(circle at 80% 0%, #0d2436 0%, transparent 40%),
                radial-gradient(circle at 50% 100%, #2a0f1f 0%, transparent 50%),
                var(--color-fondo);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

.fondo-decorativo {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.forma {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.forma-1 {
    width: 420px;
    height: 420px;
    top: -120px;
    left: -100px;
    background: #f43f5e;
}

.forma-2 {
    width: 380px;
    height: 380px;
    bottom: -140px;
    right: -100px;
    background: #6366f1;
}

.forma-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 60%;
    background: #14b8a6;
    opacity: 0.2;
}

.contenedor {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 640px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.tarjeta {
    width: 100%;
    background: var(--color-tarjeta);
    border: 1px solid var(--color-borde);
    border-radius: var(--radio);
    padding: 48px 40px;
    backdrop-filter: blur(16px);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.logo-texto {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.titulo {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.resaltado {
    background: linear-gradient(90deg, var(--color-primario) 0%, #fb923c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitulo {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-texto-tenue);
    max-width: 480px;
    margin: 0 auto 32px;
}

.formulario {
    width: 100%;
}

.campo-email {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--color-borde);
    border-radius: 999px;
    padding: 6px 6px 6px 20px;
    transition: border-color 0.2s ease;
}

.campo-email:focus-within {
    border-color: var(--color-primario);
}

.icono-email {
    width: 20px;
    height: 20px;
    color: var(--color-texto-tenue);
    flex-shrink: 0;
}

.campo-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-texto);
    font-size: 15px;
    font-family: inherit;
    padding: 12px 4px;
    min-width: 0;
}

.campo-input::placeholder {
    color: var(--color-texto-tenue);
}

.boton-suscribir {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--color-primario) 0%, #fb7185 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 12px 26px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    box-shadow: 0 8px 20px rgba(244, 63, 94, 0.35);
}

.boton-suscribir:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(244, 63, 94, 0.45);
}

.boton-suscribir:active {
    transform: translateY(0);
}

.boton-suscribir:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.mensaje-respuesta {
    min-height: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 14px;
}

.mensaje-respuesta.mensaje-exito {
    color: #4ade80;
}

.mensaje-respuesta.mensaje-error {
    color: #f87171;
}

.texto-privacidad {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-texto-tenue);
}

.pie {
    font-size: 13px;
    color: var(--color-texto-tenue);
}

@media (max-width: 480px) {
    .tarjeta {
        padding: 36px 22px;
    }

    .campo-email {
        flex-wrap: wrap;
        border-radius: 20px;
        padding: 14px;
    }

    .campo-input {
        width: 100%;
        order: 1;
        padding: 8px 4px;
    }

    .icono-email {
        order: 0;
    }

    .boton-suscribir {
        order: 2;
        width: 100%;
    }
}
