* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

:root {
  --primary-color: #01a545;
  --light-red: #0d9620;
  --primary-black: #111;
  --gray: #aaa;
}

body {
  background-color: #fff;
  color: var(--primary-black);
  overflow-x: hidden;
}

/*estilos por defecto*/

a {
  text-decoration: none;
  color: inherit;
}

section .container {
  width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.left,
.right {
  width: 50%;
  padding: 1rem;
  display: flex;
}

/*navbar*/
header {
  padding: 0 2rem;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-size: 2rem;
  color: var(--gray);
}

.navbar .logo span {
  color: var(--primary-color);
  font-weight: bold;
}

.navbar .links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar .links a {
  font-size: 1.2rem;
}

.navbar .links a:hover {
  color: var(--primary-color);
}


.navbar .menu {
  font-size: 2rem;
  cursor: pointer;
  display: none;
}

.navbar .menu:hover {
  color: var(--primary-color);
}

/*MENU RESPONSIVO*/
.side-bar .backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.side-bar .side-menu {
  padding: 5rem 1rem;
  position: absolute;
  left: 0;
  top: 0;
  width: 300px;
  height: 100vh;
  background-color: var(--primary-black);
  transform: translateX(-100%);
  transition: transform 0.5s ease-in-out;
}

.side-bar.open .backdrop {
  opacity: 1;
}

.side-bar.open .side-menu {
  transform: translateX(0);
}

.side-bar .side-menu .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
}

.side-bar .side-menu .close-btn:hover {
  color: var(--primary-color);
}

.side-bar .side-menu li {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

.side-bar .side-menu li:hover {
  color: var(--primary-color);
}

.window-notice {
  background: rgba(33, 41, 52, .85);
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  display: flex;
  position: fixed;
  z-index: 999;
  display: none;
}

.window-notice .content {
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(33, 41, 52, .75);
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
  margin: auto;
  max-width: 600px;
  min-width: 320px !important;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 2rem;
  font-size: 1.3rem;
}
/*seccion de inicio*/

.home {
  padding: 1rem 0;
}

.home .left {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.home h1 {
  font-size: 5rem;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 5.5rem;
}

.home h1 span {
  color: var(--primary-color);
}

.home p {
  font-size: 1.125rem;
  line-height: 2;
  margin: 2rem 0;

}

.home a {
  display: inline-block;
  padding: 1rem 3.5rem;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  border-radius: 30px;
}

.home a:hover {
  background-color: var(--primary-black);
}

.home .img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}

.home .img-container::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: -1;
  border-radius: 61% 39% 75% 25% / 37% 70% 30% 63%;
}

.home .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 1;
}

.home .gallery {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.home .gallery .img-wrapper {
  overflow: hidden;
  aspect-ratio: 1;
}
.home .gallery .img-wrapper .capa{
  margin-top: -7rem;
  color: #fff;
  line-height: 1px;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;  
  text-shadow: 1px 1px 2px black;
  width: 100%;
  height: 100%;
}

.home .gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: scale 1s ease;
}

.home .gallery img:hover {
  scale: 1.2;
}

/*SECCION DEL SERVICIO*/
.services {
  padding-bottom: 100px;
  background-color: #1c1819;
}

.services .img-container {
  position: relative;
  height: 700px;  
}

.services img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  /* box-shadow: inset 5em 0 #1c1819; */
}

.services .container {
  position: relative;
  margin-top: -350px;
  color: #fff;
  z-index: 1;
}
.services .container h1{
  width: 100%;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 3rem;
  text-shadow: 1px 1px 2px black;
}

.services .list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;

}

.services .card {
  padding: 30px;
  background-color: #333;
}

.services .card .title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  text-transform: capitalize;
}

