/** Shopify CDN: Minification failed

Line 19:0 Unexpected "{"
Line 19:1 Expected identifier but found "%"
Line 73:8 Expected identifier but found whitespace
Line 73:10 Unexpected "{"
Line 73:17 Expected ":"
Line 91:8 Expected identifier but found whitespace
Line 91:10 Unexpected "{"
Line 91:17 Expected ":"
Line 387:2 Unexpected "{"
Line 387:3 Expected identifier but found "%"
... and 10 more hidden warnings

**/


/* CSS from section stylesheet tags */
{% for block in section.blocks %}
.dual-slider-container {
  padding: 0;
}
/* Main Slider Styles */
.main-slider {
  position: relative;
  width: 100%;
  color: white;
}
.main-slider-inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.main-slider-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.main-slide {
  width: 100%;
  display: none;
}
.main-slide.active {
  display: block;
}
.main-slide-content {
  display: flex;
  align-items: center;
}
.main-slide-image {
  width: 70%;
}
.main-slide-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
}
.main-slide-info {
  width: 30%;
  padding: 0 30px;
  text-align: center;
}
.main-slide-title p{
  font-weight: 700;
  font-size: 72px;
  line-height: 70px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: uppercase;
  color: {{ block.settings.color }};
  margin-bottom: 14px;
}
.main-slide-subtitle {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 2%;
  text-align: center;
  margin-top: 0;
}
/* Modified Main Slider Navigation Styles */
.main-slider-navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  color: {{ block.settings.color }};
}

.nav-arrows {
  display: flex;
  justify-content: center;
}
.nav-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0 10px;
}
.nav-arrow path,
.nav-arrow circle{
  stroke: #FFEC71;
}

/* Adjust spacing for main slide info */
.main-slide-info {
  width: 30%;
  padding: 0 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.main-slide-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.main-slide-subtitle {
  margin-bottom: 20px;
}
/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .main-slide-info {
    width: 100%;
    padding: 20px 15px;
  } 
  .main-slide-title {
    font-size: 2.5rem;
  }  
  .main-slider-navigation {
    margin-top: 15px;
  }
}
/* Sub Slider Styles */
.sub-sliders-container {
  width: 100%;
  position: relative;
  background: #00398B;
}
.sub-slider {
  position: relative;
  width: 100%;
  display: none;
  padding-top: 55px;
  overflow: hidden;
}
.sub-slider.active {
  display: block;
}
.sub-slider-wrapper {
  display: flex;
  overflow: hidden;
  position: relative;
}
.sub-slide {
  flex: 0 0 32%;
  margin-right: 2%;
  border-radius: 23px;
  overflow: hidden;
  display: none;
  position: relative;
  border: 2.8px solid #FFEC71;
}
.sub-slide.visible {
  display: block;
}
.sub-slide-image {
  width: 100%;
  position: relative;
  min-height: 500px;
  border-radius: 23px;
}
.sub-slide-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px;
  min-height: 500px;
  object-fit: cover;
  max-height: 500px;
}
.sub-slide-info {
  padding: 15px;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(183.44deg, rgba(243, 252, 252, 0) 12.96%, rgba(0, 57, 139, 0.85) 96.98%);
  border-radius: 0 23px 23px 0;
}
.sub-slide-title {
  color: #fff;
  font-family: Lexend Deca;
  font-weight: 400;
  font-size: 13.8px;
  line-height: 20.24px;
  letter-spacing: 0%;
}
.sub-slide-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #fff;
  margin: 0;
}
.sub-slider-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 42px;
  margin-bottom: 37px;
}
.sub-slider-empty-message {
  text-align: center;
  padding: 30px;
  color: #888;
  font-style: italic;
  border: 1px dashed #ccc;
  border-radius: 8px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .main-slide-content {
    flex-direction: column;
  }
  .main-slide-image,
  .main-slide-info {
    width: 100%;
  }  
  .main-slide-info {
    padding: 20px 15px;
  }  
  .sub-slide {
    flex: 0 0 100%;
    margin-right: 0;
  }
}
/* Hotspot Styles */
.sub-slide-image {
  width: 100%;
  position: relative;
}
.hotspot-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allow clicks to pass through to image */
}
.hotspot {
  position: absolute;
  z-index: 10;
  pointer-events: auto; /* Make hotspots clickable */
  transform: translate(-50%, -50%); /* Center the hotspot on its coordinates */
}
.hotspot-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ffcc00;
  border: 2px solid #0c4da2;
  cursor: pointer;
  position: relative;
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Inner dot for better visibility */
.hotspot-dot:after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0c4da2;
}
.hotspot-tooltip {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFEC71;
  color: #00398b;
  padding: 10px 8px;
  border-radius: 13px;
  min-width: 180px;
  max-width: 300px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 20;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  font-weight: 500;
  font-size: 18.49px;
  line-height: 20.54px;
  letter-spacing: 0%;
}
/* Arrow at bottom of tooltip */
.hotspot-tooltip:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: #0c4da2 transparent transparent transparent;
}
.hotspot:hover .hotspot-tooltip {
  opacity: 1;
  visibility: visible;
}
/* Pulsing animation for hotspot */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 204, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
  }
}
/* Mobile Enhancements - Make tooltips work better on touch devices */
@media (max-width: 768px) {
  .hotspot-dot {
    width: 20px;
    height: 20px;
  }  
  .hotspot-dot:after {
    width: 8px;
    height: 8px;
  }  
  .hotspot-tooltip {
    min-width: 150px;
    max-width: 220px;
    font-size: 13px;
    padding: 8px 12px;
  }  
  /* For mobile, show tooltip on tap instead of hover */
  .hotspot.active .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
  }
  .main-slide-image {
    order: 1;
  }
  .main-slide-img {
    height: 200px;
  }
  .main-slider-navigation .nav-arrow {
    display: none;
  }
  .main-slide-title p {
    font-size: 50px;
    line-height: 70px;
  }
  .main-slide-subtitle{
    font-size: 13px;
  }
  .sub-slide-image {
    min-height: 300px;
  }
  .sub-slide-img {
    min-height: 300px;
    max-height: 300px;
  }
  .sub-slider {
    padding: 27px 20px 0;
  }
  .sub-slide-title {
    font-size: 11px;
  }
  .dual-slider-container {
    padding: 0;
    margin: 70px 0;
  }
}
  {% endfor %}
{% for block in section.blocks %}
.dual-slider-container {
  padding: 0;
}
/* Main Slider Styles */
.main-slider {
  position: relative;
  width: 100%;
  color: white;
}
.main-slider-inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.main-slider-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.main-slide {
  width: 100%;
  display: none;
}
.main-slide.active {
  display: block;
}
.main-slide-content {
  display: flex;
  align-items: center;
}
.main-slide-image {
  width: 70%;
  min-height: 400px;
  display: block;
  max-height: 100%;
  height: 100%;
}
.main-slide-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
}
.main-slide-info {
  width: 30%;
  padding: 50px 30px 0;
  text-align: center;
}
.main-slide-title p{
  font-weight: 700;
  font-size: 72px;
  line-height: 70px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: uppercase;
  color: {{ block.settings.color }};
  margin-bottom: 14px;
}
.main-slide-subtitle {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 2%;
  text-align: center;
  margin-top: 0;
}
/* Modified Main Slider Navigation Styles */
.main-slider-navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  color: {{ block.settings.color }};
}

