/* --- VARIABLES DE COLOR --- */
:root {
    --abc-accent-color: #0073aa;
    --abc-text-main: #ffffff;
    --abc-text-muted: #a0a0a0;
    --abc-btn-bg: rgba(255, 255, 255, 0.05);
    --abc-btn-hover: rgba(255, 255, 255, 0.15);
}

/* --- CUERPO Y FONDO AURORA --- */
.abc-portada-body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(270deg, #001219, #005f73, #0a9396, #94d2bd, #3BB8DB);
    background-size: 800% 800%;
    animation: auroraInfinito 15s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    color: var(--abc-text-main) !important; /* Forzamos texto blanco */
}

@keyframes auroraInfinito {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- CONTENEDOR FIJO Y PREMIUM --- */
.abc-container-minimal {
    width: 800px; /* Tamaño fijo para escritorio */
    min-height: 400px; /* Altura mínima para evitar saltos visuales */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

/* Forzar que todos los títulos y párrafos dentro del contenedor sean blancos */
.abc-container-minimal h1,
.abc-container-minimal h2,
.abc-container-minimal p, 
.abc-container-minimal div {
    color: #ffffff !important;
}

/* --- BOTONES (ESTILO SOLICITADO) --- */
.abc-botones-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.abc-btn-si, .abc-btn-no, .abc-btn-cta {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.abc-btn-si, .abc-btn-cta {
    background-color: var(--abc-accent-color);
    color: white !important;
    border: none;
}

.abc-btn-no {
    background-color: var(--abc-btn-bg);
    color: var(--abc-text-main) !important;
}

.abc-btn-si:hover, .abc-btn-cta:hover {
    background-color: #0085ba;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.abc-btn-no:hover {
    background-color: var(--abc-btn-hover);
}

/* Botón de cerrar (X) */
#abc-cerrar-quiz {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #ff4d4d; /* Rojo */
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    display: none; /* Oculto al inicio */
    line-height: 1;
    z-index: 10;
    transition: transform 0.2s;
}

#abc-cerrar-quiz:hover {
    transform: scale(1.2);
}

/* Inputs de captura final */
.abc-input-captura {
    display: block;
    width: 100%;
    margin-bottom: 12px;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: #fff;
    box-sizing: border-box;
}

.abc-label-privacidad {
    font-size: 0.85rem;
    color: var(--abc-text-muted);
    display: block;
    margin-bottom: 15px;
}

/* --- LOGOTIPO DE LA PORTADA --- */
.abc-portada-logo {
    position: absolute;
    top: 20px; /* Distancia del top solicitada */
    left: 50%;
    transform: translateX(-50%); /* Centrado horizontal perfecto */
    z-index: 20;
}

.abc-portada-logo img {
    max-width: 180px; /* Ajusta según el tamaño de tu logo */
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3)); /* Sombra para resaltar sobre el aura */
}

/* --- DISEÑO RESPONSIVO (MÓVIL) --- */
@media (max-width: 768px) {
    .abc-container-minimal {
        width: 90%; /* Ocupa casi todo el ancho en móviles */
        min-height: auto; /* En móvil dejamos que crezca según contenido */
        padding: 40px 20px;
        margin: 0 auto; /* Centrado absoluto */
    }

    h1 {
        font-size: 1.6rem;
    }

    .abc-botones-group {
        flex-direction: column; /* Botones uno sobre otro en móviles */
    }

    .abc-btn-si, .abc-btn-no, .abc-btn-cta {
        width: 100%;
    }
	
	.abc-portada-logo img {
        max-width: 110px;
    }
}