@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:wght@300;400;500;600;700;800&display=swap');
* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    font-family: "poppins";
}

header {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5),rgba(0,0,0,0.5)), url("/images/banner/staysBG.jpeg");
  height: 800px;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px;
}

.header__navegation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__navegation ul{
  display: flex ;
  justify-content: end;
  list-style: none;
  gap: 30px;
  color: #fff;
}

.header__navegation a {
  position: relative;
  text-decoration: none;
  padding-bottom: 5px;
  font-size: 1.1em;
  color: #fff;
}

.header__navegation a::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #d99a1e ;
  transition: all .5s ease;
}

.header__navegation a:hover::after {
  width: 100%;
}

.header__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 80%;
}

.header__content h1 {
  font-size: 3.125em;
  font-weight: 600;
  text-align: center;
  background: linear-gradient(45deg, #f0c674, #d99a1e, #bf7e0a, #f0c674);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;

}

.header__content h2 {
  color: #e0e0e0;
  font-size: 1.2em;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
  width: 75%;
}

.row {
    display: flex;
    gap: 1rem;
}

.btn {
  padding: 10px 0px;
  width: 7rem;
  background-color: #d99a1e ;
  color: #fff;
  border-radius: 5px;
  font-weight: 400;
  font-size: 17px;
  cursor: pointer;
  transition: all .3s ease;
  background: linear-gradient(135deg, #f0c674, #d99a1e, #bf7e0a, #f0c674);
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s;
}

.btn:hover {
    background: linear-gradient(135deg, #d9d7d2, #ffffff, #ffffff, #ffffff);
    color: #d99a1e;
}

.main {
  background-color: #18181B;
  position: relative;
}
.main__fill {
  max-width: 1200px;
  margin: 0 auto;
}

main {
  padding: 40px 20px;
  position: relative;
}

.main__fill h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1.5em;
  text-align: center;
}

.main__planes {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.planes__caja {
  width: 350px; /* Ajustar al 100% del ancho de la columna del grid */
  border-radius: 1em;
  padding: 20px;
  flex-wrap: nowrap;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5),rgba(249, 186, 62, 0.751)), url("/images/banner/staysBG.jpeg");
  cursor: pointer;
  transition: background 1s ease;
  background-size: cover;
  background-position: center;
}

.planes__caja:hover {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5),rgba(240, 198, 116,0.5) 65%), url("/images/banner/staysBG.jpeg");
  background-size: cover;
  transform: scale(1.1);
}

.villa-bg {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5),rgba(249, 186, 62, 0.751)), url("/images/banner/banner-1.jpg");
    background-size: cover;
    background-position: center;
}

.villa-bg:hover {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5),rgba(240, 198, 116,0.5) 65%), url("/images/banner/banner-1.jpg");
    background-size: cover;
}

.planes__caja span {
  display: block;
  color: #d99a1e ;
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px dashed gray;
}

.planes__precie {
  color: #fff;
  font-size: 1rem;
  text-align: center;
}

.planes__caja p {
  color: #fff;
  text-align: center;
  margin-top: 7rem;
}

@media (max-width: 1200px) {
  body {
    font-size: 14px;
  }
  background-image {
    background-position: center center;
  }
}

@media (max-width: 800px) {
  .header__navegation ul {

  }
}

.logo{
   width: 7rem;
}