@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

:root {
  /* Colors
  ___________________*/
  --color-primary: #26a0d5;
  --color-primary-light: #0083b3;
  --color-white: #fff;
  --color-title: #115798;
  --color-text: #adb1b4;
  --bg-gradient: linear-gradient(180deg, #ffffff 0%, #d6f7ff 100%);
  /* Typography
  ___________________*/
  /* --font-family-primary: "Poppins", sans-serif;
  --font-family-secondary: "Rubik", sans-serif;
  --font-family-third: 'Pacifico', cursive; */
  /* font sizes */
  --fs-xs: 1.2rem;
  --fs-sm: 1.4rem;
  --fs-md: 1.6rem;
  --fs-lg: 1.8rem;
  --fs-xl: 2rem;
  --fs-xxl: clamp(2.4rem, 5vw, 2.8rem);
  --fs-biggest: clamp(3.2rem, 5vw, 6rem);
  /* font weight */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* z-index
  ___________________*/
  --zindex-fixed: 1000;
  --zindex-menu: 1010;

  /* Width & Height 
  ------------------*/
  --width-container: 100rem;
  --height-header: 10rem;

  /* Transition and box shadow*/
  --transition: 0.4s ease-in-out;
  --shadow-primary: 0px 10px 30px 5px rgba(0, 0, 0, 0.05);
  --shadow-header: 0px 2px 5px rgba(0, 0, 0, 0.05);

  /* Border Radius */
  --border-radius-sm: 1rem;
  --border-radius-lg: 2rem;

  /* box-shadow */
  --shadow-primary: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;

}


*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-family-primary);
  color: var(--color-title);
  font-weight: var(--fw-bold);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  font-family: Arial, Helvetica, sans-serif;
}

body,
h1,
h2,
h3,
h4,
ul,
p {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--color-text);
}

input,
button {
  font: inherit;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
}

main {
  overflow: hidden;
}

body {
  font-family: var(--font-family-secondary);
  font-size: var(--fs-md);
  font-weight: var(--fw-regular);
  color: var(--color-text);
  margin-top: var(--height-header);
}

.logo-prin {
  width: 90px;
  height: auto;
}

.logo-prin2 {
  width: 130px;
  height: 130px;
  margin-top: -40px;
}

.section {
  padding: 12rem 0 8rem;
}

.section__header {
  text-align: center;
  padding-bottom: 3rem;
}

.section__title {
  font-size: var(--fs-xxl);
  color: var(--color-title);
  margin-bottom: 2rem;
}

.section__subtitle {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  font-family: var(--font-family-primary);
}

.container {
  width: 90%;
  max-width: var(--width-container);
  margin: auto;
}

.d-grid {
  display: grid;
  gap: 3rem;
}

.btn {
  display: inline-block;
  padding: 1.3rem 2rem;
  border-radius: 5px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  transition: var(--transition);
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-primary);
}

.btn--primary:hover {
  background-color: var(--color-primary-light);
}

.header {
  background-color: var(--color-white);
  width: 100%;
  height: var(--height-header);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  transition: var(--transition);
  z-index: var(--zindex-menu);
}

.header--scroll {
  --height-header: 7rem;
  box-shadow: var(--shadow-header);
}

.nav {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 20px;
}

.nav__brand {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-title);
}

.nav__brand span {
  color: var(--color-primary);
  font-size: var(--fs-xl);
}

.nav__open,
.nav__close {
  font-size: 2.5rem;
  color: var(--color-title);
  cursor: pointer;
  transition: var(--transition);
}

.nav__open:hover,
.nav__close:hover {
  color: var(--color-primary);
}

.nav__list {
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.nav__link {
  position: relative;
  font-family: var(--font-family-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-title);
  transition: var(--transition);
}

.nav__link::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0.3rem;
  background-color: var(--color-primary);
  bottom: -1rem;
  transition: var(--transition);
}

.nav__link--active::before {
  width: 50%;
}

