.cabecera {
    position: relative;
    background-image: url('../images/Nosotros/FondoLocales.jpg');
    background-size: cover;
    background-position: center;
    height: 380px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 100px;
    padding-left: 150px;
    color: white;
  }
  
  .cabecera .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 25, 74, 0.8), rgba(0, 25, 74, 0.2), rgba(0, 25, 74, 0));
    z-index: 1;
  }
  
  .cabecera .contenido {
    position: relative;
    z-index: 2;
  }
  
  .cabecera h1 {
    font-size: 48px;
    font-family: "Oswald", sans-serif;
    color: #ffffff;
    font-weight: bold;
    
  }

  body {
    font-family: 'Arial', sans-serif;
}

.sidebar {
    background-color: #fff;
    border-right: 1px solid #ccc;
    padding: 20px;
}

.active-filter {
    font-size: 0.9rem;
    color: #fff;
    background-color: green;
    padding: 2px 8px;
    border-radius: 8px;
    margin-left: 8px;
}

.location-list {
    max-height: 80vh;
    overflow-y: auto;
    padding-right: 10px;
}
.location-box {
transition: background-color 0.3s ease; 
}

.location-box:hover {
background-color: #f0f0f0; 
}

p {
    font-size: 14px;
    font-family: "Jost";
}

.location-box {
    border-top: 1px solid #ccc;
    padding-top: 10px;
}

@media (max-width: 767px) {
    .location-list {
        max-height: none;
    }
    .cabecera {
        height: 150px;
        padding-left: 60px;
        padding-bottom: 60px;
        background-position: center;
      }
    
      .cabecera h1 {
        font-size: 36px;
      }
}
.map-frame {
    width: 100%;
    height: 1000px;
    border: none;
}
h2 {
    font-family: "Oswald";
    font-size: 31px;
}

.custom-btn {
    background-color: #e0e0e0;
    color: #000;
    border: 1px solid #ccc;
    border: 1px solid #000;
    font-family: "Oswald";
    font-weight: bold;
    font-size: 19px;
}

h5 {
    font-family: "Oswald";
}

.custom-btn:hover {
    background-color: #c0c0c0;
}

/* Estilo para pantallas medianas */
@media (min-width:768px) and (max-width: 992px) {
    .location-list {
        max-height:500px;
    }
    .location-box {
      min-width: 250px;
      margin-right: 15px;
    }

    .map-frame {
        width: 100%;
        height: 1000px;
        border: none;
    }
  }
  


  