/* ========================================
   GLOBAL STYLES & DESIGN TOKENS
   ======================================== */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1b276c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #36297f;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #1b276c #f1f1f1;
}

/* Typography */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* ========================================
   BARRA DE NAVEGACIÓN — GLASSMORPHISM
   ======================================== */

.navbar {
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1b276c; /* #1b276c */
}

.logo-navbar {
    max-width: 180px; 
    max-height: 50px; 
    object-fit: contain; 
}

.navbar-nav .nav-link {
    color: #1b276c !important; /* #1b276c */
    padding: 0.5rem 1rem;
    position: relative;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.4s ease; /* Transición suave al color */
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #f6a030, #f5bb3d);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.navbar-nav .nav-link:hover::before {
    width: 100%;
}

.navbar-toggler-icon {
    background-color: #f9f9fb00; /* #1b276c */
}

.navbar-brand:focus {
    outline: none; /* Elimina el contorno */
}

/* Estilos para el menú de hamburguesa */
@media (max-width: 991.98px) {
    .navbar-collapse .navbar-nav .nav-link {
        color: #1b276c !important; /* #1b276c */
        transition: width 0.7s ease-in-out;
    }    
}

/* Navbar activo */

.navbar-nav .nav-item.active .nav-link {
    color: #ffffff !important;
    font-weight: 600 !important;
    background: linear-gradient(135deg, #1b276c, #2a3a9e);
    /* Degradado azul corporativo */
    border-radius: 20px;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    box-shadow: 0 4px 14px rgba(27, 39, 108, 0.3);
    /* Sombra elegante */
    display: inline-block;
}

/* Ocultar la barra inferior en el elemento activo */
.navbar-nav .nav-item.active .nav-link::before,
.navbar-nav .nav-item.active .nav-link::after {
    display: none !important;
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-item.active .nav-link {
        margin-top: 4px;
        margin-bottom: 4px;
    }
}

/* ========================================
   HERO — INDEX
   ======================================== */

#hero {
    background-image: url(image/multiservicios.webp);
    background-size: cover;
    background-position: center;
    height: 500px;
    color: white;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 4, 104, 0.45), rgba(27, 39, 108, 0.35));
    backdrop-filter: blur(1px); /* Efecto blur */
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fbfbfb;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: medium;
    margin-bottom: 20px;
    color: #e3e2e2; /* #1b276c */
}

.hero-content .button {
    display: inline-flex; 
    align-items: center; 
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #1b276c, #2a3a9e);
    border: none;
    border-radius: 8px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(27, 39, 108, 0.35);
}

.hero-content .button:hover {
    background: linear-gradient(135deg, #2a3a9e, #3d4fbf);
    box-shadow: 0 6px 22px rgba(27, 39, 108, 0.45);
    transform: translateY(-2px);
}

.hero-content .button i { 
    margin-left: 10px;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-content .button:hover i { 
    transform: translateX(5px);
}

.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2em;
    }
}

/* ========================================
   SECCIÓN DE HISTORIA
   ======================================== */

#historia {
    background-color: #fefeff;
}

#historia h2 {
    color: #1b276c;
    font-size: 2.7em;
    margin-bottom: 20px;
}

#historia p {
    color: #2e2e2e;
    font-size: 1.3em;
    line-height: 1.7;
}

/* ========================================
   SECCIÓN DE MISIÓN Y VISIÓN
   ======================================== */

#mision-vision {
    background-color: #f3f2ee; /* #f3f2ee */
}

.mision-vision-content {
    padding: 20px;
}

.mision-vision-content h2 {
    font-size: 2.7em;
    margin-bottom: 20px;
    color: #1b276c; /* #1b276c */
}

.mision-vision-content p {
    color: #1b276c; /* #1b276c */
    line-height: 1.7;
}

.image-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 66.66%;
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   NUESTROS VALORES — TARJETAS PREMIUM
   ======================================== */

#nuestros-valores {
    background-color: #f8f9fa; /* Color de fondo gris claro */
}

#nuestros-valores h2 {
    font-size: 2.7em;
    margin-bottom: 20px;
    color: #1b276c; /* #1b276c */
}

#nuestros-valores p {
    color: #1b276c; /* #1b276c */
}

#nuestros-valores i {
    color: #f6a030; /* #f6a030 */
}

.custom-icon-size {
    font-size: 2.5em;
}

#nuestros-valores .row {
    margin-bottom: 20px; /* Agrega espacio entre las filas */
}

