@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

ul {
  padding-left: 0;
}

.btn-div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.btn-div__btn {
  padding: 12px 21px;
  border-radius: 16px;
  font-size: 18px;
  line-height: 18px;
  font-weight: 800;
  text-decoration: none;
}
.btn-div__btn--primary {
  background-color: #E27D60;
  border: none;
  color: white;
}
.btn-div__btn--primary:hover {
  background-color: #20373B;
  color: white;
}
.btn-div__btn--phantom {
  width: max-content;
  font-family: "open sans";
  font-size: 18px;
  font-weight: 500;
  border: solid 1px white;
  color: white;
  background-color: rgba(32, 55, 59, 0.5);
  align-self: center;
}
.btn-div__btn--phantom:hover {
  background-color: #20373B;
  border: none;
  color: white;
}

.btn--accent {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: inline;
  color: white;
  background-color: #E27D60;
  border-radius: 30em;
  font-size: 18px;
  font-family: "open sans";
  font-weight: 500;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  align-self: center;
  padding: 9px 34px;
  transition: 0.3s;
  margin-bottom: 16px;
}
.btn--accent:hover {
  background-color: #BF5841;
  color: white;
}

.tarjeta {
  margin: 16px;
  width: calc(100vh - margin);
  height: inherit;
  border-radius: 9px;
  background: white;
  text-align: center;
  padding: 16px;
}
.tarjeta img {
  width: 100%;
  border-radius: 16px 16px 0 0;
}
.tarjeta h2 {
  font-family: "amatic sc";
  font-size: 32px;
  font-weight: 700;
  margin-top: 16px;
}

.tarjeta-fullbg {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  width: calc(100% - 32px);
  max-width: 400px;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  text-align: left;
  margin-bottom: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.tarjeta-fullbg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

body {
  background: linear-gradient(135deg, #FFFCF7, #f8f1e9, #FFFCF7);
}

.navbar {
  display: flex;
  flex-direction: row;
  margin-top: 16px;
  width: 90%;
  left: 50%;
  transform: translate(-50%);
  font-family: "open sans";
  font-size: 16px;
  font-weight: 500;
  padding: 5px 16px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 7px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
  /* blur */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(76, 70, 57, 0.2);
  /* sticky */
  position: fixed;
  z-index: 1000;
  /* Logo */
}
.navbar .navbar-brand img {
  width: 111px;
}
.navbar {
  /* Toggle */
}
.navbar .navbar-toggler {
  border: none;
}
.navbar .navbar-toggler:focus, .navbar .navbar-toggler:focus-visible, .navbar .navbar-toggler:active {
  box-shadow: none;
}
.navbar {
  /* Reemplazar íconos */
}
.navbar .navbar-toggler-icon {
  background-image: url("../img/menu-scale.svg");
}
.navbar .open .navbar-toggler-icon {
  background-image: url("../img/menu-close.svg");
}

.lang-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1055;
}
.lang-float .lang-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #6B8F8B;
  border: none;
}
.lang-float .lang-btn:hover {
  background-color: #197359;
}
.lang-float .lang-btn:active {
  background-color: #BF820F;
}
.lang-float .lang-btn i {
  font-size: 1.3rem;
}
.lang-float .lang-btn .dropdown-menu {
  font-family: "nunito sans";
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* video BG */
}
.hero .hero__videobg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  margin: 0;
}
.hero .hero__videobg video {
  position: absolute;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
.hero .hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgb(0, 0, 0));
  z-index: 2;
}
.hero {
  /* Contenido sobre el video */
}
.hero .hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3;
  text-align: center;
  padding: 16px;
}
.hero .hero__content h1 {
  font-family: "amatic sc";
  font-size: 84px;
  font-weight: 800;
  color: #FFFCF7;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
}
.hero .hero__content h3 {
  font-family: "open sans";
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: white;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85);
}
.hero .hero__content p {
  font-family: "open sans";
  font-size: 18px;
  line-height: 26px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85);
  font-weight: 600;
}

