


 /* --- Estilos Generales y del Hero Banner --- */
        .hero-carousel .carousel-item {
            height: 90vh; /* Altura del banner */
            min-height: 400px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero-carousel .carousel-caption {
            background-color: rgba(0, 0, 0, 0.5); /* Sombra para el texto */
            padding: 20px;
            border-radius: 10px;
            bottom: 20%;
        }

        .hero-carousel .carousel-caption h2 {
            font-size: 3.5rem;
            font-weight: bold;
        }
        
        /* --- Estilos para la barra de navegación --- */
        .navbar {
            transition: background-color 0.4s ease-in-out;
        }

        .navbar-scrolled {
            background-color: #ffffff !important; /* Fondo oscuro al hacer scroll */
        }
        .page-services #mainNavbar {
    background-color: #ffffff !important; /* O el color que prefieras, ej: #ffffff */
        }
        /* --- Estilos para las tarjetas de servicio --- */
        .service-card {
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
        }
        .service-icon {
            font-size: 3rem;
            color: #0d6efd; /* Color primario de Bootstrap */
        }

        /* --- Estilos para Logos de Clientes --- */
        .client-logo img {
            max-height: 80px;
            filter: grayscale(100%);
            opacity: 0.8;
            transition: filter 0.3s, opacity 0.3s;
        }
        .client-logo img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* --- Botón flotante de WhatsApp --- */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

         .service-hero {
            background-color: #212529; /* Un fondo oscuro para el encabezado */
            color: white;
        }
        .partner-logo img {
            max-height: 60px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease-in-out;
        }
        .partner-logo img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        .feature-list-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }
        .feature-list-item .fa-check-circle {
            margin-top: 5px;
        }