#nuestros-valores .col-md-4,
#nuestros-valores .col-md-6 {
    margin-bottom: 20px; /* Agrega espacio entre las columnas */
}

/* --- Tarjetas con Sombras Suaves y Micro-animaciones --- */
.card {
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%; /* Asegura que todas las tarjetas tengan la misma altura */
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(27, 39, 108, 0.12),
                0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ========================================
   CTA CARD (TARJETA DE LLAMADO A LA ACCIÓN)
   ======================================== */

#cta .cta-card {
    background: linear-gradient(135deg, #1c144c, #2d2272, #36297f);
    color: #fff; /* Color de texto blanco */
    border: none; /* Elimina el borde */
    border-radius: 18px; /* Bordes redondeados */
    box-shadow: 0 8px 32px rgba(28, 20, 76, 0.25); /* Sombra suave */
    overflow: hidden;
}

#cta .cta-content {
    padding: 30px;
}

#cta .cta-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#cta .cta-content p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.92;
}

#cta .cta-content .btn {
    background-color: #fff; /* Color de fondo del botón blanco */
    color: #1c144c; /* Color de texto del botón */
    font-size: 1.1em;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 10px;
    border: none;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#cta .cta-content .btn:hover {
    background-color: #f5bb3d; /* Color de fondo del botón al pasar el cursor */
    color:#000;
    border-color: #f5bb3d;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 6px 20px rgba(245, 187, 61, 0.35);
}

#cta .img-fluid {
    border-radius: 15px; /* Bordes redondeados para la imagen */
}


/* ========================================
   SECCIÓN DE SERVICIOS — PÁGINA SERVICIOS
   ======================================== */

/* Hero de la página de servicios */

#hero-servicios {
    background-image: url('image/background-servicios.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    color: white;
}

#hero-servicios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 4, 104, 0.6), rgba(27, 39, 108, 0.45));
    z-index: 0;
}

#hero-servicios .container {
    position: relative;
    z-index: 1;
}

#hero-servicios .hero-content {
    text-align: left;
}

#hero-servicios h1 {
    color:#fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#hero-servicios p {
    color:#fff;
    font-size: 1.2rem;
}

#hero-servicios .card {
    background-color: rgba(129, 139, 246, 0.2); /* Fondo blanco transparente */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px); /* Efecto blur más pronunciado */
    -webkit-backdrop-filter: blur(12px);
    margin-top: 20px;
    color: white;
    width: 95%; /* Reduce el ancho de las cards */
    margin-left: auto; /* Centra las cards horizontalmente */
    margin-right: auto; /* Centra las cards horizontalmente */
    border-radius: 14px;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#hero-servicios .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

#hero-servicios .card-body {
    padding: 15px;
}

#hero-servicios .card-title {
    font-size: 1.2rem;
}

#hero-servicios .card-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Media queries para responsividad */
@media (max-width: 767.98px) {
    #hero-servicios {
        padding: 100px 0 50px 0; /* Ajusta el padding superior*/
    }

    #hero-servicios h1 {
        font-size: 2rem;
    }

    #hero-servicios p {
        font-size: 1rem;
    }

    #hero-servicios .row {
        margin-left: -15px; /* Compensar el padding de las columnas */
        margin-right: -15px; /* Compensar el padding de las columnas */
    }

    #hero-servicios .col-md-4 {
        padding-left: 15px; /* Agregar padding a las columnas */
        padding-right: 15px; /* Agregar padding a las columnas */
        margin-bottom: 20px; /* Agrega un margen inferior */
    }

    #hero-servicios .card {
        margin-top: 0;
        width: 100%; /* Ocupa todo el ancho disponible en pantallas pequeñas */
    }
}

/* ========================================
   SERVICIOS PRINCIPALES (CARDS)
   ======================================== */

.services-section {
    padding: 50px 0; /* Ajusta el padding vertical */
}

.services-section .container {
    max-width: 1200px; /* Limita el ancho del contenedor */
    margin: 0 auto; /* Centra el contenedor */
}

.services-section .text-center {
    text-align: center; /* Asegura que el texto esté centrado */
}

.services-section .mb-4 {
    margin-bottom: 2rem; /* Aumenta el margen inferior */
}

.services-section .row {
    display: flex; /* Usa flexbox para las filas */
    flex-wrap: wrap; /* Permite que las columnas se envuelvan */
    margin-left: -15px; /* Elimina el margen izquierdo */
    margin-right: -15px; /* Elimina el margen derecho */
}