.benefits-col {
  padding: 55px 3px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.benefits-col h2 {
  font-family: "amatic sc";
  color: #E27D60;
  font-size: 34px;
  line-height: 44px;
  font-weight: 900;
  text-align: center;
  padding: 0 7px;
}
.benefits-col h3 {
  font-family: "amatic sc";
  color: white;
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  text-align: center;
  z-index: 2;
  text-shadow: 2px 2px 16px rgba(0, 0, 0, 0.7);
}
.benefits-col p {
  font-family: "open sans";
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #6B8F8B;
  padding: 0 6px;
  font-weight: 500;
}
.benefits-col .eco-friendly {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.benefits-col .eco-friendly img {
  width: 70px;
}
.benefits-col .eco-friendly .eco-icon {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.benefits-col .tarjeta p {
  font-family: "open sans";
  font-size: 16px;
  color: #20373B;
  font-weight: 500;
}
.benefits-col .tarjetasfulbg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.benefits-col .tarjeta-fullbg p {
  font-family: "open sans";
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: white;
  z-index: 2;
}
.benefits-col .tarjeta-fullbg--captain {
  background-image: url(../../img/ourboat.png);
  background-size: cover;
  background-position: center center;
}
.benefits-col .tarjeta-fullbg--yatch {
  background-image: url(../../img/san-blas-on-sailboats-food-sandia.jpeg);
  background-size: cover;
  background-position: top;
}
.benefits-col .tarjeta-fullbg--experiences {
  background-image: url(../../img/sanblas-community.jpeg);
  background-size: cover;
  background-position: top;
}

.interest {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 55px;
}
.interest h2 {
  font-family: "amatic sc";
  color: #6B8F8B;
  font-size: 55px;
  line-height: 55px;
  font-weight: 700;
  text-align: center;
  z-index: 1;
}
.interest .div-tarjeta {
  overflow: hidden;
  position: relative;
  margin: 16px;
  width: calc(100vh - margin);
  height: 450px;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.interest .div-tarjeta video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* hace que el video llene el div y se recorte */
  display: block;
  border-radius: 12px;
}
.interest .div-tarjeta h2 {
  position: absolute;
  /* se superpone sobre el video */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* lo centra */
  font-family: "amatic sc";
  color: white;
  font-size: 84px;
  line-height: 94px;
  font-weight: 700;
  text-align: center;
  z-index: 1;
  text-shadow: 2px 2px 16px rgba(0, 0, 0, 0.7);
}
.interest .flex-tags {
  padding: 16px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.interest .flex-tags h3 {
  font-family: "amatic sc";
  font-size: 34px;
  color: #6B8F8B;
  font-weight: 900;
}
.interest .flex-tags p {
  margin-bottom: 0px;
  text-align: center;
  font-family: "open sans";
  line-height: 26px;
  color: #20373B;
}

.sustainable {
  background-color: #20373B;
  color: white;
}

.modal-content {
  font-family: "open sans";
  background-color: #FFFCF7;
}
.modal-content #yachtModalLabel {
  font-family: "amatic sc";
  font-size: 55px;
  line-height: 55px;
  font-weight: 900;
  background: linear-gradient(135deg, #20373B, #197359);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.modal-content h3 {
  font-family: "open sans";
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  background: linear-gradient(135deg, #197359, #6B8F8B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.modal-content h4 {
  padding-top: 16px;
  font-family: "open sans";
  font-size: 16px;
  font-weight: bold;
  color: #20373B;
}
.modal-content .material-icons {
  font-size: 34px;
  line-height: 32px;
  color: #20373B;
  vertical-align: middle;
}
.modal-content p {
  display: inline;
}
.modal-content .list-unstyled {
  gap: 21px;
}
.modal-content .bi {
  font-size: 26px;
  color: #20373B;
  vertical-align: middle;
}
.modal-content .lucide {
  color: #20373B;
  /* naranja */
  width: 26px;
  vertical-align: middle;
}
.modal-content .btn-modal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 12px 21px;
  border-radius: 16px;
  font-size: 18px;
  line-height: 18px;
  text-decoration: none;
  background-color: #BF820F;
  border: none;
  color: white;
  transition: 0.3s;
}
.modal-content .btn-modal:hover {
  background-color: #20373B;
  color: white;
}
.modal-content .card-price {
  padding-top: 34px;
  padding-bottom: 34px;
  background: transparent;
  color: #6B8F8B;
}
.modal-content .card-price .offer {
  font-family: "amatic sc";
  font-size: 34px;
  line-height: 34px;
  font-weight: 700;
}
.modal-content .card h3 {
  align-self: center;
  color: #E27D60;
}
.modal-content h5 {
  margin: 0;
}
.modal-content h3 {
  margin: 0;
}
.modal-content h4 {
  margin: 0;
}

.experiences h2 {
  font-family: "amatic sc";
  color: #E27D60;
  font-size: 42px;
  font-weight: 500;
  line-height: 34px;
  font-weight: 700;
  text-align: center;
}
.experiences .carousel-overlay p {
  text-align: center;
}
.experiences div.carousel-indicators {
  display: none;
}

#sbSlider .carousel-inner {
  height: 450px;
  margin-bottom: 21px;
}
#sbSlider .carousel-inner img {
  height: 450px;
}

.gallery-img h2 {
  font-family: "amatic sc";
  background: linear-gradient(135deg, #E27D60, #BF820F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 34px;
  text-align: center;
  font-weight: 700;
  padding-left: 21px;
  padding-right: 21px;
}
.gallery-img .row img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-img .row img:hover {
  transform: scale(1.05);
}

/* Evita scroll horizontal y limita el tamaño del lightbox */
/* testimonial */
.testimonial-card {
  width: 100%;
  min-height: 25vh;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: center;
}

.container.my-5 h2 {
  font-family: "raleway";
  color: #20373B;
  font-size: 34px;
  line-height: 55px;
  font-weight: 700;
  text-align: left;
}

.container.my-5.gallery {
  padding: 0;
  margin: 0;
}

.tira-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.tira {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 7s linear infinite;
}

.tira img {
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

/* Animación infinita */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.testis h2 {
  text-align: center;
  font-family: "amatic sc";
  font-size: 34px;
  font-weight: 900;
  color: #E27D60;
}
.testis h3 {
  font-family: "open sans";
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  color: #6B8F8B;
  font-weight: 700;
  letter-spacing: 1px;
}

.accordion.kunay {
  background: #0f1e2e;
  border: 1px solid rgba(224, 217, 192, 0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  color: #e0d9c0;
}
.accordion.kunay .accordion-item {
  background: transparent;
  border: none;
}
.accordion.kunay .accordion-item:not(:last-child) {
  border-bottom: 1px solid rgba(224, 217, 192, 0.12);
}
.accordion.kunay .accordion-button {
  padding: 1.25rem 1.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #e0d9c0;
  background: transparent;
  border: none;
  transition: all 0.28s ease;
}
.accordion.kunay .accordion-button:not(.collapsed) {
  color: #D9BB96;
  background: rgba(77, 208, 200, 0.12);
  box-shadow: inset 0 -1px 0 rgba(224, 217, 192, 0.15);
}
.accordion.kunay .accordion-button:hover {
  background: transparent;
  border: none;
}
.accordion.kunay .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e0d9c0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  opacity: 0.65;
  transition: all 0.28s ease;
}
.accordion.kunay .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
  opacity: 0.9;
}
.accordion.kunay .accordion-collapse {
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion.kunay .accordion-body {
  padding: 1.5rem 1.75rem 1.75rem;
  color: rgba(224, 217, 192, 0.92);
  font-size: 1.03rem;
  line-height: 1.68;
}
.accordion.kunay .accordion-body p {
  margin-bottom: 1.25rem;
}
.accordion.kunay .accordion-body p:last-child {
  margin-bottom: 0.5rem;
}
.accordion.kunay .accordion-body p strong {
  color: #D9BB96;
  font-weight: 650;
  display: block;
  margin: 1.6rem 0 0.6rem;
  font-size: 1.12rem;
}

.accordion.kunay .accordion-button:hover,
.accordion.kunay .accordion-button:not(.collapsed) {
  border-color: rgba(77, 208, 200, 0.3);
}

.footer {
  padding: 16px;
  width: 100vw;
  height: inherit;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(135deg, #6B8F8B, #197359);
  text-align: center;
}
.footer img {
  width: 150px !important;
  margin: 0 auto;
}
.footer p {
  padding-bottom: 21px;
  color: white;
  width: 70%;
  margin: 0 auto;
  text-align: center;
}
.footer a img {
  width: 25px !important;
}
.footer .faqs {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
}
.footer .faqs h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  margin: 0 0 0.5rem;
  text-align: center;
}
.footer .faqs h2 {
  font-family: "Amatic SC", cursive;
  font-size: 3.2rem;
  font-weight: 900;
  color: white;
  margin: 0 0 3rem;
  text-align: center;
  position: relative;
}
.footer .faqs h2::after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  border-radius: 2px;
}
.footer .faqs .accordion {
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
}
.footer .faqs .accordion-item {
  background: white;
  border: none;
  margin-bottom: 1rem;
  border-radius: 16px !important;
  box-shadow: 0 5px 15px -5px rgba(15, 30, 46, 0.1);
  transition: all 0.3s ease;
}
.footer .faqs .accordion-item:hover {
  box-shadow: 0 10px 25px -8px rgba(15, 30, 46, 0.2);
  transform: translateY(-2px);
}
.footer .faqs .accordion-header {
  margin: 0;
}
.footer .faqs .accordion-header .accordion-button {
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #0f1e2e;
  background: white;
  padding: 1.2rem 1.8rem;
  border: none;
  border-radius: 16px !important;
  box-shadow: none;
  transition: all 0.3s ease;
}
.footer .faqs .accordion-header .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(25, 115, 89, 0.05), rgba(107, 143, 139, 0.05));
  color: #BF5841;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.footer .faqs .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c44536'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.footer .faqs .accordion-header .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.footer .faqs .accordion-header .accordion-button:hover {
  background: rgba(25, 115, 89, 0.03);
}
.footer .faqs .accordion-header .accordion-button::after {
  background-size: 1.2rem;
  transition: transform 0.3s ease;
}
.footer .faqs .accordion-collapse {
  background: #e0d9c0;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.footer .faqs .accordion-body {
  padding: 1.5rem 1.8rem;
}
.footer .faqs .accordion-body p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #0f1e2e;
  margin: 0 0 1rem;
  text-align: left;
}
.footer .faqs .accordion-body p:last-child {
  margin-bottom: 0;
}
.footer .faqs .accordion-body p strong {
  color: #BF5841;
  font-weight: 600;
}
.footer .faqs .accordion-body ul,
.footer .faqs .accordion-body ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.footer .faqs .accordion-body ul li,
.footer .faqs .accordion-body ol li {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #0f1e2e;
  margin-bottom: 0.5rem;
}
.footer .faqs .accordion-body ul li::marker,
.footer .faqs .accordion-body ol li::marker {
  color: #197359;
}
@media (max-width: 768px) {
  .footer .faqs {
    margin: 3rem auto;
    padding: 0 1.5rem;
  }
  .footer .faqs h2 {
    font-size: 2.5rem;
  }
  .footer .faqs .accordion-header .accordion-button {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }
  .footer .faqs .accordion-body {
    padding: 1.2rem 1.5rem;
  }
  .footer .faqs .accordion-body p,
  .footer .faqs .accordion-body ul li {
    font-size: 1rem;
  }
}
.footer .faqs--with-bg {
  background: linear-gradient(135deg, rgba(25, 115, 89, 0.03), rgba(77, 208, 200, 0.03));
  border-radius: 40px;
  padding: 3rem 2rem;
}
.footer .faqs--with-bg .accordion-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
}
@keyframes slideInFaq {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer .faqs .accordion-item {
  animation: slideInFaq 0.5s ease forwards;
  opacity: 0;
}
.footer .faqs .accordion-item:nth-child(1) {
  animation-delay: 0.05s;
}
.footer .faqs .accordion-item:nth-child(2) {
  animation-delay: 0.1s;
}
.footer .faqs .accordion-item:nth-child(3) {
  animation-delay: 0.15s;
}
.footer .faqs .accordion-item:nth-child(4) {
  animation-delay: 0.2s;
}
.footer .faqs .accordion-item:nth-child(5) {
  animation-delay: 0.25s;
}
.footer .faqs .accordion-item:nth-child(6) {
  animation-delay: 0.3s;
}
.footer .faqs .accordion-item:nth-child(7) {
  animation-delay: 0.35s;
}
.footer .faqs .accordion-item:nth-child(8) {
  animation-delay: 0.4s;
}
.footer .faqs .accordion-item:nth-child(9) {
  animation-delay: 0.45s;
}
.footer .faqs .accordion-item:nth-child(10) {
  animation-delay: 0.5s;
}
.footer .faqs .accordion-item:nth-child(11) {
  animation-delay: 0.55s;
}
.footer .faqs .accordion-item:nth-child(12) {
  animation-delay: 0.6s;
}
.footer .faqs .accordion-item:nth-child(13) {
  animation-delay: 0.65s;
}
.footer .faqs .accordion-item:nth-child(14) {
  animation-delay: 0.7s;
}
.footer .booknow {
  height: 35vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 55px 0;
}
.footer .booknow .col-12 {
  padding-bottom: 55px;
  display: flex;
  flex-direction: column;
}
.footer .booknow .col-12 h2 {
  text-align: center;
  font-family: "open sans";
  font-weight: bold;
  font-size: 34px;
  background: linear-gradient(135deg, #4dd0c8, #0f1e2e);
  -webkit-background-clip: text;
  color: transparent;
}
.footer .ftblock-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.footer .ftblock-top h4 {
  font-family: "open sans";
  font-weight: 700;
  color: white;
}
.footer .ftblock-top nav ul {
  padding: 0;
}
.footer .ftblock-top nav ul li {
  list-style: none;
}
.footer .ftblock-top nav ul li a {
  font-family: "open sans";
  color: whitesmoke;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}
.footer .divone img {
  width: 150px;
}
.footer .divone p {
  font-family: "open sans";
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  width: 85vw;
}
.footer .divthree {
  padding-top: 16px;
}
.footer .divthree a {
  font-family: "open sans";
  font-size: 21px;
  font-weight: 700;
  color: white;
}
.footer .divfour {
  padding-top: 16px;
}
.footer .divfour a {
  font-family: "open sans";
  font-size: 21px;
  font-weight: 700;
  color: white;
}
.footer .payoneer {
  justify-content: start;
}
.footer .payoneer img {
  max-width: 80px;
  padding-top: 6px;
  filter: brightness(0) invert(1);
  gap: 25px;
}
.footer .ftblock-bottom {
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  padding-top: 16px;
  text-align: center;
}
.footer a,
.footer a:visited,
.footer a:focus,
.footer a:active {
  text-decoration: none;
  outline: none;
}

.ft-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
}
.ft-social img {
  max-width: 26px;
  padding-top: 6px;
}
.ft-social i {
  font-size: 26px;
  color: white;
  transition: 0.3s ease;
}
.ft-social i:hover {
  color: white;
}

.about-hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  text-align: center;
}
.about-hero__videobg {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1;
  pointer-events: none;
  object-fit: cover;
}
.about-hero h1 {
  margin-top: 100px;
  font-family: "amatic sc";
  color: white;
  font-size: 84px;
  line-height: 94px;
  font-weight: 700;
  padding-top: 55px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85);
}
.about-hero p {
  font-family: "open sans";
  font-size: 16px;
  color: white;
  line-height: 26px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85);
}

