/* --- ESTILOS COOKIES Y PRIVACIDAD --- */
.cookie-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9); z-index: 10000;
    display: flex; justify-content: center; align-items: center; backdrop-filter: blur(4px);
}
.cookie-content {
    background: #101010; border: 1px solid #333; padding: 2.5rem;
    border-radius: 15px; max-width: 420px; text-align: center; color: white; font-family: sans-serif;
}
.cookie-link { color: #4df7f7; text-decoration: none; font-weight: bold; }
.cookie-config-box { background: #1a1a1a; padding: 15px; border-radius: 8px; margin: 20px 0; border: 1px solid #222; }
.config-item { display: flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; }
.config-item input { accent-color: #4df7f7; width: 18px; height: 18px; }
.cookie-buttons { display: flex; flex-direction: column; gap: 10px; }
.btn-prime { background: #007bff; color: white; border: none; padding: 14px; border-radius: 8px; font-weight: bold; cursor: pointer; }
.btn-sec { background: transparent; color: #888; border: 1px solid #444; padding: 12px; border-radius: 8px; cursor: pointer; }

/* --- FORMULARIO Y CLÁUSULA --- */
.contenedor-privacidad-formulario { margin-top: 20px; text-align: left; }
.check-obligatorio { color: #ffffff; font-size: 14px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.check-obligatorio a { color: #4df7f7; }
.clausula-confidencial {
    background: rgba(77, 247, 247, 0.05); border-left: 3px solid #4df7f7;
    padding: 15px; border-radius: 4px;
}
.clausula-confidencial p { color: #aaa; font-size: 12px; line-height: 1.6; margin: 0; }
.clausula-confidencial strong { color: #4df7f7; }
.btn-enviar { margin-top: 15px; padding: 12px 25px; background: #007bff; color: #fff; border: none; border-radius: 6px; cursor: pointer; font-weight: bold; }

.contenedor-privacidad-formulario {
    margin: 20px 0;
    text-align: left;
}

.check-obligatorio {
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-obligatorio a {
    color: #4df7f7;
    text-decoration: underline;
}

.clausula-confidencial {
    background: #1a1a1a;
    border-left: 3px solid #4df7f7;
    padding: 15px;
    border-radius: 4px;
}

.clausula-confidencial p {
    color: #aaa;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.clausula-confidencial strong {
    color: #4df7f7;
}