.services-section .col-md-4 {
    width: 33.33%; /* Ancho de las columnas */
    padding-left: 15px; /* Agrega padding a las columnas */
    padding-right: 15px; /* Agrega padding a las columnas */
    margin-bottom: 30px; /* Agrega margen inferior */
    box-sizing: border-box; /* Incluye el padding en el ancho */
}

.services-section .service-card {
    height: auto; /* Elimina la altura fija */
    min-height: 150px; /* Establece una altura mínima */
    overflow: hidden; /* Oculta el contenido que se desborda */
    display: flex; /* Usa flexbox para el diseño */
    align-items: center; /* Centra verticalmente */
    background-color: #fff; /* Fondo blanco */
    border-radius: 14px; /* Bordes más redondeados */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); /* Sombra suave pasiva */
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 20px; /* Agrega padding interno */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.services-section .service-card:hover {
    transform: translateY(-8px); /* Elevación al pasar el cursor */
    box-shadow: 0 12px 32px rgba(27, 39, 108, 0.12),
                0 4px 12px rgba(0, 0, 0, 0.06);
}

.services-section .service-icon {
    width: 60px; /* Ancho fijo para los iconos */
    text-align: center;
    font-size: 2.5rem; /* Tamaño de los iconos */
    color: #f6a030; /* Color de los iconos */
    flex-shrink: 0; /* Evita que el icono se encoja */
    margin-right: 15px; /* Reduce el margen derecho */
}

.services-section .divider {
    width: 1px; /* Ancho de la línea divisoria */
    height: 70%; /* Altura de la línea divisoria */
    background-color: #dee2e6; /* Color de la línea divisoria */
    margin: 0 15px; /* Margen a los lados de la línea divisoria */
    display: block; /* Asegura que la línea divisoria se vea en pantallas grandes */
}

.services-section .service-text {
    flex: 1; /* El texto ocupa el espacio restante */
    text-align: left; /* Alinea el texto a la izquierda */
    min-width: 0; /* Permite que el texto se encoja */
}

.services-section .service-text h3 {
    font-size: 1.2rem; /* Tamaño del título principal */
    color: #f6a030; /* Color del título principal */
    margin-bottom: 0.5rem; /* Reduce el margen inferior */
}

.services-section .service-text p {
    font-size: 0.9rem; /* Tamaño del título secundario */
    color: #6c757d; /* Color del título secundario */
    margin-bottom: 0; /* Elimina el margen inferior */
}

/* Media queries para responsividad */
@media (max-width: 767.98px) {
    .services-section .col-md-4 {
        width: 100%; /* Ancho completo en pantallas pequeñas */
    }

    .services-section .service-card {
        flex-direction: column; /* Apila los elementos verticalmente */
        align-items: center; /* Centra los elementos horizontalmente */
        text-align: center; /* Centra el texto */
    }

    .services-section .service-icon {
        margin-bottom: 15px; /* Agrega margen inferior al icono */
        margin-right: 0; /* Elimina el margen derecho */
    }

    .services-section .divider {
        width: 70%; /* Ancho de la línea divisoria */
        height: 1px; /* Altura de la línea divisoria */
        margin: 15px 0; /* Margen arriba y abajo de la línea divisoria */
    }

    .services-section .service-text {
        text-align: center; /* Centra el texto */
    }
}

/* ========================================
   PÁGINA CONECTA CON NOSOTROS
   ======================================== */

/* Hero de la página Conecta */

#hero-conecta {
    background-image: url('image/office.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    color: white;
}

#hero-conecta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 4, 104, 0.7), rgba(27, 39, 108, 0.5));
    backdrop-filter: blur(3px); /* Efecto blur */
    z-index: 0;
}

#hero-conecta .container {
    position: relative;
    z-index: 1;
}

#hero-conecta .hero-content {
    text-align: left;
}

#hero-conecta h1 {
    color:#fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#hero-conecta p {
    color:#fff;
    font-size: 1.2rem;
}

/* Media queries para responsividad */
@media (max-width: 767.98px) {
    #hero-conecta {
        padding: 100px 0 50px 0; /* Ajusta el padding superior*/
    }

    #hero-conecta h1 {
        font-size: 2rem;
    }

    #hero-conecta p {
        font-size: 1rem;
    }
}

/* ========================================
   SECCIÓN DE CONTACTO
   ======================================== */

#contacto {
    padding: 50px 0;
}

#contacto h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1b276c;
}

#contacto p {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.7;
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0;
    margin: 0;
    max-width: 100%; /* Asegura que la grilla ocupe todo el ancho */
    box-sizing: border-box; /* Incluye el padding en el ancho */
    overflow-x: hidden;
}