.intro-bio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
}
.intro-bio h3 {
  font-family: "open sans";
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #0f1e2e;
  font-weight: 700;
}
.intro-bio h2 {
  font-family: "amatic sc";
  font-size: 34px;
  font-weight: 800;
}
.intro-bio h4 {
  font-family: "open sans";
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #0f1e2e;
  font-weight: 700;
}
.intro-bio p {
  text-align: center;
}

.letschat {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-bottom: 34px;
}

.community {
  padding: 55px 16px;
  text-align: center;
}
.community img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
}
.community h2 {
  font-family: "amatic sc";
  font-size: 34px;
  font-weight: 800;
  color: #E27D60;
}
.community .description {
  font-family: "nunito sans";
  line-height: 26px;
  font-size: 16px;
  margin-top: 1rem;
  color: #0f1e2e;
}

#sailingGuada,
#sailingGuada .carousel-inner,
#sailingGuada .carousel-item {
  height: 450px;
  /* elegí el alto que quieras */
}

#sailingGuada img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  /* clave */
}

.aboutg {
  text-align: center;
}
.aboutg h3.aboutg-title {
  font-family: "amatic sc";
  font-size: 21px;
  font-weight: 900 !important;
  color: #0f1e2e;
}
.aboutg h2 {
  color: #E27D60;
  padding-top: 21px;
}

.aboutk {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aboutk .btn--accent {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
  margin-top: 16px;
  margin-left: 34px;
  margin-right: 34px;
}

#sailingSlider {
  height: 333px;
  overflow: hidden;
  margin-bottom: 21px;
}

#sailingSlider img {
  width: 100%;
  height: 333px;
  object-fit: cover;
  display: block;
}

#sailingSlider .carousel-item:nth-child(3) img {
  object-position: left center;
}

.btn-cntr {
  display: block;
  margin: 0 auto;
  margin-left: 34px;
  margin-right: 34px;
  margin-top: 16px;
  margin-bottom: 34px;
}

.hero {
  min-width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
}
.hero .experiences-hero__videobg {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  width: 100%;
  height: 100vh;
  border: none;
  z-index: -1;
  pointer-events: none;
  object-fit: cover;
}
.hero h1 {
  font-family: "amatic sc";
  font-size: 84px;
  text-align: center;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85);
}
.hero h2 {
  font-family: "open sans";
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: white;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85);
  align-self: center;
  display: flex;
  justify-content: center;
}
.hero p {
  color: white;
  font-family: "open sans";
  width: 100%;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  font-weight: 500;
  padding: 0 16px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85);
}

.tarjeta h5 {
  margin-top: 16px;
  font-family: "amatic sc";
  font-size: 55px;
  text-align: center;
  font-weight: 700;
  color: #BF820F;
}
.tarjeta p {
  font-family: "open sans";
  font-size: 14px;
  line-height: 26px;
  text-align: center;
  font-weight: 500;
}

.container .flavor {
  padding-left: 16px;
  padding-right: 16px;
}
.container .flavor h2 {
  padding-top: 55px;
  text-align: center;
  color: #BF820F;
  font-family: "amatic sc";
  font-size: 55px;
  line-height: 55px;
}
.container .flavor p {
  text-align: center;
}
.container .tira-flavor .tira img {
  height: 356px;
  padding-bottom: 55px;
}

