.hero-section {
    background-image: url('/assets/img/backgrounds/mapa-rd.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    color: #000000;
    text-align: center;
    height: 90vh;
    
    margin-top: 8vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    /*
    background-color: rgba(0, 0, 0, 0.5);  Fondo oscuro con transparencia */
    z-index: 1;
}

.hero-section .container {
    background-color: #013c7fe2;
    color: white;
    padding: 2vh;
    padding-bottom: 10vh;
}

.hero-content {
    position: relative;
    z-index: 2;
}
.btn-custom {
    background-color:#013B7F;
    border-color:#013B7F;
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 50px;
}
.btn-custom:hover {
    background-color:#013c7fb0;
    border-color:#ffffff;
    color: #ffffff;
}