.nav__link--active,
.nav__link:hover {
  color: var(--color-primary);
}

@media screen and (max-width: 968px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: var(--color-white);
    box-shadow: var(--shadow-header);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 28rem;
    height: 100vh;
    transition: var(--transition);
  }

  .nav__menu--open {
    right: 0;
  }

  .nav__close {
    position: absolute;
    top: 3rem;
    right: 3rem;
  }
}

.home {
  position: relative;
  margin-top: -30px;
  width: 100%;
  min-height: 110vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home video {
  position: absolute;
  top: 0;
  left: 0;
  height: 90%;
  width: 100%;
  object-fit: cover;
}

.playa {
  position: absolute;
  top: 0;
  left: 0;
  height: 90%;
  width: 100%;
  object-fit: cover;
}

.pajaro {
  position: absolute;
  top: -105%;
  left: 22px;
  transform: rotate(5deg);
}

.mask {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  user-select: none;
  mix-blend-mode: screen;
}

.title--home {
  position: relative;
  z-index: 3;
  font-family: var(--font-family-primary);
  color: var(--color-white);
  font-size: 16vh;
  text-shadow: 0 20px 30px rgba(0, 0, 0);
  text-align: center;
}

.social-1 {
  position: absolute;
  right: 50px;
  bottom: 90px;
  z-index: 1000;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-1 li {
  transition: var(--transition);
}

.social-1 li a {
  color: var(--color-title);
  font-size: 3rem;
}

.social-1 li:hover {
  transform: scale(1.5);
}

.about__wrapper {
  justify-items: center;
}

.about__content {
  text-align: center;
}

.about__description {
  margin-bottom: 3rem;
  text-align: justify;
}

.about__img {
  border-radius: var(--border-radius-lg);
  height: 85%;
  width: 100%;
  box-shadow: var(--shadow-primary);
  object-fit: cover;
}

.destination__item {
  position: relative;
  width: 100%;
  max-width: 30rem;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin: auto;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-primary);
}

.line {
  position: absolute;
  opacity: 0.1;
  left: -500px;
  top: 100%;
}

.destination__img {
  width: 100%;
  height: 320px;
  transition: var(--transition);
  box-shadow: var(--shadow-primary);
}

.destination__item:hover .destination__img {
  transform: scale(1.2);
}

.destination__info {
  position: absolute;
  bottom: 1rem;
  padding: 2rem;
}


.destination__country,
.destination__name {
  color: var(--color-white);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.destination__name {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
}

.swiper__navigation {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  column-gap: 1rem;
}

.swiper__button {
  background-color: var(--color-primary);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.swiper__button:hover {
  background-color: var(--color-primary-light);
}

.title-tours {
  position: absolute;
  z-index: 2000;
  font-size: 5rem;
  top: 40%;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  mix-blend-mode: screen;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  opacity: .7;
  box-shadow: var(--shadow-primary);
}


.video__content {
  display: flex;
  position: relative;
  max-width: 75rem;
  justify-self: center;
  align-items: center;
  justify-content: center;
}

.video__tour {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-primary);
}

.video__info {
  position: absolute;
  background-color: var(--color-title);
  border-radius: var(--border-radius-sm);
  right: 2rem;
  bottom: -3rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.video__info-title {
  font-size: var(--fs-xs);
}

.video__info-description {
  font-size: var(--fs-sm);
  color: var(--color-white);
  font-weight: var(--fw-semibold);
}

.video__btn {
  background-color: var(--color-primary);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--fs-lg);
}


.discover__wrapper {
  justify-content: center;
}

.discover__item {
  width: 100%;
  max-width: 25rem;
}

.discover__img-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
}

.discover__img {
  transition: var(--transition);
}

.discover__item:hover .discover__img {
  transform: scale(1.2);
}

.discover__price {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.5rem 1rem;
  background-color: var(--color-primary);
  border-radius: var(--border-radius-lg);
  color: var(--color-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}

.comprar {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.5rem 1rem;
  background-color: var(--color-primary);
  border-radius: var(--border-radius-sm);
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  cursor: pointer;
}

.container-btn {
  position: absolute;
  top: 0;
  right: 0.5rem;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 10px;
}

.experiencia__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
}

.content-img1 {
  width: 240px;
  height: 240px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-primary);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url(../img/buggy1.jpeg);
}