.activities {
  padding-top: 55px;
  padding-bottom: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.activities a {
  text-decoration: none;
}
.activities h3 {
  font-family: "amatic sc";
  color: white;
  font-size: 26px;
  line-height: 21px;
  font-weight: 900;
  text-align: center;
  padding: 0 7px;
  z-index: 3;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85);
}
.activities h2 {
  font-family: "amatic sc";
  color: #BF820F;
  font-size: 55px;
  line-height: 55px;
  font-weight: 900;
  text-align: center;
  padding: 0 7px;
}
.activities .act {
  font-family: "open sans";
  color: #0f1e2e;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-align: center;
  padding: 0 7px;
  z-index: 3;
}
.activities p {
  font-size: 14px;
  color: white;
  font-weight: 300;
  z-index: 3;
  text-align: center;
}
.activities .build {
  text-align: center;
  color: #0f1e2e;
}
.activities .tarjeta-fullbg--coral {
  background-image: url("../../img/ourboat.png");
  background-position: 0% 70%;
}
.activities .tarjeta-fullbg--snork {
  background-image: url("../../img/pelicanoisland.jpg");
  background-position: bottom center;
  background-size: 644px;
}
.activities .tarjeta-fullbg--reef {
  background-image: url("../../img/san-blas-on.sailboats-girls-sit.jpg");
}
.activities .tarjeta-fullbg--kayak {
  background-image: url("../../img/couple-kayak-sanblas-on-sailboats.jpg");
}
.activities .tarjeta-fullbg--jungle {
  background-image: url("../../img/jungle-jumping-sanblas-on-sailboats.png");
}
.activities .tarjeta-fullbg--sunset {
  background-image: url("../../img/beach-walk.jpg");
}
.activities .tarjeta-fullbg--guna {
  background-image: url("../../img/kuna-sanblasonsailboats.jpg");
}
.activities .tarjeta-fullbg--yoga {
  background-image: url("../../img/yoga-san-blas-on-sailboats.jpg");
}
.activities .tarjeta-fullbg--swim {
  background-image: url("../../img/best-snork.jpg");
}
.activities .activities-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  text-align: center;
}
.blog-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
}
.blog-hero h1 {
  font-family: "amatic sc";
  font-size: 84px;
  line-height: 84px;
  font-weight: 900;
  background: linear-gradient(135deg, #BF820F, #FFC64F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blog-hero p {
  font-family: "open sans";
  font-size: 16px;
  color: #0f1e2e;
  line-height: 26px;
  font-weight: 400;
  padding-bottom: 55px;
  padding-left: 34px;
  padding-right: 34px;
}

.tagsi {
  margin-top: 16px;
  background-color: #D9BB96;
  border-radius: 16px;
  padding: 7px 12px;
  color: #0f1e2e;
  font-weight: 600;
}

.card-body .card-title {
  font-size: 34px;
  color: #6B8F8B;
}
.card-body .card-text {
  font-family: "open sans";
}

.hero-post {
  height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  text-align: center;
}
.hero-post__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
}
.hero-post h1 {
  font-family: "amatic sc";
  font-size: 55px;
  line-height: 55px;
  font-weight: 900;
  background: linear-gradient(135deg, #197359, #6B8F8B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 16px;
}
.hero-post h2 {
  font-family: "open sans";
  font-size: 21px;
  line-height: 34px;
  font-weight: 500;
  background: linear-gradient(135deg, #BF820F, #FFC64F);
  -webkit-background-clip: text;
}
.hero-post p {
  font-family: "open sans";
  font-size: 18px;
  color: #0f1e2e;
  line-height: 26px;
  font-weight: 400;
  padding-top: 7px;
}

article p {
  font-family: "open sans";
  font-size: 16px;
  color: #0f1e2e;
  line-height: 26px;
  font-weight: 400;
  padding: 0 16px;
  text-align: center;
}
article h2 {
  font-family: "amatic sc";
  font-size: 21px;
  line-height: 34px;
  font-weight: 900;
  background: linear-gradient(35deg, #BF5841, #E27D60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 16px;
  text-align: center;
}
article h3 {
  font-family: "open sans";
  font-size: 18px;
  line-height: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, #6B8F8B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 16px;
  text-align: center;
}
article h3.night {
  font-family: "amatic sc";
  font-size: 21px;
  line-height: 26px;
  font-weight: 700;
  color: #BF5841 !important;
}

.card {
  margin: 16px;
}
.card h5 {
  font-family: raleway;
  font-size: 26px;
  line-height: 36px;
  font-weight: 700;
  background: linear-gradient(35deg, #0f1e2e, #4dd0c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 16px;
  text-align: center;
}
.card p {
  font-family: "nunito sans";
  font-size: 16px;
  color: #0f1e2e;
  line-height: 26px;
  font-weight: 400;
  padding: 0 16px;
}

.row ul {
  text-align: center;
  padding: 0 16px;
  list-style: none;
}
.row .btn--accent {
  align-self: center;
}

.blogimage {
  width: 85%;
  height: auto;
  display: block;
  border-radius: 16px;
  margin: 0 auto;
}

.our-hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  text-align: center;
}
.our-hero__videobg {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1;
  pointer-events: none;
  object-fit: cover;
}
.our-hero h2 {
  margin-top: 100px;
  font-family: "amatic sc";
  color: white;
  font-size: 84px;
  line-height: 94px;
  font-weight: 700;
  padding-top: 55px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85);
}
.our-hero p {
  font-family: "open sans";
  font-size: 16px;
  color: white;
  line-height: 26px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85);
  padding-left: 34px;
  padding-right: 34px;
}

#captain {
  padding-top: 160px;
}

.intro-bio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
}
.intro-bio img {
  width: 75%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
  border-radius: 555px;
}
.intro-bio h3 {
  font-family: "open sans";
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #0f1e2e;
  font-weight: 700;
}
.intro-bio h2 {
  font-family: "amatic sc";
  font-size: 55px;
  font-weight: 800;
}
.intro-bio h4 {
  font-family: "open sans";
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #0f1e2e;
  font-weight: 700;
}
.intro-bio p {
  text-align: center;
}

.letschat {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.tarjeta h2 {
  font-family: "amatic sc";
  font-size: 34px;
  color: #6B8F8B;
}
.tarjeta p {
  font-family: "open sans";
  font-size: 16px;
  line-height: 26px;
}

.community {
  padding: 55px 16px;
  text-align: center;
}
.community img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
}
.community h3 {
  font-family: "amatic sc";
  font-size: 34px;
  font-weight: 800;
  color: #6B8F8B;
}
.community ul {
  padding-left: 0;
}
.community ul li {
  list-style: none;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
}
.community .description {
  font-family: "open sans";
  line-height: 26px;
  font-size: 16px;
  margin-top: 1rem;
  color: #0f1e2e;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  /* o el alto que quieras */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero h1 {
  line-height: 76px;
}
.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.intro-experiences {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.intro-experiences h3 {
  font-family: "open sans";
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  color: #BF820F;
  text-align: center;
}
.intro-experiences h2 {
  font-family: "amatic sc";
  font-weight: 1000;
  font-size: 34px;
  text-align: center;
}
.intro-experiences p {
  font-family: "open sans";
  text-align: center;
  font-size: 16px;
  line-height: 26px;
}
.intro-experiences .benefits {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.intro-experiences .benefits img {
  width: 150px;
}
.intro-experiences .benefits p {
  font-family: "amatic sc";
  font-size: 34px;
  line-height: 39px;
  font-weight: 900;
  width: 65%;
  text-align: center;
  transform: translate(25%);
}

.loopcarousel h3 {
  text-align: center;
  font-family: "open sans";
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: #E27D60;
}
.loopcarousel h2 {
  text-align: center;
  font-family: "amatic sc";
  font-weight: 900;
  font-size: 84px;
  line-height: 84px;
  padding: 0 34px;
  background: linear-gradient(135deg, #4dd0c8, #0f1e2e);
  -webkit-background-clip: text;
  color: transparent;
}

.video .v-wrapper {
  overflow: hidden;
  position: relative;
  margin: 16px;
  width: calc(100vh - margin);
  height: 450px;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.video .v-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* hace que el video llene el div y se recorte */
  display: block;
  border-radius: 12px;
}

.booknow {
  margin: 21px 0;
}

.cta-v {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  /* VIDEO DE FONDO */
}
.cta-v video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.cta-v {
  /* CONTENIDO */
}
.cta-v h2 {
  font-family: "amatic sc";
  font-weight: 800;
  font-size: 55px;
  color: white;
  z-index: 3;
}
.cta-v {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

a {
  font-family: "open sans";
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  position: relative;
  z-index: 3;
  color: #fff;
}

.jungle-hero {
  background-image: url(../../img/jungle-san-blas-onsailboats.jpg);
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0px 16px;
}
.jungle-hero h2 {
  font-family: "open sans";
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 55px;
  text-shadow: 5px 5px 5px black;
}
.jungle-hero h1 {
  font-family: "amatic sc";
  font-size: 84px;
  line-height: 84px;
  text-shadow: 5px 5px 5px black;
  font-weight: 700.3;
}
.jungle-hero p {
  font-family: "open sans";
  font-size: 16px;
  line-height: 26px;
}

#included {
  background-image: url(../../img/jungles-sanblas.jpg);
  background-attachment: fixed;
  color: white;
}
#included h2 {
  font-family: "amatic sc";
  font-size: 55px;
  line-height: 55px;
  color: white;
}
#included ul {
  font-family: "open sans";
  font-size: 16px;
  line-height: 26px;
  list-style: none;
}
#included ul li {
  color: white;
}
#included p {
  font-size: "open sans";
  font-size: 16px;
  line-height: 26px;
  color: white;
}
#included .nt {
  text-align: center;
  padding: 0 16px;
  padding-bottom: 55px;
}
#included .nt .not-include {
  text-shadow: 2px 2px 4px #000000;
}
#included .nt .not-include .material-icons {
  color: #D9BB96;
}
#included .nt h3 {
  color: #e0d9c0;
  font-family: "amatic sc";
  font-size: 34px;
  font-weight: 700;
}
#included .nt p {
  font-family: "open sans";
  font-size: 21px;
  line-height: 34px;
  color: white;
}
#included .counter {
  font-family: "open sans";
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  text-shadow: 2px 2px 4px #000000;
}
#included .counter h3 {
  font-weight: 600;
}
#included .counter h2 {
  font-weight: 900;
}
#included .counter p {
  font-weight: 600;
}
#included .counter .counter-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 34px;
}

