        body {
            font-family: Titillium Web, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #e0f7fa;
            }
            .titillium-web-extralight {
            font-family: "Titillium Web", sans-serif;
            font-weight: 200;
            font-style: normal;
            }
            .titillium-web-regular {
            font-family: "Titillium Web", sans-serif;
            font-weight: 400;
            font-style: normal;
        }
        header.top-header {
            background: #ffffff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
        }
        .left-spacer {
            flex-grow: 1.4;
        }
        .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            
        }
        header.top-header img {
            height: 80px;
            width: auto;
            object-fit: contain;
        }
        .social-icons {
            display: flex;
            align-items: center;
            flex-grow: 1;
            justify-content: flex-end;
            padding-right: 40px;
        }
        .social-icons a {
            color: #0d8fd0;
            margin-left: 35px;
            font-size: 2.5em;
            background-color: #ffffff;
            padding: 0px;
            border-radius: 50%;
            display: inline-block;
        }
        .social-icons a:hover {
            transform: translateY(-3px);
        }
        header.navbar {
            background: #0d8fd0;
            color: white;
            padding: 15px 20px;
            text-align: center;
        }
        nav a {
            color: white;
            margin: 0 25px;
            text-decoration: none;
        }
        .container {
            width: 80%;
            margin: auto;
            overflow: hidden;
            padding-top: 40px;
        }
        footer {
            text-align: center;
            padding: 10px 0;
            background: #0d8fd0;
            color: white;
        }
        .hero {
            height: 400px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
        .slideshow-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        .slide {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Recorta la imagen para que cubra todo el espacio sin distorsionarse */
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 1.5s ease-in-out; /* Transición suave al cambiar */
            filter: brightness(0.9) grayscale(0.2); /* Ajusta estos valores para la transparencia/efecto visual */
        }
        .slide.active {
            opacity: 1;
        }
        .hero-content {
            position: relative;
            z-index: 10;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            width: 100%;
        }
        .hero-content h1 {
            font-size: 4em;
            margin-bottom: 20px;
        }
        .hero-content p1 {
            font-size: 2em;
            display: block;
            margin-bottom: 20px;
            color:white;
        }
        .hero-content h2 {
            font-size: 10px;
            margin-bottom: 10px;
        }
        .hero-content p {
            font-size: 1.5em;
            margin-top: 0;
        }
        .hero-button {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 25px;
            background-color: #0d8fd0;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .hero-button:hover {
            background-color: #0a7bb0;
            transform: translateY(-3px);
        }
        section h2 {
            text-align: center;
            color: #17a335;
            margin-bottom: 25px;
            font-size: 2.5em;
            position: relative;
            padding-top: 25px;
        }
        section h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: #17a335;
            margin: 10px auto 0;
            border-radius: 5px;
        }
        section p {
            text-align: justify;
            margin: 0 auto 20px auto; /* Centra el bloque de párrafo y añade margen inferior */
            max-width: 800px;
            padding: 0 15px;
            line-height: 1.6;
            color: #333;
}
        .blogs {
            display: flex;
            justify-content: start;
            margin: 40px 0;
            flex-wrap: initial;
            gap: 20px;
        }
        .blogs-item {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
            width: 30%;
            min-width: 280px;
            margin-bottom: 20px;
        }
        .carousel-logos {
            overflow: hidden;
            white-space: nowrap;
            width: 100%;
            background-color: #e0f7fa;
            padding: 20px 0;
        }
        .logos-track {
            display: flex;
            animation: scroll-logos 20s linear infinite;
            width: fit-content;
        }

        .logos-track img {
            height: 80px;
            margin: 0 40px;
            flex-shrink: 0;
        }

        @keyframes scroll-logos {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }      
        }
        .contact-columns {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
            max-width: 800px;
            margin: auto;
        }
        .contact-columns div {
            flex: 1;
            min-width: 250px;
        }  
        .whatsapp-icon {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            width: 75px;
            height: 75px;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 10px 8px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .whatsapp-icon:hover {
            background-color: #1ebe57;
            transform: scale(1.1);
        }        
        .whatsapp-icon i.fab.fa-whatsapp {
            font-size: 2.5em;
        }
        @media (max-width: 480px) { /* Ajuste de tamaño del icono de WhatsApp para móviles */
            .whatsapp-icon {
            width: 70px; 
            height: 70px;
            bottom: 20px;
            right: 20px;
            }
            .whatsapp-icon i.fab.fa-whatsapp {
            font-size: 2em;
            }
            .blogs-item {
            width: 90%;
            }
        }   