.content-img2 {
  width: 240px;
  height: 240px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-primary);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url(../img/buggy2.jpeg);
}

.content-img3 {
  width: 240px;
  height: 240px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-primary);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url(../img/buggy3.jpeg);
}

.precio,
.icon__heart {
  color: var(--color-white);
  font-weight: var(--fw-bold);
}

.discover__name {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  margin-bottom: 0.5rem;
}

.discover__tour,
.discover__duration {
  font-size: var(--fs-sm);
}

.discover__tour {
  margin-bottom: 0.5rem;
}

.discover__btn {
  display: inline-block;
  margin-top: 1rem;
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  position: relative;
}

.discover__btn::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0.3rem;
  background-color: var(--color-primary);
  bottom: -1rem;
  transition: var(--transition);
}

.discover__btn:hover::before {
  width: 100%;
}


.offer__content {
  text-align: center;
}

.offer__subtitle {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  line-height: 0.3;
}

.offer__duration {
  margin-bottom: 2rem;
}

.offer__title {
  font-size: var(--fs-biggest);
  line-height: 0.9;
}

.offer__sub--title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  font-family: var(--font-family-third);
  margin-bottom: 2rem;
}

.offer__description {
  margin-bottom: 3rem;
}

.offer__img {
  justify-self: center;
  border-radius: var(--border-radius-lg);
}

.offer__price {
  margin-bottom: 3rem;
}

.offer__price-before {
  font-size: var(--fs-sm);
  text-decoration: line-through;
}

.offer__price-now {
  color: var(--color-primary);
  font-weight: var(--fw-medium);
}

.newsletter__wrapper {
  background-color: var(--color-white);
  box-shadow: var(--shadow-primary);
  border-radius: var(--border-radius-sm);
  padding-bottom: 70px;
  height: 350px;
  justify-content: center;
  text-align: center;
  max-width: 50rem;
  margin-top: -60px;
}


footer {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.footer__wrapper {
  padding: 8rem 0 3rem;
}

.footer__brand {
  color: var(--color-title);
  font-size: var(--fs-xl);
  margin-bottom: 1rem;
}

.footer__brand span {
  color: var(--color-primary);
}

.footer__description {
  margin-bottom: 2rem;
  text-align: justify;
  font-size: fs;
}

.social__list {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}

.social__link {
  font-size: var(--fs-lg);
  color: var(--color-title);
  transition: var(--transition);
}

.social__link:hover {
  color: var(--color-primary);
}

.footer__title {
  color: var(--color-title);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: 1rem;
}

.footer__item {
  margin-bottom: 3.9px;
}

.footer__link {
  transition: var(--transition);
  font-family: var(--font-family-primary);
  color: var(--color-text);
  background: none;
  font-size: var(--fs-sm);

}

.footer__link:hover {
  color: var(--color-primary);
}

.footer__copyright {
  text-align: center;
  font-size: var(--fs-sm);
  padding: 3rem 0;
}


.scrolltop {
  position: fixed;
  bottom: -100%;
  right: 3rem;
  background-color: var(--color-primary);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  font-size: 3rem;
  z-index: var(--zindex-fixed);
  opacity: 0;
  transition: var(--transition);
}

.scrolltop:hover {
  background-color: var(--color-primary-light);
}

.scrolltop--show {
  bottom: 3rem;
  opacity: 1;
}


::-webkit-scrollbar {
  width: 1rem;
  background-color: var(--color-text);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-primary-light);
}


