*{
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

body{
  margin:0;
  background:#fafafa;
}

.hero{
  background:url('https://images.unsplash.com/photo-1560185008-b033106af5c3');
  background-size:cover;
  background-position:center;
  height:70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
}

.overlay{
  background:rgba(0,0,0,.6);
  padding:30px;
  width:100%;
}

.btn-cta{
  display:inline-block;
  margin-top:10px;
  background:#e63946;
  color:white;
  padding:12px 18px;
  border-radius:30px;
  text-decoration:none;
  transition:.3s;
}

.btn-cta:hover{
  transform:scale(1.05);
}

/* FILTROS */

.filtros{
  text-align:center;
  padding:20px;
}

select{
  padding:10px;
  width:220px;
}

/* GRID */

.grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:15px;
  padding:15px;
}

.card{
  background:white;
  border-radius:12px;
  overflow:hidden;
  transition:.3s;
  box-shadow:0 5px 10px rgba(0,0,0,.1);
}

.card:hover{
  transform:translateY(-5px);
}

.card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.card-body{
  padding:10px;
}

.precio{
  color:#e63946;
  font-size:20px;
  font-weight:bold;
}

.btn{
  width:100%;
  border:none;
  padding:10px;
  margin-top:5px;
  border-radius:8px;
  cursor:pointer;
}

.wsp{
  background:#25d366;
  color:white;
}

/* DUEÑOS */

.dueños{
  text-align:center;
  padding:25px;
  background:white;
}

/* MODAL */

.modal{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.6);
  display:flex;
  align-items:flex-start;
  justify-content:center;
  overflow-y:auto;
  padding:20px 0;
}

.modal-box{
  background:white;
  width:90%;
  max-width:600px;
  padding:15px;
  border-radius:12px;

  max-height:90vh;      
  overflow-y:auto;
}

.oculto{display:none}
.cerrar{float:right;cursor:pointer}


#calendario{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:5px;
  margin-top:10px;
}

.dia{
  padding:8px;
  text-align:center;
  border-radius:6px;
  cursor:pointer;
}

.libre{
  background:#c8f7c5;
}

.ocupado{
  background:#f7c5c5;
}

.leyenda{
  display:flex;
  gap:10px;
  margin-top:10px;
  font-size:13px;
}

/* RESPONSIVE */

@media(max-width:900px){
  .grid{grid-template-columns:1fr}
}

.filtro-meses{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

footer{
  text-align: center;
  padding: 18px;
  background: #111827;
  color: #e5e7eb;
  font-size: 14px;
  letter-spacing: 1px;
  border-top: 3px solid #2563eb;
}

.btn.mapa{
  background:#0b5ed7;
}

/* CONTENEDOR */
.idiomas{
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 999;
}

/* SELECTOR */
#selectorIdioma{
  font-family: 'Poppins', sans-serif;
  padding: 8px 12px;
  border-radius: 10px;
  border: none;
  outline: none;

  background: white;
  color: #222;

  box-shadow: 0 4px 10px rgba(0,0,0,.15);

  cursor: pointer;
  transition: .3s;
}

/* Hover */
#selectorIdioma:hover{
  transform: translateY(-2px);
}

/* Opciones */
#selectorIdioma option{
  padding: 10px;
}

/* En móvil */
@media(max-width:600px){
  .idiomas{
    top:10px;
    right:10px;
  }

  #selectorIdioma{
    font-size: 14px;
    padding: 6px 10px;
  }
}
