/* General Footer Styles */
footer {
    background-color: #2d2a30;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
    position: relative; /* No se fija para evitar problemas en pantallas pequeñas */
    bottom: 0;
    width: 100%;
}

.footer-distributed {
    width: 100%;
    text-align: left;
    font: bold 16px sans-serif;
    box-sizing: border-box;
}

/* Footer Columns */
.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
    display: inline-block;
    vertical-align: top;
    width: 30%;
    margin-bottom: 20px;
}

.footer-distributed .footer-left {
    text-align: left;
}

.footer-distributed .footer-center {
    text-align: center;
}

.footer-distributed .footer-right {
    text-align: right;
}

/* Footer Left */
.footer-distributed .footer-left h3 {
    color: #ffffff;
    font: normal 36px 'Cookie', cursive;
    margin: 0;
}

.footer-distributed .footer-left h3 span {
    color: #e0ac1c;
}

.footer-distributed .footer-company-name {
    color: #8f9296;
    font-size: 14px;
    font-weight: normal;
    margin: 10px 0 0;
}

/* Footer Center */
.footer-distributed .footer-center i {
    background-color: #33383b;
    color: #ffffff;
    font-size: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    margin-right: 10px;
    vertical-align: middle;
}

.footer-distributed .footer-center p {
    display: inline-block;
    color: #ffffff;
    vertical-align: middle;
    margin: 0;
    line-height: 1.6;
}

.footer-distributed .footer-center a {
    color: #e0ac1c;
    text-decoration: none;
}

.footer-distributed .footer-center a:hover {
    text-decoration: underline;
}

/* Footer Right */
.footer-distributed .footer-right p {
    color: #92999f;
    line-height: 1.6;
    margin: 0;
}

.footer-distributed .footer-company-about span {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Social Icons */
.footer-distributed .footer-icons {
    margin-top: 20px;
}

.footer-distributed .footer-icons a {
    background-color: #33383b;
    color: #ffffff;
    font-size: 16px;
    margin: 0 5px;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.footer-distributed .footer-icons a:hover {
    background-color: #3F71EA;
}

/* Links Hover Effect */
.footer-distributed .footer-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-distributed .footer-links a:hover {
    color: #3F71EA;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-distributed .footer-left,
    .footer-distributed .footer-center,
    .footer-distributed .footer-right {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-distributed .footer-center i {
        margin: 0 auto 10px;
    }

    .footer-distributed .footer-icons a {
        margin: 5px;
    }
}
body {
    background-color: #e0e0e0; /* Color de fondo gris claro para el body */
    margin: 0;
    font-family: Arial, sans-serif; /* Asegúrate de que la fuente sea legible */
}

.card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 10px; /* Bordes redondeados */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6); /* Sombra más oscura y pronunciada */
}

.card-body {
    background-color: #f0f0f0; /* Color de fondo gris claro para el cuerpo de la tarjeta */
    border-radius: 10px 10px 0 0; /* Bordes redondeados en la parte superior */
}

.card-footer {
    background-color: #f8f9fa; /* Color de fondo claro para el pie de la tarjeta */
    border-radius: 0 0 10px 10px; /* Bordes redondeados en la parte inferior */
}
.navbar {
    transition: background-color 0.3s; /* Transición suave */
}

.navbar.scrolled {
    background-color: rgba(128, 128, 128, 0.8); /* Color gris con opacidad */
}

.navbar-nav .nav-link {
    color: #2ba8c7; /* Color azul para los enlaces */
}




#map {
    
        background-color: rgb(8, 8, 8);
        background-image: url("../assets/img/map-image.png");
        background-repeat: no-repeat;
        background-position: center;
    
}

#map .text-center {
    color: #fff; /* Color del texto en la sección de mapa */
}

.navbar {
    --bs-navbar-color: #ffffff; /* Color de texto para el navbar */
    --bs-navbar-hover-color: #e0e0e0; /* Color de texto al pasar el mouse */
    --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
    --bs-navbar-active-color: #ffffff; /* Color de texto activo */
    background-color: rgb(47, 79, 79); /* Color gris más oscuro para el fondo del navbar */
  }
  
  