@media screen and (max-width: 420px) {
  .content-img1 {
    width: 330px;
    height: 300px;
  }

  .content-img2 {
    width: 330px;
    height: 300px;
  }

  .content-img3 {
    width: 330px;
    height: 300px;
  }

  .content--map iframe {
    width: 200px;


  }

  .title-tours {
    position: absolute;
    z-index: 2000;
    font-size: 1.2rem;
    top: 40%;
    color: var(--color-primary);
    font-weight: var(--fw-bold);
    mix-blend-mode: screen;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    opacity: .5;
    box-shadow: var(--shadow-primary);
  }

  .swiper__prev {
    animation: movimiento 2s infinite ease-out;
  }

  .swiper__next {
    animation: movimiento 2s infinite ease-out;
  }

  .swiper__navigation {
    padding: 10px;
    gap: 30px;
  }


  @keyframes movimiento {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.2);
    }

    100% {
      transform: scale(1);
    }

  }


}


@media screen and (min-width: 768px) {
  .swiper__prev {
    animation: movimiento 2s infinite ease-out;
  }

  .swiper__next {
    animation: movimiento 2s infinite ease-out;
  }

  @keyframes movimiento {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.2);
    }

    100% {
      transform: scale(1);
    }

  }

  .swiper__navigation {
    padding: 10px;
    gap: 30px;
  }



  .home__wrapper {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }


  .home__content {
    text-align: initial;
  }

  .home__img {
    justify-self: end;
  }

  .about__wrapper {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .about__content {
    text-align: initial;
  }

  .about__img {
    order: -1;
  }



  .discover__wrapper {
    grid-template-columns: repeat(2, max-content);
  }

  .offer__wrapper {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .offer__content {
    text-align: initial;
  }

  .offer__img {
    justify-self: end;
  }

  .footer__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 968px) {

  .nav__open,
  .nav__close {
    display: none;
  }

  .nav__list {
    flex-direction: initial;

  }

  .destination__wrapper {
    max-width: 55%;
    padding: 10px;
  }

  .discover__wrapper {
    grid-template-columns: repeat(3, max-content);
  }

  .discover__item:nth-child(2) {
    transform: translateY(2rem);
  }

  .footer__wrapper {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    justify-items: center;
  }
}


.box {
  position: relative;
  width: 200px;
  height: 200px;
  background: linear-gradient(#6ab9ff, #0090d2);
  border-radius: 50%;
  border: solid 10px #fff;
  overflow: hidden;
}

.plane {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: animate-plane 1s linear infinite;
}

.plane img {
  z-index: 3;
  position: relative;
  width: 150px;
  height: auto;
}

@keyframes animate-plane {
  0% {
    transform: translate(3px, 3px);
  }

  50% {
    transform: translate(-3px, -3px);
  }

  100% {
    transform: translate(3px, 3px);
  }
}

.cloud {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cloud img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .8;
  animation: animate-cloud 1s linear infinite;
  z-index: 2;
  width: 150px;
  height: auto;
}

@keyframes animate-cloud {
  0% {
    transform: translateX(400px);
  }

  40%,
  100% {
    transform: translateX(-400px);
  }

}

.cloud img:nth-child(1) {
  top: 50px;
  animation-delay: -2s;
  animation: animate-cloud 1.25s linear infinite;
}

.cloud img:nth-child(2) {
  top: 180px;
  animation-delay: -1s;
  animation: animate-cloud 1s linear infinite;
}

.cloud img:nth-child(3) {
  top: 100px;
  animation-delay: -2.5s;
  animation: animate-cloud .75s linear infinite;
}

.container-servicio {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.titulo--servicios {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-title);
}

.btn--esperiencia {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
  font-family: var(--font-family-primary);
  font-size: 1.5rem;
}

.conten-btn-mas {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.btn--esperiencia2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  padding: 1.0rem 1.0rem;
  margin-top: 0.5rem;
  font-family: var(--font-family-primary);
  color: var(--color-white);
  background-color: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  animation: movimiento 2s infinite ease-out;
}

@keyframes movimiento {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }

}


.container--villa {
  display: flex;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  /* flex-wrap: wrap; */
  /* background-color: red; */
}

.content-wrap_1 {
  display: flex;
  width: 50%;
  height: auto;
}

.content-wrap_1 img {
  width: 100%;
  height: 460px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-primary);
}


