
/* ============================
   TOPO: Galeria Swiper + "Visit Us"
   ============================ */

.int-center-top {
  /* padding: 64px 0 40px; */
}

.int-center-top .top-split {
  display: flex;
  align-items: center;
  gap: 110px;
}

.int-center-top .top-left {
  flex: 0 0 35%;
  max-width: 45%;
}

.int-center-top .top-right {
  flex: 0 0 65%;
  max-width: 45%;
}

/* Galeria principal */
.center-gallery {
  width: 100%;
}

.center-gallery .gallery-main {
  border-radius: 14px;
  overflow: hidden;
  
  margin-bottom: 10px;
  height: 410px;
}

.center-gallery .gallery-main .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

/* Thumbs abaixo */
.center-gallery .gallery-thumbs {
  margin-top: 4px;
}

.center-gallery .gallery-thumbs .swiper-slide {
  opacity: 0.6;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.center-gallery .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  box-shadow: 0 0 0 2px #004f62;  
}

.center-gallery .gallery-thumbs img {
  width: 100%;
  height: auto;
  display: block;
}

 
.int-center-top .top-right h2 {
  margin-top: 8px;
  margin-bottom: 8px;
  margin-bottom: 10px;
  color: var(--main, #004F62);

/* h1 */
  font-family: Barlow;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.int-center-top .top-right .subtitle-bar {
  margin-bottom: 16px;
}

.int-center-top .top-right p {
  /* max-width: 360px; */
  color: var(--main, #004F62);
  font-family: Barlow;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--dark, #424242);
  font-family: Barlow;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}

 
.center-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 9999;
}

.center-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.center-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0,0,0,.4);
}

.center-lightbox .lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  background: #ffffff;
  color: #333;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}

 

.center-access {
  /* padding: 56px 0 80px; */
}

.center-access .center-access-grid {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  gap: 0px;
}

.center-access .access-text {
  flex: 0 0 55%;
  max-width: 55%;
}

.center-access .access-media {
  flex: 0 0 45%;
  max-width: 45%;
  width: 100%;
  align-self: center;
}

/* vÃƒÂ­deo 16:9 responsivo */
.center-access .ratio-16x9 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.center-access .ratio-16x9 iframe,
.center-access .ratio-16x9 video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

/* ============================
   RESPONSIVO
   ============================ */

@media (max-width: 960px) {

  .int-center-top .top-split,
  .center-access .center-access-grid {
    flex-direction: column;
    gap: 60px;
  }

  .int-center-top .top-left,
  .int-center-top .top-right,
  .center-access .access-text,
  .center-access .access-media {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .int-center-top .top-right p {
    max-width: 100%;
  }

  .center-access {
    padding-bottom: 56px;
  }
}

@media (max-width: 768px) {

  .int-center .int-center-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.center-gallery .gallery-thumbs .swiper-slide {
  max-height: 120px;
}
}

@media (max-width: 600px) {

  .int-center .int-center-grid {
    grid-template-columns: 1fr;
  }

  .int-center-top {
    padding-top: 40px;
  }

  .center-access {
    padding-top: 40px;
  }
}
 
.center-gallery .gallery-main {
  position: relative;
  max-height: 420px;            
}

.center-gallery .gallery-main .swiper-slide {
  height: 420px;                
}

.center-gallery .gallery-main .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;            
  display: block;
  cursor: pointer;
}

 
.center-main-prev,
.center-main-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.9);
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  color: #004f62;  
}

 .center-main-prev::before,
.center-main-next::before {
  display: inline-block;
}

.center-main-prev {
  left: 12px;
}

.center-main-prev::before {
    font-family: "Font Awesome 6 pro";
  font-weight: 900;  
  content: "\f053"; 
  font-size: 18px;   
  color: #004f62;   
}

.center-main-next {
  right: 12px;
}

.center-main-next::before {
  font-family: "Font Awesome 6 pro";
  font-weight: 900;  
  content: "\f054";  
  font-size: 18px;   
  color: #004f62;   
}

 
.center-gallery .gallery-thumbs .swiper-slide {
  max-height: 80px;
}

.center-gallery .gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

 
.center-lightbox .lb-prev,
.center-lightbox .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  color: #004f62; /* ajusta pra cor da marca */
  z-index: 10000;
}

.center-lightbox .lb-prev {
  left: 24px;
}

.center-lightbox .lb-next {
  right: 24px;
}

/* ====== VIDEO DO CENTER PASS (YouTube / Vimeo) ====== */

 
.center-access .access-video {
  position: relative;
  width: 100%;
  max-width: 800px;           
  margin: 0 auto;
  aspect-ratio: 16 / 9;      
  background: #000;
  overflow: hidden;
}


@supports not (aspect-ratio: 16 / 9) {
  .center-access .access-video {
    padding-top: 56.25%;     /* 16:9 */
  }
  .center-access .access-video iframe,
  .center-access .access-video video {
    position: absolute;
    inset: 0;
  }
}
 
.center-access .access-video iframe,
.center-access .access-video video {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

 .center-access .access-video {
 
  border-radius: 20px;
}

.access-video-text {margin-top:20px;margin-left: 0;text-align: justify;}
.access-video-text h3 {
margin-bottom: 8px;
    color: var(--main, #004F62);
    font-family: Barlow;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
 .access-video-text .subtitle-bar {
    justify-self: left;
    width: 70%;
}