/* Import */
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");

/* General Global Settings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary: #f06;
}

body {
  position: relative;
  background: #ffffff;
  font-family: "Roboto", sans-serif;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

/* ---------------------------------------------------
# Header
----------------------------------------------------- */

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 100px;
  background: transparent;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: 1s;
  z-index: 1300;
}

header.active {
  background: #ffffff;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
}

.logo {
  font-family: "Great Vibes", cursive;
  font-size: 40px;
  color: black;
  letter-spacing: 2px;
  font-weight: 900;
  text-decoration: none;
}

.menu {
  display: none;
  color: black;
  font-size: 2em;
  transition: 0.5s;
}

/* Menu en el movil */
.menu .open {
  display: block;
}

.menu .close {
  display: none;
}

.menu.active .open {
  display: none;
}

.menu.active .close {
  display: block;
}

.nav {
  display: flex;
}

.nav li {
  list-style: none;
  margin: 0 20px;
}

.nav li a {
  color: black;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.5s;
  font-weight: 350;
  padding: 10px;
}


.nav li a:hover,
.nav li a.active {
  color: var(--primary);
}

.search {
  position: relative;
  width: 300px;
  height: 40px;
  transition: 0.5s;
}

.search input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: black;
  background: transparent;
  border: none;
  border-bottom: 1px solid black;
  outline: none;
  padding: 0 10px 0 15px;
}

.search input::placeholder {
  color: black;
  text-transform: uppercase;
  font-weight: 350;
}

.search ion-icon {
  font-size: 1.4em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  padding-left: 10px;
  color: black;
  cursor: pointer;
  border-left: 1px solid black;
}

.btn-contact {
  border-bottom: 1px solid var(--primary);
  border-top: 1px solid var(--primary);
}

.btn-contact:hover {
  background-color: rgb(255, 0, 102);
  color: #f9fcfe !important;
  border-color: #111111;
}

/* ---------------------------------------------------
# Banner
----------------------------------------------------- */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 0 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s;
}

.banner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.5);
}

.bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.bg-slide .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scale(0) translate(-50%, -50%);
  width: 60vw;
  z-index: 1100;
  transition: ease-in-out 3s;
  opacity: 0;
  visibility: hidden;
}

.bg-slide .content h1 {
  font-size: 4em;
  font-family: "Great Vibes", Cursive;
  /* word-spacing: 600px; */
  text-align: center;
}

.bg-slide .content p {
  font-family: "Great Vibes", cursive;
  font-weight: 200;
  font-size: 2em;
  letter-spacing: 1px;
}

.bg-slide.active .content {
  transform: scale(1) translate(-50%, -50%);
  opacity: 1;
  visibility: visible;
}

.circle {
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(0, 0) rotateZ(0);
  opacity: 0;
  visibility: hidden;
  transition: 3s;
}

.circle.bg {
  background: transparent;
  width: 140vw;
  height: 140vw;
  border-radius: 0;
}

.circle.large {
  width: 70vw;
  height: 70vw;
}

.circle.small {
  width: 35vw;
  height: 35vw;
}

.circle img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.circle.bg img {
  border-radius: 0;
}

.circle.large img {
  transform: scale(2);
}

.circle.small img {
  transform: scale(4);
}

.bg-slide.active .circle.bg {
  transform: translate(0, 0) rotateZ(-360deg);
  opacity: 1;
  visibility: visible;
}

.bg-slide.active .circle.large {
  transform: translate(0, 0) rotateZ(720deg);
  opacity: 1;
  visibility: visible;
}

.bg-slide.active .circle.small {
  transform: translate(0, 0) rotateZ(-720deg);
  opacity: 1;
  visibility: visible;
}

.slide-loader {
  width: 100%;
  justify-content: space-between;
  position: absolute;
  z-index: 100;
  top: 90px;
  right: 10px;
  display: flex;
  gap: 20px;
  margin-bottom: 0;
  display: none;
}

.slide-loader li {
  list-style: none;
}

.slide-loader li a {
  text-decoration: none;
  color: #111111;
  font-size: 1.5em;
  font-weight: 800;
  transition: 0.5s;
  line-height: 1em;
  padding: 0;
  display: none;
}

