body {
    background-color: #f8f9fa;
    /* Color de fondo claro */
}

/* .navbar {
    background-color: #e9ecef;
} */

.jumbotron {
    background-color: #f8f9fa;
    /* Color de fondo del encabezado jumbotron */
}

.brand-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.brand-text {
    text-align: center;
    flex-grow: 1;
    margin: 0 10px;
    /* Ajusta el margen según sea necesario */
}

.navbar-nav {
    justify-content: flex-end;
}

.telefonos a {
    text-decoration: none;
    color: #000000;
    font-size: 15px;
}

.img-camara-comercio {
    margin-left: 10px;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.fade-in.visible {
    opacity: 1;
}

/* Estilo para secciones de Misión y Visión */
.asesoria,
.software,
.tecnicas,
.investigacion {
    background-color: rgba(148, 188, 233, 0.185);
    padding: 30px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(110, 111, 165, 0.1);
    position: relative;
    z-index: 1;
}

.asesoria h2,
.software h2,
.tecnicas h2,
.investigacion h2 {
    color: #050505;
}

.asesoria p,
.software p,
.tecnicas p,
.investigacion p {
    font-size: 18px;
    text-align: justify;
    /* Alinea el texto justificado */
}

.asesoria img,
.software img,
.tecnicas img,
.investigacion img {
    max-width: 90%;
    /* Ajusta el tamaño máximo de las imágenes al 100% */
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}


.valores ul {
    list-style-type: none;
    padding: 0;
}

.valores ul li {
    display: inline-block;
    margin-right: 15px;
    font-size: 16px;
}

.redes-iconos {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

/*.redes-contacto img {
    width: 40px;
    height: 40px;
}*/

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    line-height: 70px;
    bottom: 20px;
    left: 20px;
    background: #25d366;
    border-radius: 50px;
    text-align: center;
    font-size: 40px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.4);
    z-index: 1001;
    /* Ajustamos el z-index */
}

.whatsapp-float a {
    color: #fff;
    text-decoration: none;
    /* Eliminamos el subrayado del enlace */
}

.whatsapp-float:hover {
    background: #fff;
}

.whatsapp-float:hover a {
    color: #25d366;
}

.whatsapp-float a span {
    position: absolute;
    background-color: #4CAF50;
    /* Color verde */
    padding: 2px 4px;
    /* Ajusta el relleno horizontal y vertical */
    border-radius: 10px;
    /* Bordes redondeados */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #fff;
    /* Texto blanco */
    top: 50%;
    transform: translateY(-50%);
    /* Centra verticalmente el cuadro */
    left: calc(100% + 10px);
    /* Coloca el cuadro al lado del botón */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    font-size: 14px;
    /* Tamaño de fuente ajustado según sea necesario */
}

.whatsapp-float:hover a span {
    opacity: 1;
}

@media (max-width: 768px) {
    .brand-text h1 {
        font-size: 24px;
        /* Tamaño de fuente más pequeño para dispositivos móviles */
    }
}