/* --- FOOTER GENERAL --- */
.footer-navidad {
    background-color: #1a4d2e; /* Verde Oscuro Elegante (similar a theme-color) */
    color: #f7f7f7;
    padding: 40px 20px;
    font-family: 'Roboto', sans-serif;
    border-top: 5px solid #d4af37; /* Toque dorado */
}

.footer-contenedor {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-columna {
    flex: 1 1 300px; /* Base para 3 columnas, se ajusta en móviles */
    padding: 10px;
}

.footer-columna h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    color: #e5c100; /* Dorado sutil */
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
}

.footer-navidad p {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* --- ENLACES Y LISTAS --- */
.footer-enlaces ul {
    list-style: none;
    padding: 0;
}

.footer-enlaces ul li {
    margin-bottom: 10px;
}

.footer-navidad a {
    color: #f7f7f7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95em;
}

.footer-navidad a:hover {
    color: #e5c100; /* Efecto hover dorado */
}

.footer-enlaces ul li a i,
.footer-contacto .contacto-item i {
    margin-right: 10px;
    color: #d4af37; /* Iconos dorados */
}

/* --- CONTACTO Y SOCIAL --- */
.contacto-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border: 1px solid #d4af37;
    border-radius: 50%;
    color: #d4af37;
    font-size: 1.1em;
    transition: background-color 0.3s, color 0.3s;
}

.social-links a:hover {
    background-color: #d4af37;
    color: #1a4d2e;
}

/* --- DERECHOS DE AUTOR Y PIE --- */
.derechos-autor, .desarrollo {
    font-size: 0.85em !important;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px !important;
}

/* --- MEDIA QUERIES para Responsividad (Móviles) --- */
@media (max-width: 768px) {
    .footer-contenedor {
        flex-direction: column;
        text-align: center;
    }

    .footer-columna {
        flex: 1 1 100%;
        padding: 20px 0;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    }

    .footer-columna:last-child {
        border-bottom: none;
    }
    
    .footer-enlaces ul {
        width: max-content;
        margin: 0 auto;
    }

    .contacto-item {
        justify-content: center;
    }

    .social-links {
        display: flex;
        justify-content: center;
    }
}












.cookie-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); display: flex; align-items: center;
    justify-content: center; z-index: 10000; animation: fadeIn 0.3s;
}

.cookie-modal-content {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 3px solid #d4af37; border-radius: 20px; max-width: 600px;
    width: 90%; box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cookie-header {
    background: linear-gradient(135deg, #1a4d2e, #165b33);
    color: #ffd700; padding: 1.5rem; border-radius: 17px 17px 0 0;
    text-align: center;
}

.cookie-body { padding: 2rem; }
.cookie-body p { color: #333; text-align: center; margin-bottom: 1.5rem; }

.cookie-types { display: grid; gap: 1rem; margin-bottom: 1.5rem; }

.cookie-type {
    background: rgba(255,255,255,0.8); padding: 1rem; border-radius: 10px;
    border-left: 4px solid #c41e3a;
}

.cookie-type h4 { color: #1a4d2e; margin-bottom: 0.5rem; }
.cookie-type p { color: #666; font-size: 0.9rem; margin: 0; text-align: left; }

.cookie-footer {
    display: flex; gap: 1rem; padding: 0 2rem 1rem;
    justify-content: center; flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem; border: none; border-radius: 25px;
    cursor: pointer; font-weight: bold; transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 0.5rem;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #1a4d2e, #165b33);
    color: #ffd700; border: 2px solid #ffd700;
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #ffd700, #1a4d2e);
    color: #fff; transform: translateY(-2px);
}

.cookie-btn-customize { background: #6c757d; color: white; }
.cookie-btn-customize:hover { background: #5a6268; transform: translateY(-2px); }

.cookie-btn-reject { background: #dc3545; color: white; }
.cookie-btn-reject:hover { background: #c82333; transform: translateY(-2px); }

.cookie-links {
    padding: 1rem 2rem 2rem; text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.cookie-links a {
    color: #1a4d2e; text-decoration: none; margin: 0 1rem;
    font-size: 0.9rem; transition: color 0.3s;
}

.cookie-links a:hover { color: #c41e3a; text-decoration: underline; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 768px) {
    .cookie-modal-content { width: 95%; margin: 1rem; }
    .cookie-footer { flex-direction: column; }
    .cookie-btn { width: 100%; justify-content: center; }
}