.services .card .number {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.services .card p {
  margin: 1rem 0 2rem;
  color: #b3b3b3;
  font-style: italic;
}

.services .card a {
  text-transform: uppercase;
  border-bottom: 2px solod #fff;
}

.services .card a:hover {
  color: #b3b3b3;
}

/*SECCION PAQUETES*/

.package {
  padding: 0.5em 0;
}

.package .container {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.package h1 {
  margin-bottom: 10px;
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: bold;
}

.package p {
  max-width: 70%;
}

.package .list {
  margin-top: 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.package .card {
  height: 260px;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.package .card1 {
  background-image: url(img/BELLA_DURMIENTE.jpg);
}

.package .card2 {
  background-image: url(img/aguas_sulfurosas.png);
}

.package .card3 {
  background-image: url(img/botanico2.jpg);
}

.package .card4 {
  background-image: url(img/catarata_santa_carmen.jpg);
}

.package .card5 {
  background-image: url(img/laguna2.png);
}

.package .card6 {
  background-image: url(img/aguas_cristalinas.jpg);
}

.package .card .info {
  width: 50%;
  height: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

,
.package .card h2 {
  font-size: 1.5rem;
  font-weight: bold;
}

.package .card .price {
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
}

.package .card .price li {
  list-style: none;

}

.package .card button {
  margin: 0 20px;
  padding: 10px 30px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  outline: none;
  border-radius: 30px;
  font-size: 0.857rem;
  letter-spacing: 1px;
  font-weight: bold;
  text-transform: uppercase;
}

.package .card button:hover {
  background-color: var(--light-red);
  cursor: pointer;
  ;
}


/*SECCION DE CONTACTO*/

.contact {
  background-color: #1a1a1a;
  min-height: 600px;
  color: #fff;
}

.contact .left {
  min-height: 600px;
  padding: 0;
  position: relative;
  width: 40%;
  align-items: center;
  justify-content: center;
}

.contact .left::before {
  content: '';
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  background-color: var(--primary-color);
}

.contact .img-container {
  width: 90%;
  height: 90%;
  z-index: 1;
}

.contact .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*************************************************************/

.contact .right {
  width: 60%;
  padding: 4rem 1rem;
  flex-direction: column;
  text-align: center;
}

.contact h1 {
  font-size: 2.25rem;
}

.contact p {
  letter-spacing: 1px;
  font-size: 1.125rem;
}

.contact form {
  margin: 5rem 0;
  padding: 0 2rem;
  display: flex;
  gap: 2rem;
}

.contact input {
  flex: 1;
  padding: 10px 12px;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 2px solid #fff;
  font-size: 1.125rem;
  color: #fff;
}

.contact button {
  padding: 10px 30px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact button:hover {
  background-color: #fff;
  color: #111;
  cursor: pointer;
}

.contact .info {
  width: 100%;
  display: flex;
}

.contact .info .location,
.contact .info .social {
  flex: 1;
  padding: 2rem;
  text-align: right;
}

.contact .info h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.contact .info .links {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.contact .info .links li {
  list-style: none;
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.contact .info .links a {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer {

  padding: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  color: #fff;
}


/*DISEÑO RESPONSIVO*/
/*MAX-WIDTH 1200*/

@media (max-width:1200px) {
  section .container {
    width: 940px;
  }

  .home .img-container {
    width: 400px;
    height: 400px;
  }
}

/*MAX-WIDTH 992*/

@media (max-width:992px) {
  section .container {
    width: 720px;
  }

  .navbar .menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .left,
  .right {
    width: 100%;
    padding: 0;
  }

  .navbar .links {
    display: none;
  }

  .home {
    padding-top: 0.5rem;
  }

  .home .left {
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
  }

  .home h1 {
    font-size: 4rem;
  }

  .home .right {
    justify-content: center;
  }

  .services .list {
    grid-template-columns: 1fr 1fr;
  }

  .package .card .info {
    padding: 0;
  }

  .contact .container {
    flex-direction: column-reverse;
  }

  .contact .left,
  .contact .right {
    width: 100%;
  }
}

/*MAX-WIDTH 768*/

@media (max-width:768px) {
  section .container {
    width: 540px;
  }

  .home .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .services .list,
  .package .list {
    grid-template-columns: 1fr;
  }

  .contact .right {
    padding: 3rem 0;
  }

  .contact form {
    margin: 3rem 0;
    padding: 0;
    flex-direction: column;
  }
}

/*MAX-WIDTH 576*/
@media (max-width:576px) {
  section .container {
    width: 340px;
  }

  .home h1 {
    margin-bottom: 3rem;
  }

  .home p {
    display: none;
  }

  .home .img-container {
    width: 300px;
    height: 300px;
  }

  .home .gallery {
    display: none;
  }
}