.nav-arrows {
  display: flex;
  justify-content: center;
}
.nav-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0 10px;
}
.nav-arrow path,
.nav-arrow circle{
  stroke: #FFEC71;
}

/* Adjust spacing for main slide info */
.main-slide-info {
  width: 30%;
  padding: 50px 30px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.main-slide-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.main-slide-subtitle {
  margin-bottom: 20px;
}
/* Responsive adjustments */
  @media (max-width: 1100px){
    .main-slide-content .main-slide-info h2 {
      color: #ffffff;
      font-size: 50px;
      line-height: 55px;
    }
    .main-slide-1 .main-slide-info h2 {
      color: #ffffff; 
    }
  }
@media screen and (max-width: 768px) {
  .main-slide-info {
    width: 100%;
    padding: 20px 15px;
  } 
  .main-slide-title {
    font-size: 2.5rem;
  }  
  .main-slider-navigation {
    margin-top: 15px;
  }
}
/* Sub Slider Styles */
.sub-sliders-container {
  width: 100%;
  position: relative;
  background: #00398B;
}
.sub-slider {
  position: relative;
  width: 100%;
  display: none;
  padding-top: 55px;
  overflow: hidden;
  padding-bottom: 50px;
}
.sub-slider.active {
  display: block;
}
.sub-slider-wrapper {
  display: flex;
  overflow: hidden;
  position: relative;
}
.sub-slide {
  flex: 0 0 32%;
  margin-right: 2%;
  border-radius: 23px;
  overflow: hidden;
  display: none;
  position: relative;
  border: 2.8px solid #FFEC71;
}
.sub-slide.visible {
  display: block;
}
.sub-slide-image {
  width: 100%;
  position: relative;
  min-height: 500px;
  border-radius: 23px;
}
.sub-slide-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px;
  min-height: 500px;
  object-fit: cover;
  max-height: 500px;
}
.sub-slide-info {
  padding: 15px;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(183.44deg, rgba(243, 252, 252, 0) 12.96%, rgba(0, 57, 139, 0.85) 96.98%);
  border-radius: 0 23px 23px 0;
}
.sub-slide-title {
  color: #fff;
  font-family: Lexend Deca;
  font-weight: 400;
  font-size: 13.8px;
  line-height: 20.24px;
  letter-spacing: 0%;
}
.sub-slide-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #fff;
  margin: 0;
}
.sub-slider-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 40%;
  z-index: 9;
}
.sub-slider-empty-message {
  text-align: center;
  padding: 30px;
  color: #888;
  font-style: italic;
  border: 1px dashed #ccc;
  border-radius: 8px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .main-slide-content {
    flex-direction: column;
  }
  .main-slide-image,
  .main-slide-info {
    width: 100%;
    min-height: 200px;
  }  
  .main-slide-info {
    padding: 20px 15px;
  }  
  .sub-slide {
    flex: 0 0 100%;
    margin-right: 0;
  }
}
/* Hotspot Styles */
.sub-slide-image {
  width: 100%;
  position: relative;
}
.hotspot-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allow clicks to pass through to image */
}
.hotspot {
  position: absolute;
  z-index: 10;
  pointer-events: auto; /* Make hotspots clickable */
  transform: translate(-50%, -50%); /* Center the hotspot on its coordinates */
}
.hotspot-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ffcc00;
  border: 2px solid #0c4da2;
  cursor: pointer;
  position: relative;
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Inner dot for better visibility */
.hotspot-dot:after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0c4da2;
}
.hotspot-tooltip {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFEC71;
  color: #00398b;
  padding: 10px 8px;
  border-radius: 13px;
  min-width: 180px;
  max-width: 300px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 20;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  font-weight: 500;
  font-size: 18.49px;
  line-height: 20.54px;
  letter-spacing: 0%;
}
/* Arrow at bottom of tooltip */
.hotspot-tooltip:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: #0c4da2 transparent transparent transparent;
}
.hotspot:hover .hotspot-tooltip {
  opacity: 1;
  visibility: visible;
}



