        .layout--container{
            font-family: 'Poppins';
        }
        
        .iconos{
            max-width: 45%;
            max-height: 45%;  
            margin-bottom: 5%;          
        }
        .iconosxs{
            max-width: 20%;
            max-height: 20%;  
            margin-top: 3%;          
        }
        
        .features_item--title {
            font-size: 15.2px;
            padding-top: 24px;
            color: #00AFDC;
            font-weight: bold;
        }
        .features_item--text {
            font-size: 12.2px;
            line-height: 23px;
            color: #00488B;
            padding-top: 9px;
        }
        .section--footer {
            text-align: center;
            padding: 10px 0 0; 
        }
       
        .service_item--text {
            font-size: 12.2px;
            text-align: center;
            color: #00488B;
            padding-top: 14px;
            line-height: 23px;
        }
        .services .service_item {
            border: 0px solid #e9e9e9;
            margin-top: 30px;
            text-align: center;
            margin-top: -40%;
        }
        .service_item--title {
            font-size: 14.4px;
            text-align: center;
            color: #00AFDC;
            font-weight: bold;
        }
        .section--title {
            font-size: 26.2px;
            font-weight: bold;
            text-align: center;
            color: #00488B;
        }
        .section--description {
            font-size: 17.2px;
            line-height: 30px;
            color: #00488B;
            text-align: center;
            margin: 13px 0 0;
            max-width: 65%;
            margin-left: 18%;
        }
        .hero-banner {
            position: relative;
            width: 100%;
            height: 400px;                    
            display: flex;
            align-items: center;
            overflow: hidden;
            
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: transparent;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 50%;                       
            color: #ffffff;
            text-align: left;
        }

        .hero-title {
            font-size: 27.9px;
            font-weight: bold;
            line-height: 1.2;                        
            letter-spacing: 0.5px;
        }

        .hero-title .highlight {            
            font-size: 32.6px;
            font-weight: bold;
            margin-top: 5px;
        }

        .hero-description {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 35px;
            max-width: 700px;
            font-weight: 400;
        }

        .btn-hero {
            display: inline-block;
            padding: 14px 45px;
            background-color: #00a8e1;
            color: #ffffff;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            border: 2px solid #00a8e1;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 168, 225, 0.3);
        }

        .btn-hero:hover {
            background-color: #0095c9;
            border-color: #0095c9;
            box-shadow: 0 6px 20px rgba(0, 168, 225, 0.4);
            transform: translateY(-2px);
        }

        .btn-hero:active {
            transform: translateY(0);
            box-shadow: 0 4px 15px rgba(0, 168, 225, 0.3);
        }
        .titulo-clientes {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px; /* espacio entre texto y líneas */
            padding: 40px 0;
        }

        .titulo-clientes h2 {
            font-size: 22px;
            font-weight: 600;
            color: #0095c9; /* turquesa */
            margin: 0;
        }

        .titulo-clientes .linea {
            flex: 1;
            max-width: 280px; /* controla largo máximo */
            height: 3px;
            background-color: #0095c9;
        }

        .image-container {
            position: relative;
            width: 100%;
        }

        .image-container img {
            width: 100%;
            display: block;
            border-radius: 8px;
        }
        .arrow-btn {
            position: absolute;
            bottom: 15px;
            right: 15px;

            width: 45px;
            height: 45px;
            border-radius: 50%;

            background-color: #00488B;
            color: white;
            border: none;
            font-size: 20px;
            cursor: pointer;

            display: flex;
            align-items: center;
            justify-content: center;

            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: 0.3s ease;
        }

      


        /* Responsive */
        @media (max-width: 768px) {
            .hero-banner {
                height: 500px;
            }

            .hero-content {
                padding: 40px 20px;
            }

            .hero-title {
                font-size: 32px;
            }

            .hero-title .highlight {
                font-size: 36px;
            }

            .hero-description {
                font-size: 16px;
            }

            .btn-hero {
                font-size: 16px;
                padding: 12px 35px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 26px;
            }

            .hero-title .highlight {
                font-size: 30px;
            }

            .hero-description {
                font-size: 14px;
            }
        }


        /* =========================
   TABLETS (≤ 992px)
========================= */
@media (max-width: 992px) {

    .section--description {
        max-width: 90%;
        margin-left: 5%;
    }

    .hero-content {
        max-width: 70%;
    }

    .services .service_item {
        margin-top: 0; /* quitamos el -40% en pantallas medianas */
    }
    .features_item--media img {
    width: 70%;
}
}


/* =========================
   MÓVILES (≤ 768px)
========================= */
@media (max-width: 768px) {

    .layout--container {
        text-align: center;
    }

    .section--title {
        font-size: 22px;
    }

    .section--description {
        font-size: 15px;
        line-height: 24px;
        max-width: 95%;
        margin-left: 2.5%;
    }

    .features_item--title {
        font-size: 14px;
    }

    .features_item--text {
        font-size: 13px;
        line-height: 20px;
    }

    .service_item--title {
        font-size: 15px;
    }

    .service_item--text {
        font-size: 13px;
        line-height: 20px;
    }

    .services .service_item {
        margin-top: 0; /* importante para que no se desborde */
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-banner {
        height: auto;
        padding: 60px 20px;
    }
    
    .hero-banner{
            margin-top: -15%;
    }
    .iconos {
        max-width: 25%;
        max-height: 70%;
    }

    .iconosxs {
        max-width: 15%;
        max-height: 35%;
    }
}


/* =========================
   MÓVILES PEQUEÑOS (≤ 480px)
========================= */
@media (max-width: 480px) {

    .section--title {
        font-size: 20px;
        padding: -30%;
    }

    .section--description {
        font-size: 14px;
        line-height: 22px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-title .highlight {
        font-size: 24px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 22px;
    }

    .hero-banner{
            margin-top: -25%;
    }

    .btn-hero {
        width: 100%;
        padding: 12px;
        font-size: 15px;
    }

    .iconos {
        max-width: 30%;
        max-height: 70%;
    }

    .iconosxs {
        max-width: 15%;
        max-height: 35%;
    }

}
