* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat",regular;
  }
  
  body {
    background-color: #e3e3e3;
    color: #333;
  }
  
  header .top-bar {
    background-color: #b4bfe9;
    color: #fbeec2;
    position: relative;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    font-family: "Lilita One", sans-serif; 
     box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
header .top-bar h1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    margin: 0;
  }
  
  header h1 {
    font-size: 1.5rem;
  }
  .icon {
    font-size: 1.4rem;
    color: #fbeec2;
    cursor: pointer;
    transition: transform 0.2s ease;
    margin-left: auto;
  }
  
  .icon:hover {
    transform: scale(1.1);
  }

  .icono-filtro {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .filtros-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #efefef;
    padding: 20px;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  
  .oculto {
    transform: translateX(100%);
  }
  
  .cerrar {
    float: right;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 10px;
  }
  
  h2, h3 {
    text-align: center;
    color: #333;
  }
  
  .grupo-filtro {
    margin: 20px 0;
  }
  
  .grupo-filtro label {
    display: block;
    margin: 5px 0;
  }
  input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #b4bfe9;
    
  }
  
  .slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .slider-container input {
    width: 100%;
  }
  
  .select-ubicacion {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #aaa;
    background: #c3cfe3;
  }
  .intro {
    text-align: center;
    padding: 1rem;
  }
  .menu-filtros {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background-color: #e7e7dd;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  
  .menu-filtros h3 {
    margin-bottom: 1rem;
  }
  
  .menu-filtros label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  
  .menu-filtros .cerrar {
    background: none;
    border: none;
    font-size: 1.5rem;
    float: right;
    cursor: pointer;
  }
  
  .menu-filtros.abierto {
    right: 0;
  }
  
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
  }
  
  .overlay.visible {
    display: block;
  }
  
  
  .intro h2 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
  
  .intro p {
    font-size: 0.85rem;
    color: #555;
  }
  
  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 0 1rem;
  }
  
  .card {
    background-color: #fbeec2a9;
    border-radius: 25px;
    width: 45%;
    margin: 0.5rem 0;
    text-align: left;
    padding: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ccc;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
  
  .card h3 {
    font-size: 1rem;
    margin: 0.5rem 0 0.2rem;
  }
  
  .card p {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.5rem;
  }
  
  .bottom-nav {
    background-color: #b4bfe9;
    padding: 0.7rem 1rem;
    display: flex;
    justify-content: space-around;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 1000;
    
  }
  
  .nav-btn img {
    width: 50px;
    height: 45px;
    object-fit: contain;
    transition: transform 0.2s ease;
  }
  
  .nav-btn img:hover {
    transform: scale(1.1);
  }