.content--wrap_2 {
  display: flex;
  width: 50%;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.sub-content_wrap {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.sub-content_wrap img {
  width: 250px;
  height: 220px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-primary);
  object-fit: cover;
}

.content__info--villa {
  display: flex;
  width: 100%;
  height: auto;
  /* align-items: center; */
  justify-content: space-between;
  gap: 2rem;
}

.info {
  display: flex;
  width: 100%;
  height: auto;
  gap: 1rem;
  flex-direction: column;
  /* background-color: red; */
}

.content__aricle {
  display: flex;
  width: auto;
  height: auto;
  gap: 1rem;
}

.content--btn--redirit {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  gap: 10px;
}

.airbnb {
  display: flex;
  width: 200px;
  height: 50px;
  text-decoration: none;
  background: #f9385c;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-semibold);
  font-size: 14px;
  border-radius: var(--border-radius-sm);
  color: var(--color-white);
  box-shadow: var(--shadow-primary);
  transition: var(--transition);
  gap: 10px;
}

.airbnb:hover {
  background: #f41d45;
}

.airbnb img {
  display: flex;
  width: 18px;
  height: 18px;
}

.whatsapp {
  display: flex;
  width: 200px;
  height: 50px;
  text-decoration: none;
  background: var(--color-primary);
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-semibold);
  font-size: 14px;
  border-radius: var(--border-radius-sm);
  color: var(--color-white);
  box-shadow: var(--shadow-primary);
  gap: 10px;
}

.whatsapp:hover {
  background: var(--color-primary-light);
}

.whatsapp i {
  font-size: 20px;
}

.content--map {
  display: flex;
  width: auto;
  justify-content: flex-end;
}

.content--map iframe {
  width: 600px;
  height: auto;
  box-shadow: var(--shadow-primary);
  border-radius: var(--border-radius-sm);
  border: none;
}

.title--inifo {
  display: flex;
  font-family: var(--font-family-primary);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-title);
}

.btn-gallery-villa {
  display: flex;
  position: absolute;
  margin-top: 20px;
  margin-left: 10px;
  border: solid 1px #fff;
  border-radius: var(--border-radius-sm);
  width: 180px;
  height: 40px;
  background: var(--color-primary);
  color: var(--color-white);
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: var(--shadow-primary);
  cursor: pointer;
}

.villa--section {
  margin-top: 300px;
  margin-bottom: 100px;
}

@media screen and (max-width: 955px) {
  .sub-content_wrap {
    flex-wrap: wrap;
  }

  .container--villa {
    flex-wrap: wrap;
    justify-content: center;
  }

  .title--home {
    font-size: 10vh;
  }

  .sub-content_wrap img {
    flex-wrap: wrap;
    width: 100%;
  }

  .content__info--villa {
    flex-wrap: wrap;
    justify-content: center;
  }

  .content--map iframe {
    width: 400px;
  }

  .info {
    justify-content: center;
    align-items: center;
  }

}


.promo {
  display: none;
  width: 300px;
  height: 347px;
  background: rgb(255, 255, 255);
  z-index: 6;
  position: absolute;
  right: 40px;
  top: 0;
  background-image: url(../img/promo.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-primary);
  margin-top: 50px;
  border-radius: 10px;
  margin-right: 20px;
  z-index: 10000;
  margin-top: -480px;
  transition: ease-in-out 1s;
  animation: promo 2s ease infinite;
  position: fixed;
}

.promo.activo2 {
  display: block;
}


