        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            padding-top: 70px; /* Altura de tu navbar */
        }
        .navbar-brand img {
            height: 50px;
        }
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: transform 0.3s ease-in-out;
        }
        
        .navbar-hidden {
            transform: translateY(-100%);
        }
        .hero-section {
            background: url('../img/City-Network.jpg') no-repeat center center/cover;
            color: white;
            padding: 150px 0;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh; /* Aseguramos que ocupe al menos el 100% de la altura de la pantalla */
            position: relative; /* Añadimos posición relativa */
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5); /* Fondo oscuro para mejorar la legibilidad del texto */
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            position: relative; /* Aseguramos que el texto esté por encima del fondo oscuro */
            z-index: 1;
        }
        .hero-section p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
            position: relative; /* Aseguramos que el texto esté por encima del fondo oscuro */
            z-index: 1;
        }
        .card {
            transition: transform 0.3s;
        }
        .card:hover {
            transform: scale(1.05);
        }
        .client-logo {
            max-width: 150px;
            margin: 20px;
        }
        .service-icon {
            width: 64px;
            height: 64px;
            margin-bottom: 15px;
        }
        .contact-info {
            text-align: center;
            margin-bottom: 30px;
        }
        .contact-info a {
            color: #007bff;
            text-decoration: none;
        }
        .contact-info a:hover {
            text-decoration: underline;
        }
        .proximamente {
            background-color: #f8f9fa;
            padding: 50px 0;
            text-align: center;
        }
        .whatsapp-icon {
            color: #25D366; /* Color de WhatsApp */
        }
        .phone-icon {
            color: #007bff; /* Color de teléfono */
        }