/****** Desarrollo comercial *****/
.desarrollocomercial {
    margin-top: 160px;
    width: 100%;
    height: 544px;
    background: #06052D;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/****** Imagen de fondo ******/
.imagenmundo1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    object-fit: cover;
    z-index: 0;
}

/****** Título ******/
.desarrollotitulo {
    position: relative;
    z-index: 1;
    color: #FBFAF4;
    text-align: center;
    font-family: Montserrat;
    font-size: 55px;
    font-weight: 600;
    margin-top: 80px;
}

/****** Contenido ******/
.desarrollocontenido {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1264px;
    color: #FFFFFE;
    text-align: justify;
    font-family: Montserrat;
    font-size: 32px;
    font-weight: 400;
    margin-top: 40px;
    opacity: 0.8;
}

/***** Hover del botón de desarrollo comercial *****/
.desarrollocomercial:hover .card-button {
    width: 308.7px;
    height: 66px;
    background: #FFF;
    color: #06052D;
    font-size: 24px;
}
@media (max-width: 1024px) {
    .desarrollotitulo {
        font-size: 42px;
        margin-top: 60px;
    }

    .desarrollocontenido {
        font-size: 24px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .desarrollocomercial {
        height: auto;
        padding: 60px 0;
    }

    .imagenmundo1 {
        height: 100%;
        object-fit: cover;
    }

    .desarrollotitulo {
        font-size: 32px;
        margin-top: 20px;
    }

    .desarrollocontenido {
        font-size: 18px;
        text-align: center;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .desarrollotitulo {
        font-size: 24px;
    }

    .desarrollocontenido {
        font-size: 16px;
    }
}
@media (min-width: 768px) and (max-width: 1024px) and (min-height: 512px) and (max-height: 1366px){
    .imagenmundo1{
        height: 530px;
    }

    .desarrollocontenido{
        width: 90%;
        font-size: 25px;
    }
}