.tarjeta .it {
  font-family: "open sans";
  color: #BF820F;
  font-size: 34px;
  line-height: 26px;
}
.tarjeta .hour {
  color: #E27D60;
  font-weight: bold;
}

#pricing {
  background-image: url(../../img/jungles-sanblas.jpg);
  background-attachment: fixed;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
}
#pricing div h3 {
  font-family: "amatic sc";
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: white;
  padding-top: 55px;
}
#pricing div iframe {
  height: 85vh;
  width: 100%;
}
#pricing .tarjeta {
  width: 100%;
}
#pricing .tarjeta h3 {
  font-family: "open sans";
  color: #E27D60;
  font-weight: 500;
  font-size: 16px;
}
#pricing .tarjeta h2 {
  font-family: "amatic sc";
  font-size: 34px;
  line-height: 34px;
  color: #0f1e2e;
}
#pricing .tarjeta p {
  font-family: "open sans";
  font-size: 16px;
  line-height: 26px;
}
#pricing .tarjeta ul {
  list-style: none;
}
#pricing .tarjeta .tarjeta--color {
  background-color: linear-gradient(135deg, #0f1e2e, #4dd0c8 100%);
}

.benefits {
  padding-top: 34px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: center;
  font-family: "caveat";
  font-size: 21px;
  line-height: 21px;
  font-weight: bold;
  color: #0f1e2e;
  gap: 20px;
}
.benefits img {
  width: 50px;
}

.gallery-img img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-img img:hover {
  transform: scale(1.05);
}

#yachtSlidermodal .carousel-inner {
  height: 550px;
}

.itprice .imge {
  display: none !important;
}
.itprice .it {
  font-family: "open sans";
  font-size: 21px;
  color: #197359;
}
.itprice ul {
  list-style: none;
}

#itinerary {
  background-image: url(../../img/jungles-sanblas.jpg);
  background-attachment: fixed;
  color: white;
}
#itinerary ul li {
  color: white;
}
#itinerary h2 {
  color: white;
}
#itinerary p {
  color: white;
}

.gallery {
  padding-top: 190px;
}

#booking-form {
  font-family: "nunito sans";
  margin: 16px;
  padding: 16px;
  width: calc(100vh - margin);
  height: inherit;
  border-radius: 16px;
  background: white;
  box-shadow: 15px 15px 30px #bebebe, -15px -15px 30px #ffffff;
  text-align: center;
}
#booking-form .form-label {
  font-family: "raleway";
  font-size: 21px;
  font-weight: bold;
  color: #4dd0c8;
}

