/* Estilo fijo para topbar y navbar */
.topbar-fixed {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: top 0.3s;
}

.navbar-fixed {
    position: fixed;
    width: 100%;
    top: 40px; /* Ajusta este valor dependiendo de la altura de tu topbar */
    z-index: 999;
    transition: top 0.3s;
}

/* Asegurarse de que el contenido de la página no se suba */
body {
    padding-top: 100px; /* Ajusta este valor según la altura combinada del topbar y navbar */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .topbar-fixed {
        position: static;
    }

    .navbar-fixed {
        position: static;
        top: 0;
    }

    body {
        padding-top: 0;
    }
}

/* Sección de Clientes */
#nuestros-clientes {
    background-color: #211E1C; /* Color de fondo de la sección */
    padding: 50px 0;
    text-align: center;
}

#nuestros-clientes h6 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #333;
}

#nuestros-clientes h1 {
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #211E1C;
}


.logo img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.logo:hover img {
    transform: scale(1.1);
   
}

/* Responsivo */
@media (max-width: 768px) {
    .logo {
        margin-bottom: 30px;
    }
}

/* Estilos básicos para el globo flotante */
.whatsapp-floating {
        position: fixed;
        left: 20px; /* Ajusta la posición izquierda según tus necesidades */
        bottom: 20px; /* Ajusta la posición vertical según tus necesidades */
        z-index: 1000; /* Asegura que esté por encima de otros elementos */
        background-color: #25d366; /* Color de fondo de WhatsApp */
        color: #fff; /* Color del texto */
        width: 60px;
        height: 60px;
        border-radius: 50%;
        text-align: center;
        line-height: 60px;
        font-size: 24px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Sombra ligera */
    }

    .whatsapp-floating:hover {
        background-color: #dc3545; /* Cambia el color de fondo al pasar el ratón */
        color: white;
    }