/* ==============================
   Estilos Generales del Footer
================================= */
.footer-widgets {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

/* Columnas del footer */
.footer-widget-column {
    padding: 15px;
}

/* Estilos para el logo */
.footer-widget-column img {
    max-width: 220px;
    height: auto;
    margin-bottom: 20px;
}

/* Títulos */
.footer-widget-column h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Enlaces del menú */
.footer-widget-column ul {
    padding: 0;
    list-style: none;
}

.footer-widget-column ul li {
    margin-bottom: 10px;
}

.footer-widget-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}

.footer-widget-column ul li a:hover {
    color: #0cb4ce;
}

/* Botón de Protocolos y Formularios */
.footer-widget-column .btn-outline-light {
    border-color: #0cb4ce;
    color: #ffffff;
    font-weight: bold;
}

.footer-widget-column .btn-outline-light:hover {
    background-color: #0cb4ce;
    border-color: #0cb4ce;
}

/* Contacto */
.footer-widget-column p {
    font-size: 15px;
    margin-bottom: 5px;
}

.footer-widget-column a.text-light {
    color: #ffffff;
}

.footer-widget-column a.text-light:hover {
    color: #0cb4ce;
}

/* Redes Sociales */
.footer-widget-column .d-flex a {
    color: #ffffff;
    font-size: 24px;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.footer-widget-column .d-flex a:hover {
    transform: scale(1.2);
    color: #0cb4ce;
}

/* Iconos personalizados */
.page-item-footer {
    display: inline-block;
    font-size: 24px;
    margin: 5px 10px;
    color: #ffffff;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.page-item-footer:hover {
    transform: scale(1.2);
    color: #0cb4ce;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-widget-column {
        text-align: center;
    }
    
    .footer-widget-column .d-flex {
        justify-content: center;
    }
}
/* ==== ESTILO GENERAL DEL FOOTER ==== */
.site-footer {
    background-color: #222; /* Color de fondo oscuro */
    color: #fff; /* Texto blanco */
    padding: 40px 0; /* Espaciado */
}

/* ==== CONTENEDOR PRINCIPAL ==== */
.footer-widgets {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

/* ==== CADA COLUMNA DEL FOOTER ==== */
.footer-widget-column {
    flex: 1;
    min-width: 250px; /* Tamaño mínimo */
    text-align: left;
}

/* ==== LOGO EN EL FOOTER ==== */
.footer-widget-column img {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

/* ==== TITULOS DE CADA SECCIÓN ==== */
.footer-widget-column h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #f8f9fa;
}

/* ==== ENLACES DEL FOOTER ==== */
.footer-widget-column ul {
    list-style: none;
    padding: 0;
}

.footer-widget-column ul li {
    margin-bottom: 8px;
}

.footer-widget-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease-in-out;
}

.footer-widget-column ul li a:hover {
    color: #0cb4ce; /* Color en hover */
}
.footer-especial-in p {
  margin-top: 0;
  margin-bottom: 0.1em;
}
/* ==== BOTÓN DE PROTOCOLOS Y FORMULARIOS ==== */
.footer-widget-column .btn {
    margin-top: 10px;
    padding: 8px 12px;
    font-size: 14px;
}

/* ==== CONTACTO ==== */
.footer-widget-column p {
    font-size: 14px;
    margin-bottom: 5px;
    color: #ddd;
}

.footer-widget-column p i {
    color: #0cb4ce;
    margin-right: 8px;
}

/* ==== REDES SOCIALES ==== */
.footer-widget-column .d-flex a {
    color: #fff;
    font-size: 22px;
    margin-right: 15px;
    transition: color 0.3s ease-in-out;
}

.footer-widget-column .d-flex a:hover {
    color: #0cb4ce;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
    .footer-widgets {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-widget-column {
        min-width: 100%;
    }

    .footer-widget-column .d-flex {
        justify-content: center;
    }
}
.site-footer p {
  font-size: 15px;
  line-height: 1.75;
  text-align: left;
  color: #fff!important;
  font-weight: 500!important;
  font-family: "Oxygen", sans-serif!important;
}