/*@import "https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap";*/
@import "https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap";

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-image: url(../imgs/fondo.jpg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  /*background-attachment: fixed; 
  font-family: "Poppins", sans-serif;*/
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  max-width: 1900px;
  min-height: 100vh;
  padding: 0px 50px;
}

.grid-container > * {
  /* box-shadow: 10px 6px 37px -13px rgba(51, 51, 51, 0.74);
  border-radius: 10px;*/
  padding: 5px;
  /*text-align: center; */
  font-weight: 500;
}

.grid-container {
  display: grid;
  row-gap: 0px;
  column-gap: 5px;
  /*gap: 5px; */
  grid-template:
    "header" 200px
    "navbar" 50px
    "main" 100px
    "sidebar"
    "footer";

  .header {
    grid-area: header;
    text-align: center;
    margin: 0px;
    padding: 0px;
  }

  .navbar {
    grid-area: navbar;
    margin: 0px;
    padding-top: 10px;
    background-color: rgb(255, 245, 214);
  }

  .sidebar {
    grid-area: sidebar;
  }

  .main {
    grid-area: main;
    margin: 0px;
    padding: 5px;
    position: relative;
    background-color: rgb(255, 245, 214);
  }

  .footer {
    grid-area: footer;
    color: #fff;
    padding: 20px;
    background-color: rgba(25, 40, 47, 0.75);
    display: flex;
    padding: 20px, 20px;
    text-align: justify;
  }

  @media (min-width: 768px) {
    grid-template:
      "header header" auto
      "navbar navbar" 50px
      "sidebar main" auto
      "footer footer" 100px/
      200px auto;
  }
  @media (min-width: 992px) {
    grid-template:
      "header header header" 100px
      "sidebar navbar navbar" 100px
      "sidebar main main" auto
      "footer footer footer" 100px/
      200px auto 200px;
  }
}

article {
  padding: 5px;
  width: 50%;
}

#perfil {
  border-radius: 50%;
}

.promo {
  background-color: rgb(231, 217, 190);
  border-radius: 5px;
  position: relative;
  top: 170px;
  height: 200px;
}

.pie {
  width: 50%;
  text-align: left;
}

.socials {
  width: 50%;
  text-align: center;
}

.top {
  border-radius: 5px;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  background-color: rgba(177, 204, 196, 0.75);
  align-items: center;
}
.cont {
  position: relative;
  margin: 0;
  padding: 5px;
  width: 49%;
}

.recep {
  margin: 0;
  padding: 5px;
  width: 49%;
  margin-left: auto;
}

.formu {
  margin: 0;
  padding: 5px;
  width: 49%;
}

.columnas {
  display: flex;
}

.menu {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

nav#menu {
  background-color: rgb(255, 245, 214);
  display: block;
  border-radius: 5px;
}

nav#menu ul {
  padding: 0;
  margin: 0;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

nav#menu ul li {
  list-style: none;
  border-radius: 5px;
  background-color: rgb(255, 245, 214);
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  border-right: 1px solid rgb(255, 245, 214);
  border-left: 1px solid rgb(255, 245, 214);
}

nav#menu ul li a {
  font-size: 15px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 5px;
  color: #155c89;
  background-color: rgb(177, 204, 196);
  width: 100%;
  display: block;
  padding: 10px 0;
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}

nav#menu ul li.active a,
nav#menu ul a:hover {
  background-color: rgb(34, 82, 129);
  color: #89c2fb;
}

.mapa {
  width: auto;
  overflow-y: scroll;
  display: inline-block;
}

.container-form {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
  margin-top: 90px;
}
.container-form h2 {
  margin-bottom: 15px;
  font-size: 35px;
}
.container-form p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.container-form a {
  font-size: 17px;
  display: inline-block;
  text-decoration: none;
  width: 100%;
  margin-bottom: 15px;
  color: black;
  font-weight: 700;
}
.container-form a i {
  color: black;
  margin-right: 10px;
}
.container-form form .campo,
textarea {
  width: 100%;
  padding: 15px 10px;
  font-size: 16px;
  border: 1px solid #dbdbdb;
  margin-bottom: 20px;
  border-radius: 3px;
  outline: 0px;
}
.container-form form textarea {
  max-width: 530px;
  min-width: auto; /*530px; */
  min-height: 140px;
  max-height: 150px;
}
.container-form .btn-enviar {
  padding: 15px;
  font-size: 16px;
  border: none;
  outline: 0px;
  background: red;
  color: white;
  border-radius: 3px;
  cursor: pointer;
  transition: all 300ms ease;
}
.container-form .btn-enviar:hover {
  background: #e39403;
}

/* inicio testimonios*/
.card-cont-vr {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}
.card-test {
  justify-items: center;
  width: 200px;
  background-color: lightgray;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  margin: 20px;
}
.card-test img {
  width: auto;
  height: auto;
}

.card-test-cont {
  padding: 16px;
}

.card-test-cont h3 {
  font-size: 28px;
  margin-bottom: 8px;
}
.card-test-cont p {
  color: #666;
  font-size: 15px;
  line-height: 1.3;
}

#perfil {
  width: 110px;
  height: auto;
}
/* fin testimonios*/

/* inicio test portada*/
.card-cont-fr {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
  justify-content: center;
}
.card-fr {
  justify-content: center;
  width: 200px;
  /* background-color: lightgray; 
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); */
  margin: 10px;
}
.card-fr img {
  width: auto;
  height: auto;
}

.card-fr-cont {
  padding: 10px;
}

.card-fr-cont h3 {
  font-size: 28px;
  margin-bottom: 8px;
}
.card-fr-cont p {
  color: #666;
  font-size: 15px;
  line-height: 1.3;
}

#perfil {
  width: 110px;
  height: auto;
}
/* fin test portada*/

/* inicio test portada*/
.map {
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
}

.card {
  width: 90%;
  height: 250px;
  margin: 20px;
  display: flex;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 10px #000000;
  border-radius: 10px;
}
.img-card {
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: auto;
}

.content {
  width: 90%;
  height: 100%;
  display: grid;
  grid-template-rows: 50px 150px 50px;
  padding: 10px 15px;
}

.content .title h3 {
  color: #026e5e;
}

.card .content .title span {
  color: #0089ba;
  font-size: 12px;
}

.container-room {
  width: 100%;
  max-width: 1200px;
  height: 430px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: auto;
}

.container-room .card-room {
  width: 330px;
  height: 430px;
  border-radius: 8px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin: 20px;
  text-align: center;
  transition: all 0.25s;
}

.container-room .card-room:hover {
  transform: translateY(-15px);
  box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
}

.container-room .card-room img {
  width: 330px;
  height: 220px;
}

.container-room .card-room h3 {
  font-weight: 100;
}

.container-room .card-room p {
  padding: 0 1rem;
  font-size: 16px;
  font-weight: 300;
}

.container .card a {
  font-weight: 500;
  text-decoration: none;
}
