/* ============================================================
   ESTILO PERSONALIZADO: ROSADO & NEGRO (EDICIÓN ESPECIAL)
   ============================================================ */

.data-consent-popup {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.9); /* Negro casi total con transparencia */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.4s ease-in-out;
    backdrop-filter: blur(5px);
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.popup-content {
    background-color: #FFFFFF; 
    padding: 35px;
    border-radius: 15px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    /* Franja Rosado Palo (no tan fuerte) */
    border-top: 8px solid #E5989B; 
}

/* Título en Negro profundo */
.popup-content h2 {
    margin-bottom: 25px;
    color: #1A1A1B; 
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Etiquetas */
.popup-content label {
    display: block;
    text-align: left;
    font-weight: 600;
    color: #333;
    margin-top: 18px;
    font-size: 13px;
    text-transform: uppercase;
}

/* Inputs con borde rosado sutil al fondo */
.popup-content input[type="text"] {
    padding: 14px;
    margin-top: 6px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
    background-color: #FDF8F8; /* Un toque de rosado casi imperceptible al fondo */
    transition: all 0.3s ease;
}

/* Foco en dorado/rosado */
.popup-content input[type="text"]:focus {
    outline: none;
    border: 1px solid #E5989B; 
    box-shadow: 0 0 8px rgba(229, 152, 155, 0.2);
    background-color: #FFFFFF;
}

/* Checkbox */
.checkbox-consent {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin: 25px 0;
    font-size: 13px;
    color: #555;
    text-align: left;
}

.checkbox-consent input[type="checkbox"] {
    accent-color: #E5989B; /* Rosado para el check */
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Botón Negro con efecto Rosado */
.popup-content button {
    width: 100%;
    padding: 16px;
    background-color: #1A1A1B; /* Negro Mate */
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.popup-content button:hover {
    background-color: #B5838D; /* Rosado más oscuro al pasar el mouse */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(181, 131, 141, 0.4);
}

/* Enlaces */
.popup-content a.ver-terminos {
    color: #B5838D;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid transparent;
}

.popup-content a.ver-terminos:hover {
    border-bottom: 1px solid #B5838D;
}

/* Responsividad */
@media (max-width: 600px) {
    .popup-content {
        padding: 25px;
    }
}