body {
    background-color: #f8f9fa; /* Color de fondo claro */
}
.navbar {
    background-color: #e9ecef; /* Color de fondo de la barra de navegación */
}
.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;
}

footer {
    background-color: rgba(118, 155, 192, 0.7);
    color: #000000;
    padding: 10px;
    text-align: center;
    position: relative;
    width: 100%;
}
.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 */
.mision, .vision {
    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;
}
.mision h2, .vision h2 {
    color: #050505;
}
.mision p, .vision p {
    font-size: 18px;
    text-align: justify; /* Alinea el texto justificado */
}
.mision img, .vision 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;
}

/* 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;
}

/* Sección de Servicios */
.services {
    padding: 50px 20px;
    text-align: center;
    background-color: #f4f4f4;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.services h2 span {
    color: #FF8C00;
}

/* Carrusel Personalizado */
.carousel-container {
    position: relative;
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

#carouselServices {
    display: flex;
    transition: transform 0.5s ease;
}

.service-card {
    flex: 0 0 30%;
    margin: 0 15px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.service-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #000000;
}

.service-card p {
    font-size: 14px;
    color: #333;
}

.carousel-prev-custom, .carousel-next-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FF8C00;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.carousel-prev-custom {
    left: 10px;
}

.carousel-next-custom {
    right: 10px;
}

@media (max-width: 768px) {
    .brand-text h1 {
        font-size: 24px; /* Tamaño de fuente más pequeño para dispositivos móviles */
    }
}