.contacto-item {
    background-color: #eef5f8;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    box-sizing: border-box; /* Incluye el padding en el ancho */
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.contacto-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27, 39, 108, 0.1);
}

.contacto-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1b276c;
}

/* FIX: Legibilidad corregida de 0.5rem a 1rem */
.contacto-item p {
    font-size: 1rem;
    color: #555555;
    word-break: break-all;
    line-height: 1.6;
}

.contacto-item a {
    color: #2a3a9e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contacto-item a:hover {
    color: #f6a030;
    text-decoration: underline;
}

/* Media queries para responsividad */
@media (max-width: 767.98px) {
    #contacto .row {
        margin-left: 0;
        margin-right: 0;
    }
    .contacto-grid {
        grid-template-columns: 1fr;
        padding: 0; /* Elimina el padding */
        margin: 0; /* Elimina el margen */
    }
}

/* ========================================
   SECCIÓN DE OFICINAS
   ======================================== */

#oficinas {
    padding: 50px 0;
}

#oficinas h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1b276c;
}

#oficinas p {
    font-size: 1.2rem;
    color: #6c757d;
}

.oficinas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0;
    margin: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.oficinas-item {
    background-color: #eef5f8;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.oficinas-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27, 39, 108, 0.1);
}

.oficinas-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1b276c;
}

.oficinas-item p {
    font-size: 1rem;
    color: #6c757d;
}

.oficinas-item p.tex1 {
    color: #2a3a9e !important;
    font-weight: 500;
}

/* Media queries para responsividad */
@media (max-width: 767.98px) {
    #oficinas .row {
        margin-left: 0;
        margin-right: 0;
    }
    .oficinas-grid {
        grid-template-columns: 1fr;
        padding: 0;
        margin: 0;
    }
}

/* ========================================
   MAPA
   ======================================== */

.map-container {
    padding: 20px;
    margin: 0 auto;
    max-width: 800px; /* Ajusta el ancho máximo según sea necesario */
}

.map-container iframe {
    width: 100%;
    height: 400px; /* Ajusta la altura según sea necesario */
    border: 0;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ========================================
   LÍNEA DIVISORIA
   ======================================== */

hr {
    border: 0;
    height: 2px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(27, 39, 108, 0.12), rgba(0, 0, 0, 0));
    margin: 30px 0;
}

/* ========================================
   MODAL DEL DESARROLLADOR
   ======================================== */

.modal-content {
    box-shadow: 0px 8px 24px rgba(17,17,26,0.1), 0px 16px 56px rgba(17,17,26,0.1), 0px 24px 80px rgba(17,17,26,0.1);
    border-radius: 18px; /* Bordes redondeados */
    border: none; /* Elimina el borde */
}

.modal-header {
    border-bottom: 1px solid #dee2e6;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
}

.modal-footer .btn-primary {
    background: linear-gradient(135deg, #1c144c, #2d2272);
    color: #fff; /* Color de texto del botón */
    border: none;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: none !important; /* Elimina la sombra */
    outline: none !important; /* Elimina el contorno */
    transition: all 0.3s ease;
}

.modal-footer .btn-primary:hover {
    background: linear-gradient(135deg, #2d2272, #36297f);
    transform: translateY(-1px);
}

.modal-footer .btn-primary:focus,
.modal-footer .btn-primary:active {
    background: linear-gradient(135deg, #1c144c, #2d2272) !important;
    border-color: #1c144c !important; /* Color del borde del botón al hacer clic */
    box-shadow: none !important; /* Elimina la sombra */
    outline: none !important; /* Elimina el contorno */
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    padding: 30px 20px;
    background: linear-gradient(135deg, #1c144c, #15103a);
    color: #f3f2ee; /* #f3f2ee */
    text-align: left;
}

footer h4 {
    color: #f3f2ee; /* #f3f2ee */
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer li {
    margin-bottom: 8px;
}

footer a {
    color: #98a0c0; /* #98a0c0 */
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #f6a030; /* Dorado al hover para consistencia de marca */
}

footer .col-md {
    margin-bottom: 20px;
}

footer small {
    color: #98a0c0; /* #98a0c0 */
}

footer i {
    margin-right: 5px;
}

/* Media query para pantallas más pequeñas */
@media (max-width: 768px) {
    footer {
        text-align: center;
    }

    footer .col-md {
        margin-bottom: 30px;
    }
}

.lista :hover {
    color: #f6a030; /* Dorado al hover para consistencia */
}