/* Estilos para Swiper */
.sub-slider-swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.swiper-slide.sub-slide {
  display: block;
  border-radius: 23px;
  overflow: hidden;
  border: 2.8px solid #FFEC71;
  height: auto;
}

/* Media query para slides visibles */
@media screen and (min-width: 769px) {
  .swiper-slide.sub-slide {
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .swiper-slide.sub-slide {
    width: 100%;
    margin-right: 0;
  }
}


/* Pulsing animation for hotspot */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 204, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
  }
}
/* Mobile Enhancements - Make tooltips work better on touch devices */
@media (max-width: 768px) {
  .hotspot-dot {
    width: 20px;
    height: 20px;
  }  
  .hotspot-dot:after {
    width: 8px;
    height: 8px;
  }  
  .hotspot-tooltip {
    min-width: 150px;
    max-width: 220px;
    font-size: 13px;
    padding: 8px 12px;
  }  
  /* For mobile, show tooltip on tap instead of hover */
  .hotspot.active .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
  }
  .main-slide-image {
    order: 1;
  }
  .main-slide-img {
    height: 200px;
  }
  .main-slider-navigation .nav-arrow {
    display: none;
  }
  .main-slide-title p {
    font-size: 50px;
    line-height: 70px;
  }
  .main-slide-subtitle{
    font-size: 13px;
  }
  .sub-slide-image {
    min-height: 300px;
  }
  .sub-slide-img {
    min-height: 300px;
    max-height: 300px;
  }
  .sub-slider {
    padding: 27px 20px 25px;
  }
  .sub-slide-title {
    font-size: 11px;
  }
  .dual-slider-container {
    padding: 0;
    margin: 70px 0;
  }
  .sub-slider-navigation {
    top: 30%;
  }
}
  {% endfor %}
/* Tour Guide Section Styles */
  .images-columns-section {
    padding: 37px 0;
    text-align: center;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .section-title {
    margin-bottom: 60px;
  }

  .section-title h2 {
    font-size: 24px;
    color: #0a3d7b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 500;
  }

  .colums-items-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 33px;
    margin-top: 56px;
  }

  .feature-block {
    flex: 0 0 calc(20% - 30px);
    max-width: calc(20% - 30px);
    text-align: center;
    max-width: 125px;
  }

  .icon-container {
    width: 100%;
    max-width: 125px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }


  .feature-block h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .feature-block p {
    font-size: 16px;
    margin: 0;
    line-height: normal;
  }

  /* Responsive Styles */
  @media (max-width: 992px) {
    .feature-block {
      flex: 0 0 calc(33.333% - 30px);
      max-width: calc(33.333% - 30px);
    }
  }

  @media (max-width: 768px) {
    .feature-block {
      flex: 0 0 calc(50% - 30px);
      max-width: calc(50% - 30px);
    }

    .section-title h2 {
      font-size: 20px;
    }
  }

  @media (max-width: 576px) {

    .section-title {
      margin-bottom: 40px;
    }
  }