.hero-section {
    background-image: url('/assets/img/backgrouds/empresa.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    color: white;
    text-align: center;
    height: 110vh;
    margin-top: 8vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110vh;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro con transparencia */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.btn-custom {
    background-color: rgba(24, 124, 104, 0.993);
    border-color: rgba(24, 124, 104, 0.993);
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 50px;
}
.btn-custom:hover {
    background-color: rgba(14, 141, 116, 0.993);
    border-color: rgba(11, 143, 116, 0.993);
}