.eco-friendly {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.intro {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.intro .eco-friendly {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.intro .eco-friendly img {
  width: 65px;
}
.intro .gallery-reserve {
  padding: 0;
}
.intro .gallery-reserve .tira-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.intro .gallery-reserve .tira-wrapper:active {
  cursor: grabbing;
}
.intro .gallery-reserve .tira {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 3s linear infinite;
}
.intro .gallery-reserve .tira img {
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.intro .gallery-reserve {
  /* Animación infinita */
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.intro h3 {
  font-family: "open sans";
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  text-align: center;
  color: rgba(191, 130, 15, 0.9);
  margin: 0;
}
.intro h1 {
  font-family: "amatic sc";
  font-size: 84px;
  font-weight: 900;
  text-align: center;
  line-height: 84px;
  color: #6B8F8B;
}
.intro p {
  font-family: "open sans";
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  font-weight: 500;
  color: #0f1e2e;
  padding: 0 21px;
}

.content h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: white;
}
.content p {
  margin: 0;
  color: #c4c7d4;
  line-height: 1.5;
}

.includes {
  padding-top: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 55px;
}
.includes .material-icons {
  color: #6B8F8B;
  vertical-align: center;
  font-size: 28px;
}
.includes img {
  width: 190px;
  align-self: center;
}
.includes h2 {
  text-align: center;
  font-family: "amatic sc";
  font-size: 55px;
  font-weight: 700;
  color: #BF820F;
}
.includes ul {
  margin: 0;
  padding: 0;
  text-align: left;
  padding: 0 34px;
  /* centrar la lista entera */
}
.includes ul li {
  list-style: none;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 8px;
  font-family: "open sans";
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  padding-bottom: 16px;
  /* quitar el background antiguo */
  background: none;
  padding-left: 0;
  color: rgba(15, 30, 46, 0.8);
}
.includes .not-included p {
  font-family: "open sans";
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #0f1e2e;
  text-align: center;
  font-weight: 700;
  margin: 0;
  padding-top: 21px;
}
.includes .not-included .material-icons {
  color: #E27D60;
}
.includes p {
  text-align: center;
  padding: 0 55px;
  color: #197359;
  font-family: "open sans";
  font-size: 16px;
  line-height: 26px;
}

.cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cta p {
  font-family: "open sans";
  font-size: 21px;
  line-height: 26px;
  text-align: left;
  font-weight: 500;
  color: white;
}
.cta .cta-btn {
  font-family: "open sans";
  margin-bottom: 21px;
  background-color: #BF820F;
  color: whitesmoke;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.cta .cta-btn:hover {
  background-color: #4dd0c8;
  color: white;
}

#yachtSlidermodal {
  margin-top: 34px;
  height: 45vh;
  overflow: hidden;
}
#yachtSlidermodal .carousel-inner {
  height: 100%;
}
#yachtSlidermodal .carousel-item {
  height: 100%;
}
#yachtSlidermodal .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pricing-card {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pricing-card p {
  color: #0f1e2e;
  font-weight: 700;
}
.pricing-card img {
  width: 100%;
  object-fit: cover;
}
.pricing-card .price {
  font-family: "open sans";
  text-transform: uppercase;
  color: #E27D60;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
  text-align: center;
  padding-top: 16px;
}
.pricing-card h3 {
  font-family: "amatic sc";
  font-size: 34px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1;
}

.herosuccess {
  padding: 16px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.herosuccess h1 {
  font-family: "raleway";
  color: #0f1e2e;
  font-size: 55px;
  line-height: 55px;
  font-weight: 700;
  text-align: center;
}
.herosuccess p {
  font-family: "nunito sans";
  font-size: 21px;
  font-weight: 500;
  text-align: center;
}

.cancelpage {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cancelpage h1 {
  font-family: "raleway";
  font-size: 55px;
  line-height: 55px;
  font-weight: 700;
  text-align: center;
}
.cancelpage p {
  font-family: "nunito sans";
  font-size: 21px;
  font-weight: 500;
  text-align: center;
}

.container-padding {
  padding-top: 160px;
}

.container-padding {
  padding-top: 160px;
}

@media (min-width: 1025px) {
  .navbar {
    border-radius: 16px;
    justify-content: space-between;
  }
  .navbar .navbar-brand img {
    width: 140px;
  }
  .navbar .navbar-nav {
    gap: 24px;
  }
  .navbar .nav-link {
    font-weight: 400;
    font-size: 16px;
    color: white;
  }
  .hero .hero__videobg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .hero .hero__content h3 {
    font-size: 21px !important;
    line-height: 55px;
  }
  .hero .hero__content h1 {
    font-size: 84px;
    line-height: 84px;
  }
  .hero .hero__content p {
    width: 555px;
    margin: 0 auto;
    padding-bottom: 21px;
  }
  .benefits-col {
    padding: 80px 48px;
    display: flex;
    flex-direction: column;
    gap: 56px;
  }
  .benefits-col .eco-friendly {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 21px;
  }
  .benefits-col .eco-friendly .eco-icon {
    display: flex;
    flex-direction: row;
  }
  .benefits-col .eco-friendly h2 {
    font-size: 84px;
    line-height: 94px;
  }
  .benefits-col .eco-friendly p {
    width: 30%;
    padding-top: 6px;
    font-size: 18px;
    text-align: left;
  }
  .benefits-col .tarjetasfulbg {
    display: flex;
    flex-direction: row !important;
    gap: 16px;
  }
  section.interest .div-tarjeta {
    min-height: 450px;
    margin-left: 150px;
    margin-right: 150px;
  }
  section.interest .flex-tags {
    margin-left: 222px;
    margin-right: 222px;
  }
  .modal-content #yachtSlidermodal {
    height: 500px;
  }
  .experiences {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 84px;
  }
  .experiences img {
    height: 300px;
  }
  .gallery-img h2 {
    font-size: 55px;
  }
  .sustainable {
    background-color: #0f1e2e;
    width: 50%;
    margin: 34px auto;
    color: white;
  }
  .footer p {
    color: #e0d9c0;
    width: 555px;
    margin: 0 auto;
    text-align: center;
  }
  .footer a img {
    width: 25px;
  }
  .footer .ftblock-top {
    border-top: solid 1px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 21px;
  }
  .footer .ftblock-top .divtwo {
    text-align: right;
  }
  .footer .ftblock-top .divthree {
    text-align: center;
  }
  .footer .ftblock-top .divfour {
    text-align: left;
  }
  .accordion.kunay {
    background: #0f1e2e;
    border: 1px solid rgba(224, 217, 192, 0.15);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    color: #e0d9c0;
  }
  .accordion.kunay .accordion-item {
    background: transparent;
    border: none;
  }
  .accordion.kunay .accordion-item:not(:last-child) {
    border-bottom: 1px solid rgba(224, 217, 192, 0.12);
  }
  .accordion.kunay .accordion-button {
    padding: 1.25rem 1.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #e0d9c0;
    background: transparent;
    border: none;
    transition: all 0.28s ease;
  }
  .accordion.kunay .accordion-button:not(.collapsed) {
    color: #D9BB96;
    background: rgba(77, 208, 200, 0.12);
    box-shadow: inset 0 -1px 0 rgba(224, 217, 192, 0.15);
  }
  .accordion.kunay .accordion-button:hover {
    background: transparent;
    border: none;
  }
  .accordion.kunay .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e0d9c0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    opacity: 0.65;
    transition: all 0.28s ease;
  }
  .accordion.kunay .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    opacity: 0.9;
  }
  .accordion.kunay .accordion-collapse {
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .accordion.kunay .accordion-body {
    padding: 1.5rem 1.75rem 1.75rem;
    color: rgba(224, 217, 192, 0.92);
    font-size: 1.03rem;
    line-height: 1.68;
  }
  .accordion.kunay .accordion-body p {
    margin-bottom: 1.25rem;
  }
  .accordion.kunay .accordion-body p:last-child {
    margin-bottom: 0.5rem;
  }
  .accordion.kunay .accordion-body p strong {
    color: #D9BB96;
    font-weight: 650;
    display: block;
    margin: 1.6rem 0 0.6rem;
    font-size: 1.12rem;
  }
  .accordion.kunay .accordion-button:hover,
  .accordion.kunay .accordion-button:not(.collapsed) {
    border-color: rgba(77, 208, 200, 0.3);
  }
}
@media (min-width: 1025px) {
  .about-hero h1 {
    font-size: 84px;
    line-height: 84px;
  }
  .about-hero p {
    width: 777px;
    margin: 0 auto;
    padding-bottom: 21px;
  }
  .aboutg {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  .aboutg #sailingGuada {
    flex: 1;
    max-width: 50%;
    height: 600px;
    overflow: hidden;
  }
  .aboutg {
    /* obligamos a todos los niveles a ocupar el 100% */
  }
  .aboutg #sailingGuada .carousel-inner,
  .aboutg #sailingGuada .carousel-item {
    height: 100%;
  }
  .aboutg {
    /* la imagen se adapta */
  }
  .aboutg #sailingGuada img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .aboutg .about-meet-captain {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
  }
  .aboutg .about-meet-captain h2 {
    color: #E27D60;
    margin-bottom: 10px;
  }
  .aboutg .about-meet-captain h3.aboutg-title {
    font-family: "amatic sc";
    font-size: 21px;
    font-weight: 900 !important;
    color: #0f1e2e;
    margin-bottom: 5px;
  }
  .aboutg .about-meet-captain h4 {
    margin-bottom: 25px;
    opacity: 0.7;
  }
  .aboutg .about-meet-captain p {
    width: 75%;
    margin-bottom: 18px;
    line-height: 1.6;
    text-align: left;
    margin: 0;
  }
  .aboutg .about-meet-captain .letschat {
    margin-top: 25px;
    align-self: flex-start;
    padding-bottom: 84px;
  }
  /* ==============================
     ABOUT K - Slider + Accordion
  ================================= */
  .aboutk {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 0;
    flex-direction: row;
  }
  /* ==============================
     SLIDER
  ================================= */
  #sailingSlider {
    flex: 0 0 45%;
    height: 800px;
    overflow: hidden;
    border-radius: 16px;
  }
  #sailingSlider .carousel-inner,
  #sailingSlider .carousel-item {
    height: 100%;
  }
  #sailingSlider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /* ==============================
     ACCORDION
  ================================= */
  /* ==============================
     CUSTOM ACCORDION STYLE
  ================================= */
  .accordion.kunay {
    background: #0f1e2e;
    border: 1px solid rgba(224, 217, 192, 0.15);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    color: #e0d9c0;
  }
  .accordion.kunay .accordion-item {
    background: transparent;
    border: none;
  }
  .accordion.kunay .accordion-item:not(:last-child) {
    border-bottom: 1px solid rgba(224, 217, 192, 0.12);
  }
  .accordion.kunay .accordion-button {
    padding: 1.25rem 1.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #e0d9c0;
    background: transparent;
    border: none;
    transition: all 0.28s ease;
  }
  .accordion.kunay .accordion-button:not(.collapsed) {
    color: #D9BB96;
    background: rgba(77, 208, 200, 0.12);
    box-shadow: inset 0 -1px 0 rgba(224, 217, 192, 0.15);
  }
  .accordion.kunay .accordion-button:hover {
    background: transparent;
    border: none;
  }
  .accordion.kunay .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e0d9c0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    opacity: 0.65;
    transition: all 0.28s ease;
  }
  .accordion.kunay .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    opacity: 0.9;
  }
  .accordion.kunay .accordion-collapse {
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .accordion.kunay .accordion-body {
    padding: 1.5rem 1.75rem 1.75rem;
    color: rgba(224, 217, 192, 0.92);
    font-size: 1.03rem;
    line-height: 1.68;
  }
  .accordion.kunay .accordion-body p {
    margin-bottom: 1.25rem;
  }
  .accordion.kunay .accordion-body p:last-child {
    margin-bottom: 0.5rem;
  }
  .accordion.kunay .accordion-body p strong {
    color: #D9BB96;
    font-weight: 650;
    display: block;
    margin: 1.6rem 0 0.6rem;
    font-size: 1.12rem;
  }
  .accordion.kunay .accordion-button:hover,
  .accordion.kunay .accordion-button:not(.collapsed) {
    border-color: rgba(77, 208, 200, 0.3);
  }
  /* ==============================
     CTA BUTTON
  ================================= */
  a.btn {
    margin: 0;
  }
  .btn-cntr {
    display: block;
    margin-top: 60px;
    align-self: flex-start;
  }
}
@media (min-width: 1025px) {
  .activities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 84px;
  }
  .activities h2,
  .activities .act {
    grid-column: 1/-1;
    text-align: center;
  }
  .activities .activities-cta {
    grid-column: 1/-1;
  }
  p.act {
    font-size: 21px;
    width: 35%;
    margin: 0 auto;
  }
  .flavor p {
    width: 30%;
    margin: 0 auto;
  }
  .tira-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 16px;
  }
  .tira {
    display: flex;
    gap: 20px;
  }
  .tira img {
    height: 350px;
    object-fit: cover;
    width: 350px;
  }
}
@media (min-width: 1025px) {
  .our-hero section h2 {
    font-size: 84px;
    line-height: 84px;
  }
  .our-hero section p {
    width: 777px;
    margin: 0 auto;
    padding-bottom: 21px;
  }
  .colaboradores {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
    /* IMPORTANTE: Control de alturas de celdas */
    grid-auto-rows: min-content;
    /* Cada fila tiene la altura justa de su contenido */
  }
  .colaboradores .tarjeta--collab {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* No definimos height, dejamos que el grid controle la altura */
    /* height: auto; - No necesario */
    /* Control fino de cómo se comporta la tarjeta dentro de la celda */
    align-self: start;
    /* Se alinea al inicio de la celda */
  }
  .colaboradores .tarjeta--collab:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  }
  .colaboradores .tarjeta--collab img {
    width: 100%;
    height: 280px;
    /* Altura fija para imágenes */
    object-fit: cover;
    display: block;
  }
  .colaboradores .tarjeta--collab h2 {
    margin: 20px 20px 10px 20px;
    font-size: 34px;
    font-weight: 700;
    color: #6B8F8B;
    font-family: "amatic sc";
  }
  .colaboradores .tarjeta--collab p {
    margin: 8px 20px;
    line-height: 1.6;
    color: #0f1e2e;
    /* Aseguramos que los párrafos no se desborden */
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .colaboradores .tarjeta--collab p:has(👥), .colaboradores .tarjeta--collab p:has(🔒), .colaboradores .tarjeta--collab p:has(💰) {
    font-weight: 600;
    color: #0f172a;
    background: #f8fafc;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    margin: 4px 20px;
  }
  .colaboradores .tarjeta--collab .letschat {
    margin: 20px 20px 20px 20px;
    padding-top: 10px;
  }
  .colaboradores .tarjeta--collab .letschat .btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    width: fit-content;
    border: none;
    font-family: "open sans";
  }
  .colaboradores .tarjeta--collab .letschat .btn--accent {
    background-color: #E27D60;
    color: white;
  }
  .colaboradores .tarjeta--collab .letschat .btn--accent:hover {
    background-color: #BF5841;
    cursor: pointer;
  }
  .intro-bio {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0 144px;
  }
  .intro-bio p {
    margin: 0;
    padding-bottom: 18px;
    text-align: left;
    line-height: 34px;
    color: #0f1e2e;
  }
  .intro-bio #sailingSlider {
    max-width: 50%;
    height: 300px;
    overflow: hidden;
    box-shadow: 0 15px 30px -8px rgba(15, 30, 46, 0.1);
    transition: box-shadow 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(15, 30, 46, 0.25);
    border-radius: 555px;
  }
  .intro-bio #sailingSlider .carousel-inner,
  .intro-bio #sailingSlider .carousel-item {
    height: 100%;
  }
  .intro-bio #sailingSlider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .intro-bio .letschat__div {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
  }
  .intro-bio .letschat__div .letschat {
    justify-content: left;
  }
  .community {
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #0f1e2e !important;
  }
  .community img {
    width: 300px;
  }
  .community div {
    padding-left: 16px;
    text-align: left;
    align-content: center;
  }
  .community div li {
    padding: 0;
  }
}
@media (min-width: 1025px) {
  .blog-hero {
    height: 90vh;
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
  }
  .blog-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0.4) 92%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0.4) 92%, rgba(0, 0, 0, 0) 100%);
  }
  .blog-hero h1 {
    font-size: clamp(110px, 11vw, 160px);
    line-height: 0.88;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 0.15em;
    background: linear-gradient(135deg, #BF820F 0%, #FFC64F 60%, #BF820F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .blog-hero p.lead {
    font-size: 1.5rem;
    max-width: 555px;
    line-height: 1.48;
    color: #0f1e2e;
    font-weight: 400;
    margin: 0 auto;
    margin-bottom: 84px;
  }
  .tarjeta {
    height: 100%;
  }
  .card-img-top {
    height: 200px;
    object-fit: cover;
  }
  .card-body {
    flex: 1;
  }
  .card-text {
    width: 100%;
  }
  .row.g-4 {
    --bs-gutter-x: 2.2rem;
    --bs-gutter-y: 2.8rem;
  }
  .container {
    max-width: 1320px;
  }
  .footer {
    padding-top: 6rem;
  }
  .footer .faqs {
    max-width: 1100px;
    margin: 0 auto 5rem;
  }
  .footer .faqs h3 {
    font-size: 1.8rem;
  }
  .footer .faqs h2 {
    font-size: 3.4rem;
    margin-bottom: 2.5rem;
  }
  .footer .ftblock-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
  }
  h5.card-title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1025px) {
  .hero-post h1 {
    font-size: 84px;
    line-height: 84px;
    color: #6B8F8B;
  }
  .hero-post __img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-post h1 {
    font-family: "Amatic SC", cursive;
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 900;
    background: linear-gradient(135deg, #197359, #6B8F8B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 2rem;
    max-width: 1000px;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
  }
  .hero-post p {
    font-family: "Open Sans", sans-serif;
    font-size: 1.2rem;
    color: #0f1e2e;
    line-height: 1.7;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    position: relative;
    z-index: 2;
    border: solid 1px #0f1e2e;
    border-radius: 12px;
  }
  article {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
  }
  article img {
    width: 50%;
  }
  article p {
    width: 666px;
    margin: 0 auto;
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    color: #0f1e2e;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-align: left;
  }
  article p.intro-blog {
    width: 777px;
    font-size: 1.3rem;
    font-weight: 500;
    color: #6B8F8B;
    margin: 0 auto;
    text-align: center;
  }
  article p strong {
    color: #BF5841;
    font-weight: 600;
  }
  article h2 {
    width: 666px;
    margin: 0 auto;
    font-family: "Amatic SC";
    font-size: 55px;
    line-height: 1.2;
    font-weight: 900;
    text-align: left;
    position: relative;
  }
  article h3 {
    width: 666px;
    font-family: "Open Sans", sans-serif;
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 700;
    background: linear-gradient(135deg, #6B8F8B, #197359);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 auto;
    text-align: left;
  }
  article h3.night {
    font-family: "Amatic SC", cursive;
    font-size: 2rem;
    color: #BF5841;
    -webkit-text-fill-color: #BF5841;
    background: none;
  }
  article ul, article ol {
    margin: 1.5rem 0;
    padding-left: 1.8rem;
  }
  article ul li, article ol li {
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    color: #0f1e2e;
    line-height: 1.7;
    margin-bottom: 0.7rem;
    position: relative;
  }
  article ul li::marker, article ol li::marker {
    color: #197359;
    font-weight: bold;
  }
  article p:has(strong):not(.intro-blog) {
    background: rgba(25, 115, 89, 0.03);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border-left: 3px solid #197359;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
  }
  article p:has(strong):not(.intro-blog):hover {
    background: rgba(25, 115, 89, 0.08);
    transform: translateX(3px);
  }
  article p:has(strong):not(.intro-blog) strong {
    display: inline-block;
    margin-right: 0.5rem;
    color: #BF5841;
  }
  .blogimage {
    width: 100%;
    max-width: 700px;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    margin: 2.5rem auto;
    box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
  }
  .blogimage:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(15, 30, 46, 0.3);
  }
  .card {
    margin: 1.5rem 0;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 350px;
  }
  .card:hover {
    box-shadow: 0 15px 30px -5px rgba(15, 30, 46, 0.15);
    transform: translateY(-3px);
  }
  .card h5 {
    font-family: "Amatic SC", cursive;
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    background: linear-gradient(135deg, #0f1e2e, #4dd0c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 1.2rem 1.2rem 0.3rem;
    text-align: left;
  }
  .card p {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    color: #0f1e2e;
    line-height: 1.6;
    padding: 0 1.2rem 1.2rem;
    margin: 0;
  }
  .row {
    margin: 0;
  }
  .row ul {
    text-align: left;
    padding: 1.5rem;
    list-style: none;
    background: rgba(25, 115, 89, 0.03);
    border-radius: 20px;
    max-width: 600px;
    margin: 1.5rem auto;
  }
  .row ul li {
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    color: #0f1e2e;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
  }
  .row ul li::before {
    content: "🌴";
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.7;
    font-size: 0.9rem;
  }
  .tagsi {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0;
    justify-content: center;
  }
  .tagsi span {
    background: rgba(25, 115, 89, 0.1);
    color: #0f1e2e;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .tagsi span:hover {
    background: #197359;
    color: white;
    transform: scale(1.05);
  }
}
@media (min-width: 1025px) and (max-width: 768px) {
  .hero-post {
    height: 60vh;
    min-height: 400px;
  }
  .hero-post h1 {
    font-size: 2.5rem;
    padding: 0 1rem;
  }
  .hero-post p {
    font-size: 1rem;
    padding: 1rem;
    max-width: 90%;
  }
  article {
    padding: 2rem 1rem;
  }
  article h2 {
    font-size: 2.2rem;
  }
  article h3 {
    font-size: 1.3rem;
  }
  article p {
    font-size: 1rem;
  }
  article p.intro-blog {
    font-size: 1.1rem;
    padding-left: 1.2rem;
  }
  .blogimage {
    max-width: 100%;
    border-radius: 16px;
    margin: 1.5rem auto;
  }
  .card {
    max-width: 100%;
  }
}
@media (min-width: 1025px) {
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  article > * {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
  }
  article > *:nth-child(1) {
    animation-delay: 0.08s;
  }
  article > *:nth-child(2) {
    animation-delay: 0.16s;
  }
  article > *:nth-child(3) {
    animation-delay: 0.24s;
  }
  article > *:nth-child(4) {
    animation-delay: 0.32s;
  }
  article > *:nth-child(5) {
    animation-delay: 0.4s;
  }
  article > *:nth-child(6) {
    animation-delay: 0.48s;
  }
  article > *:nth-child(7) {
    animation-delay: 0.56s;
  }
  article > *:nth-child(8) {
    animation-delay: 0.64s;
  }
  article > *:nth-child(9) {
    animation-delay: 0.72s;
  }
  article > *:nth-child(10) {
    animation-delay: 0.8s;
  }
}
@media (min-width: 1025px) {
  .jungle-hero {
    background-image: url(../../img/jungle-san-blas-onsailboats.jpg);
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0px 16px;
  }
  .jungle-hero h2 {
    font-family: "open sans";
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 55px;
    text-shadow: 5px 5px 5px black;
  }
  .jungle-hero h1 {
    font-size: 84px;
    line-height: 84px;
  }
  .jungle-hero p {
    width: 777px;
    margin: 0 auto;
    padding-bottom: 21px;
  }
  #included h2 {
    font-family: "amatic sc";
    font-size: 55px;
    line-height: 55px;
    color: #6B8F8B;
  }
  #included ul {
    font-family: "open sans";
    font-size: 16px;
    line-height: 26px;
    list-style: none;
  }
  #included p {
    font-size: "open sans";
    font-size: 16px;
    line-height: 26px;
    color: #0f1e2e;
  }
  #included .nt {
    text-align: center;
    width: 555px;
    padding: 55px;
    margin: 0 auto;
  }
  #included .nt .not-include .material-icons {
    color: #E27D60;
  }
  #included .nt h3 {
    color: #E27D60;
    font-family: "amatic sc";
    font-size: 34px;
    font-weight: 700;
  }
  #included .nt p {
    font-family: "open sans";
    font-size: 21px;
    line-height: 31px;
    color: #6B8F8B;
  }
  .tarjeta .it {
    font-family: "open sans";
    color: #BF820F;
    font-size: 34px;
    line-height: 26px;
  }
  .tarjeta .hour {
    color: #E27D60;
    font-weight: bold;
  }
  #pricing {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 84px;
    gap: 16px;
  }
  #pricing div h3 {
    display: none;
  }
  #pricing div iframe {
    height: 65vh;
    width: 290px;
    border-radius: 16px;
  }
  #pricing .tarjeta {
    width: 333px;
  }
  #pricing .tarjeta h3 {
    font-family: "open sans";
    color: #E27D60;
    font-weight: 500;
    font-size: 16px;
  }
  #pricing .tarjeta h2 {
    font-family: "amatic sc";
    font-size: 34px;
    line-height: 34px;
    color: #0f1e2e;
  }
  #pricing .tarjeta p {
    font-family: "open sans";
    font-size: 16px;
    line-height: 26px;
  }
  #pricing .tarjeta ul {
    list-style: none;
  }
  #pricing .tarjeta .tarjeta--color {
    background-color: linear-gradient(135deg, #0f1e2e, #4dd0c8 100%);
  }
  .benefits {
    padding-top: 34px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    font-family: "caveat";
    font-size: 21px;
    line-height: 21px;
    font-weight: bold;
    color: #0f1e2e;
    gap: 20px;
  }
  .benefits img {
    width: 50px;
  }
  .gallery-img img {
    width: 100%;
    height: 490px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .gallery-img img:hover {
    transform: scale(1.05);
  }
  #yachtSlidermodal .carousel-inner {
    height: 666px;
  }
  .itprice {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 84px;
    margin-bottom: 55px;
  }
  .itprice img {
    width: 444px;
    height: 444px;
    object-fit: cover;
    border-radius: 16px;
  }
  .itprice .it {
    font-family: "open sans";
    font-size: 21px;
    color: #197359;
  }
  .itprice ul {
    list-style: none;
  }
}
@media (min-width: 1025px) {
  .intro {
    padding-top: 84px;
  }
  .intro img {
    width: 250px;
  }
  .intro h3 {
    font-size: 21px;
  }
  .intro h1 {
    font-size: 122px;
    line-height: 122px;
  }
  .gallery-reserve .tira-wrapper {
    width: 100%;
  }
  .includes {
    display: flex;
    flex-direction: row;
  }
  .includes img {
    width: 333px;
    animation: float 4s ease-in-out infinite;
  }
  @keyframes float {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .includes div ul li {
    padding: 0;
    line-height: 55px;
  }
  .includes div li {
    padding: 0;
  }
  .includes div h2 {
    text-align: left;
  }
  .nt {
    background-color: white;
    padding: 34px;
    margin: 0 144px;
    border-radius: 16px;
    text-align: center;
  }
  .nt p {
    color: #6B8F8B;
  }
  .nt li {
    color: #E27D60;
  }
  .nt .not-included p {
    color: #E27D60;
    font-weight: 900;
    font-family: "amatic sc";
    font-size: 34px;
  }
  #yachtSlidermodal {
    height: 600px;
    margin: 55px 84px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  }
  .pricing-c {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 84px;
  }
  .pricing-c .pricing-card {
    background-color: transparent;
  }
  .pricing-c .pricing-card h5 {
    font-size: 34px;
  }
  .pricing-c .pricing-card img {
    height: 250px;
  }
  .pricing-c .pricing-card p {
    font-weight: 500;
  }
  div {
    text-align: center;
    font-family: "open sans";
    font-weight: 500;
    color: #6B8F8B;
  }
}
@media (min-width: 1025px) {
  .intro-experiences p {
    width: 37%;
    margin: 0 auto;
  }
  .intro-experiences .benefits {
    padding-top: 21px;
    padding-bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .intro-experiences .benefits div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .intro-experiences .benefits div p {
    font-weight: 900;
    font-size: 36;
    text-align: left;
    background: linear-gradient(135deg, #197359, #6B8F8B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

/*# sourceMappingURL=main.css.map */