.slide-loader li a.active,
.slide-loader li a:hover {
  font-size: 3em;
}

.slide-loader::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -70%;
  width: 100px;
  height: 2px;
  background: #111111;
}

.share {
  text-align: center;
}

button {
  background-color: #f4e3ea25;
  color: rgb(0, 0, 0);
  border: 1px solid #111111;
  padding: 5px 10px !important;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 8px;
  cursor: pointer;
  border-radius: 20px !important;
  transition: background-color 0.3s;
}

button::after .fa-pause {
  background-color: #e93a83;
}

.share {
  position: absolute;
  top: 50%;
  left: 4px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 1200;
}

.share::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  top: -120%;
  height: 70px;
  width: 2px;
  background: #111111;
}

.share p {
  writing-mode: vertical-rl;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 18px;
  color: #111111;
}

.share a {
  text-decoration: none;
  color: #111111;
}

.share a ion-icon {
  font-size: 1.8em;
}

.lead {
  position: absolute;
  bottom: 0;
  z-index: 1000;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.move-down {
  position: absolute;
  z-index: 1100;
  color: #111111;
}

.move-down ion-icon {
  font-size: 3.5em;
}

@keyframes flink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.lead svg {
  font-family: "Great Vibes", cursive;
  position: absolute;
  z-index: 1100;
  fill: currentColor;
  height: auto;
  max-width: 30vmin;
  transform-origin: center;
  width: 75%;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from {
    transform: rotateZ(0);
  }
  to {
    transform: rotateZ(-360deg);
  }
}

/* ---------------------------------------------------
# Sctions General
----------------------------------------------------- */
section {
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 100vh;
  bottom: 0;
  background: #ffffff;
  transition: ease-in-out 1s;
  transform-origin: bottom;
  z-index: 1100;
  opacity: 0;
}

section::-webkit-skrollbar {
  display: none;
}

section.section-show {
  padding: 150px 100px 100px;
  top: 0;
  height: auto;
  min-height: 100vh;
  overflow-y: visible;
  opacity: 1;
}

section h1 {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: 3em;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-align: center;
}

section h4 {
  font-family: "Great Vibes", cursive;
  font-weight: 300;
  font-size: 1.8em;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

section p {
  font-size: 1.3em;
  font-weight: 300;
  color: #111111;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

/* ---------------------------------------------------
# Nuestra Historia ABOUT
----------------------------------------------------- */
.about h2{
  font-family: "Great Vibes", cursive;
  font-size: 3em;
  text-align: center;
  font-weight: 900;
}

.about h2::first-letter {
  color: var(--primary);
  font-size: 1.2em;
}


.about .container .row h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.about .img-box {
  position: relative;
}

.about .img-box img {
  max-width: 450px;
  margin-bottom: 20px;
}

.about .img-box .corner-img {
  position: absolute;
  width: 15vw;
  right: 10px;
  bottom: -50px;
}

.section-bg-img {
  position: absolute;
  bottom: 50px;
  right: 200px;
  opacity: 0.002;
  z-index: 100;
  pointer-events: none;
}

.container .itinerario-tree-top {
  position: fixed;
  top: -500px;
  right: -400px;
  transform: rotate(220deg);
  width: 2000px;
  opacity: 0.03;
  pointer-events: none;
}

.itinerario-tree-bot {
  position: fixed;
  left: -500px;
  top: -400px;
  transform: rotate(135deg);
  width: 2000px;
  opacity: 0.03;
  pointer-events: none;
}

.section-btn {
  position: relative;
  text-decoration: none;
  color: #111111;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
  transition: 0.3s;
}

.section-btn:hover {
  color: var(--primary);
}

.section-btn::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -5px;
  width: 85%;
  height: 1px;
  background-color: #111111;
  transition: 0.3s;
}

.section-btn:hover::before {
  left: 20%;
  background: var(--primary);
}









/* +++++++++++++++++++++++++
# Lugar
++++++++++++++++++++++++++++ */
.ubicacion .container .row {
  justify-content: center;
}

.ubicacion .container .row h1 {
  margin-bottom: 20px;
  font-weight: 500;
}


.ubicacion .container h1::first-letter{
  color: var(--primary);
  font-size: 1.1em;
}














/* ---------------------------------------------------
# Itinerario Seccion
----------------------------------------------------- */
/* .services::before{
    position: inherit;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    top: 250px;
    height: 100px;
    width: 2px;
    background: #111111;
} */

.services .container .row h1::first-letter{
  color: var(--primary);
  font-size: 1.3em;
}


.card {
  position: relative;
  margin: 20px 0;
  width: 350px;
  height: 500px;
  background-color: #ffffff;
  border: none;
  transform-style: preserve-3d;
  transform: perspective(2000px);
  transition: ease-in-out 1s;
  border-radius: 0;
  box-shadow: inset 300px 0 50px rgba(0, 0, 0, 0.25);
}

.card:hover {
  transform: perspective(2000px) rotate(-5deg);
  box-shadow: inset 20px 0 50px rgba(0, 0, 0, 0.25);
  z-index: 1000;
}

.card .img-box {
  position: relative;
  border-style: none;
  width: 350px;
  height: 500px;
  transform-origin: left;
  z-index: 1;
  transition: 1s;
}

.card:hover .img-box {
  transform: rotateY(-130deg);
}

.card .img-box img {
  position: inherit;
  display: inline-block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow-x: hidden;
}

.card .details {
  position: absolute;
  display: grid;
  grid-gap: 20px !important;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  top: 0;
  left: 0;
  height: 100%;
  padding: 50px 20px 20px;
}

.card .details p::first-letter{
  color: var(--primary);
  font-size: 1.5em;
}

.card .details::before {
  position: absolute;
  content: "";
  color: #ffffff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: url("../images/bg-tree.png") no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
}

.card .details h4::first-letter {
  color: var(--primary);
  font-size: 1.5em;
}

/* ---------------------------------------------------
# Portfolio Fotos seccion
----------------------------------------------------- */
.portfolio h1 {
  margin-bottom: 50px;
}

.portfolio #portfolio-filters {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}

.portfolio #portfolio-filters li {
  position: relative;
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 0.85em;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #111111;
  padding: 8px 20px;
  text-align: center;
}

.portfolio #portfolio-filters li::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  height: 2px;
  width: 50%;
  background: var(--primary);
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  transform-origin: center;
}

