
.componente-container {
    display: flex;
    text-align: center;
    padding: 20px 150px;
    border-radius: 8px;
    flex-wrap: wrap;
    max-width: 1440px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.componente-titulo {
    color: #0073aa;
    margin-bottom: 40px;
    font-size: 28px;
font-style: normal;
font-weight: 700;
line-height: 25px;
}

.componente-descripcion {
    color: #1D1D1F;
margin-bottom: 40px;
text-align: center;
font-family: Helvetica;
font-size: 17px;
font-style: normal;
font-weight: 400;
line-height: 27px;
}

.componente-iconos {
    display: flex;
    
    margin-bottom: 40px;
    gap: 30px;
}

.componente-icono {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.componente-icono img {
    width: 45px;
height: 44px;
    
}

.componente-boton {
    display: inline-block;
    padding: 5px 50px;
    width: 300px;
    gap: 10px;
    background: var(--fondo-botones);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
   
}
.componente-icono p {
    margin-top: 10px;
    text-align: center;

font-family: Helvetica;
font-size: 12px;
font-style: normal;
font-weight: 700;
line-height: 33.539px; /* 279.495% */
background: linear-gradient(180deg, #0070B2 0%, #00A6BD 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 768px) {
    .general-contaier-component {
        display: flex;
        justify-content: center;
        
    }
    .componente-container {
        padding: 0 20px;
    }
    .componente-boton {
        width: 100%;
    }

    .componente-titulo {
        font-size: 20px;
        text-align: center;
    }

    .componente-descripcion {
        font-size: 16px;
        text-align: center;
    }

    .componente-iconos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        justify-items: center;
       
        
    }

    .componente-icono {
        display: flex;
        flex-direction: column; /* Permite que el texto se ubique debajo del ícono */
        justify-content: center;
        align-items: center;
        width: 102.973px;
        height: 102.973px;
        background-color: var(--background-gris);
        border-radius: 8px;
        
    }
    .componente-icono img {
        width: 38.801px;
height: 33.558px;
    }
    .componente-icono p {
        margin-top: 10px;
        color: #0070B2;
        text-align: center;
        font-family: Helvetica;
        font-size: 11.117px;
        font-style: normal;
        font-weight: 700;
        line-height: 21.378px; /* 192.308% */
    }

    .componente-boton {
        display: block;
        margin: 20px auto 0;
        text-align: center;
    }
}