@keyframes promo {
  0% {
    transform: translateY(10px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(10px);
  }
}

.close_promo {
  position: absolute;
  background-color: red;
  right: -2%;
  bottom: -2%;
  border-radius: 50%;
  font-size: 30px;
  color: var(--color-white);
  box-shadow: var(--shadow-primary);
  cursor: pointer;
}


.byggy2 {
  width: 100%;
  height: 450px;
  position: absolute;
  bottom: -50%;
  left: -20%;
  /* display: block; */
}

.content--btn-promo {
  display: flex;
  width: 100%;
  flex-direction: row;
  gap: 10px;
  position: absolute;
  bottom: -50px;
  align-items: center;
  justify-content: center;
}

.btn_promo {
  /* position: absolute; */
  display: flex;
  width: 140px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  height: 40px;
  background: #faa619;
  color: var(--color-white);
  /* margin-top: 10px;
  margin-left: 15px; */
  bottom: 0px;
  border-radius: 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  gap: 5px;
  border: solid 1px #ffffff;
}

.btn_promo2 {
  display: flex;
  width: 140px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  height: 40px;
  background: var(--color-text);
  color: var(--color-white);
  /* margin-top: 10px;
  margin-left: 15px; */
  border-radius: 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  gap: 5px;
  border: solid 1px #ffffff;
}

@media screen and (max-width: 420px) {
  .content--map iframe {
    width: 350px;
    height: 300px;
  }

  .home {
    min-height: 100vh;
  }

  .info {
    justify-content: center;
    align-items: flex-start;
  }

  .content-wrap_1 {
    width: 100%;
  }

  .content--wrap_2 {
    width: 100%;
  }

  .title--home {
    font-size: 6vh;
  }

  .social-1 li a {
    font-size: 25px;
  }

  .social-1 {
    right: 15px;
    bottom: 120px;
  }

  .promo {
    left: 50px;
    top: 40px;
  }

  .pajaro {
    left: -18px;
    top: -97px;
  }

  .content--btn--redirit {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .airbnb {
    width: 100%;
  }

  .whatsapp {
    width: 100%;
  }

}

.content-cookies {
  display: flex;
  width: 100%;
  height: auto;
  flex-direction: column;
}

.content-btn-cookies {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10PX;
  padding: 15PX;
  transition: var(--transition);
}

.aviso-cookies {
  display: none;
  background-color: var(--color-white);
  width: calc(100% - 40px);
  max-width: 330px;
  line-height: 150%;
  border-radius: var(--border-radius-lg);
  position: fixed;
  box-shadow: var(--shadow-primary);
  bottom: 50px;
  left: 30px;
  z-index: 12000;
  padding-top: 90px;
  text-align: center;
  transition: var(--transition);
}

.aviso-cookies.activo {
  display: block;
  transition: var(--transition);
}

.img-cookies {
  max-width: 130px;
  position: absolute;
  top: -50px;
  left: calc(50% - 65px);
}

.content-cookies-img {
  display: flex;
  width: 100%;
  flex-direction: row;
}

.titulo {
  margin-bottom: 10px;
  margin-top: 10px;
}

.parrafo {
  margin-bottom: 5px;
  text-align: justify;
  padding: 20px;
}

.boton {
  width: 100%;
  background: var(--color-text);
  border: none;
  color: var(--color-white);
  font-family: var(--font-family-primary);
  text-align: center;
  padding: 15px 20px;
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: .3s ease all;
  border-radius: var(--border-radius-sm);
  margin-bottom: 15px;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-primary);
}

.enlace {
  width: 100%;
  background: var(--color-text);
  border: none;
  color: var(--color-white);
  font-family: var(--font-family-primary);
  text-align: center;
  padding: 15px 20px;
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: .3s ease all;
  border-radius: var(--border-radius-sm);
  margin-bottom: 15px;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-primary);
}

.boton:hover {
  background: var(--color-primary);
}

.enlace:hover {
  background: var(--color-primary);
}

.fondo-aviso-cookies {
  display: none;
  background: rgba(0, 0, 0, .50);
  position: fixed;
  z-index: 11999;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.fondo-aviso-cookies.activo {
  display: block;
}

.baground {
  background-image: url("../img/Banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}