.portfolio #portfolio-filters li:hover::before,
.portfolio #portfolio-filters li.filter-active::before {
  opacity: 1;
  visibility: visible;
}

.portfolio .portfolio-item {
  position: relative;
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  z-index: 3;
  transition: all 0.3s;
  background: var(--primary);
  padding: 12px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 15px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #111111;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/* ---------------------------------------------------
# Formulario Seccion
---------------------------------------------------
*/
.form {
  margin-top: 20px;
  padding: 0 10px;
  margin-left: 15px;
}

.formulario .row h1::first-letter{
  color: var(--primary);
  font-size: 1.5em;
}

.grupo-form {
  margin-top: 20px;
}

.form label {
  font-size: 1.2em;
  color: #111111;
  font-family: "Roboto", sans-serif;
}

.form .grupo-form .respuesta {
  background: #ffffff;
}

.form .enviar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form input[type="submit"] {
  display: flex;
  background: var(--primary);
  border: 1px solid var(--primary);
  padding: 10px 25px;
  color: #ffffff;
  transition: 0.3s;
  margin-top: 20px;
  align-items: center;
}

.form input[type="submit"]:hover {
  background: #ffffff;
  color: var(--primary);
  transform: scale(1.1);
}

.selection {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #111111;
  background-color: transparent;
  background-clip: padding-box;
  border: 1px solid #11111138;
  border-radius: 5px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* ---------------------------------------------------
# Contacto Seccion
----------------------------------------------------- */
.contact h1 {
  margin-bottom: 50px;
}

.contact .info {
  width: 100%;
  background: #ffffff;
}

.contact .info ion-icon {
  font-size: 0.6em;
  padding: 8px;
  color: var(--primary);
  float: left;
  width: 45px;
  height: 45px;
  background: #f4e3ea;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s;
  margin-right: 20px;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111111;
}

.contact .info p {
  padding: 0 0 0 60px;
  font-size: 0.9em;
  font-weight: 300;
  margin-bottom: 50px;
  color: #111111;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .phone p a {
  color: #111111;
  text-decoration: none;
}

.contact form {
  width: 100%;
  background: #ffffff;
}

.contact form .form-group {
  padding-bottom: 8px;
}

.contact form input,
.contact form textarea {
  border-radius: 0;
  box-shadow: none !important;
  outline: none;
  font-size: 15px;
}

.contact form input:focus,
.contact form textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.contact form input {
  height: 45px;
}

.contact form textarea {
  padding: 10px 12px;
}

.contact form input[type="submit"] {
  background: var(--primary);
  border: 1px solid var(--primary);
  padding: 10px 25px;
  color: #ffffff;
  transition: 0.3s;
  margin-top: 20px;
}

.contact form input[type="submit"]:hover {
  background: #ffffff;
  color: var(--primary);
}

.cuentaBancaria p{
  font-size: 1.1em;
    text-align: justify;
    margin-left: 15px;
}

/* *************************************
# Responsive diseño
************************************** */
@media (max-width: 1250px) {
  .menu {
    display: flex;
  }

  .nav {
    display: none !important;
  }
}

@media (max-width: 768px) {
  header {
    padding: 10px 20px;
  }

  .card .img-box img {
    width: 300px;
    display: inline-block;
  }

  .row h1 {
    font-size: 3em;
    margin-bottom: -5px;
    margin-top: 10px;
    text-align: center;
  }

  .contact h1 {
    font-size: 2.2em;
  }

  .menu {
    display: flex;
  }

  .nav {
    display: none !important;
  }

  .search {
    display: none;
  }

  .banner {
    padding: 120px 30px;
  }

  .bg-slide .content {
    width: 80vw;
  }

  .bg-slide .content h1 {
    font-size: 4.5em;
    margin-top: -50px;
    /* word-spacing: 1000px; */
  }

  .bg-slide .content p {
    font-size: 0.8em;
  }

  .circle img {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
  }

  .circle.bg {
    width: 140vh;
    height: 140vh;
  }

  .circle.large {
    width: 70vh;
    height: 70vh;
  }

  .circle.small {
    width: 35vh;
    height: 35vh;
  }

  .bg-slide.active .circle.bg {
    transform: translate(0, 0) rotateZ(0);
    opacity: 1;
    visibility: visible;
  }

  .bg-slide.active .circle.large {
    transform: translate(0, 0) rotateZ(360deg);
    opacity: 1;
    visibility: visible;
  }

  .bg-slide.active .circle.small {
    transform: translate(0, 0) rotateZ(-720deg);
    opacity: 1;
    visibility: visible;
  }

  .lead {
    bottom: 75px;
    width: 150px;
    height: 150px;
  }

  .move-down ion-icon {
    font-size: 3em;
  }

  .slide-loader {
    bottom: 20px;
  }

  .share {
    left: 8px;
  }

  .share::before {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    top: -100%;
    height: 100px;
    width: 2px;
    background: #111111;
  }

  .share {
    text-align: center;
  }

  .row {
    margin-top: 0 !important;
  }

  .section-bg-img {
    position: fixed;
    left: -100px;
    top: 23%;
    opacity: 0.01;
    width: 800px;
    z-index: 1;
  }

  section.section-show {
    padding: 100px 35px;
  }

  section p {
    font-size: 1em;
  }

  .about .img-box img {
    max-width: 80vw;
  }

  .about .img-box .corner-img {
    width: 25vw;
    right: -20px;
  }

  .section-bg-img {
    bottom: -500px;
    right: 0px;
  }
}

/* ---------------------------------------------------
# Mobile Navegation
----------------------------------------------------- */
.nav-mobile {
  display: none;
  list-style: none;
}

.nav-mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 1200;
  gap: 20px;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-mobile.active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile li a {
  color: #111111;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.5s;
  font-size: 1.6em;
  font-weight: 300;
  padding: 10px;
}

.nav-mobile li a:hover {
  color: var(--primary);
}
