@charset "UTF-8";
body {
  font-family: "Mic 32 New Rounded W00 Light";
  font-family: Mic 32 New Rounded W00 Medium;
  background-color: #f9f9f9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

hr {
  width: 90%;
  max-width: 1280px;
  margin: auto;
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, #cdcfce, transparent);
  box-shadow: 0 0 8px rgba(7, 149, 168, 0.6);
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}

h1.titulo-interna {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 36px;
  padding: 60px 0px 30px 0px;
  color: #7D796F;
}
h1.titulo-interna strong {
  font-weight: 800;
  color: #7D796F;
}

.container-mid {
  width: 95%;
  max-width: 1360px;
  margin: auto;
}

.container-full {
  width: 100%;
  max-width: 1440px;
  margin: auto;
}

.container-full2 {
  width: 100%;
  max-width: 1940px;
  margin: auto;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: linear-gradient(180deg, #0c3c60, #021b2f);
  padding: 20px 30px;
}
header .conteudo {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1150px) {
  header .conteudo {
    grid-template-columns: 1fr 1fr;
  }
}
header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo img {
  max-height: 90px;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
header nav ul {
  display: flex;
  gap: 30px;
}
header nav ul li {
  list-style: none;
}
header nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
  text-transform: uppercase;
}
header nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #02abdf;
  transition: 0.3s;
  transform: translateX(-50%);
}
header nav ul li a:hover::after {
  width: 100%;
  color: #02abdf;
}
header .idiomas {
  position: relative;
}
header .idiomas select {
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 6px 30px 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s;
  backdrop-filter: blur(5px);
}
header .idiomas select:hover {
  border-color: #00c6ff;
  color: #00c6ff;
}
header .idiomas select:focus {
  outline: none;
  border-color: #00c6ff;
  box-shadow: 0 0 0 2px rgba(0, 198, 255, 0.2);
}
header .idiomas::after {
  content: "▼";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #fff;
  pointer-events: none;
}
header .social {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .social ul {
  display: flex;
  gap: 15px;
}
header .social ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
header .social ul li i {
  font-size: 20px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  transition: 0.4s ease;
}
header .social ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: 0.3s;
}
header .social ul li span {
  font-size: 13px;
}
header .social ul li:hover {
  transform: translateX(5px);
}
header .social ul li:hover i {
  transform: scale(1.2) rotate(8deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
header .social ul li:hover a {
  color: #e1306c;
}
header .menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
header .menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  transition: 0.3s;
}

@media (max-width: 768px) {
  header .menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  header .menu-toggle span {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    transition: 0.4s ease;
  }
  header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9254901961);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  header nav ul {
    flex-direction: column;
    gap: 20px;
  }
  header nav ul li a {
    font-size: 20px;
    color: #02abdf;
  }
  header nav.active {
    right: 0;
  }
  header .social {
    position: fixed;
    right: -100%;
    bottom: 40px;
    width: 70%;
    text-align: center;
    transition: 0.4s ease;
  }
  header .social ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  header .social li a {
    color: #02abdf !important;
  }
  header.menu-open nav {
    right: 0;
  }
  header.menu-open .social {
    right: 0;
  }
  header.menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  header.menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
header.menu-open .social li {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s forwards;
}

header.menu-open .social li:nth-child(1) {
  animation-delay: 0.2s;
}

header.menu-open .social li:nth-child(2) {
  animation-delay: 0.3s;
}

header.menu-open .social li:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.banner {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}
.banner .banner-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.banner .banner-img img,
.banner .banner-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .banner-img .banner-img video {
  filter: brightness(1.2) contrast(1.8) saturate(2.4) hue-rotate(3deg);
}
.banner .banner-img video {
  position: relative;
  z-index: 1;
}
.banner .banner-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  /* efeito pontilhado */
  background-image: radial-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 6px 6px;
}
.banner .banner-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.219);
  z-index: 3;
}
.banner .grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
  color: #fff;
}
.banner .grid .texto {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner .grid .texto h1 {
  font-size: 48px;
  margin-bottom: 15px;
  animation: fadeUp 1s ease;
}
.banner .grid .texto p {
  font-size: 18px;
  animation: fadeUp 1.2s ease;
}

.formulario {
  display: flex;
  justify-content: center;
}

.form-reserva {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 12px;
  max-width: 390px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.form-reserva .campo {
  display: flex;
  flex-direction: column;
}
.form-reserva .campo label {
  font-size: 13px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}
.form-reserva .campo input,
.form-reserva .campo select,
.form-reserva .campo textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}
.form-reserva .campo input:focus,
.form-reserva .campo select:focus,
.form-reserva .campo textarea:focus {
  border-color: #25d366;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
  outline: none;
}
.form-reserva .campo textarea {
  height: 80px;
  resize: none;
}
.form-reserva button {
  background: linear-gradient(45deg, #25d366, #1ebe5d);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.form-reserva button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .banner {
    height: auto;
    padding: 100px 20px;
  }
  .banner .grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }
  .banner .texto h1 {
    font-size: 28px;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.titulos {
  background: #f9f9f9;
  padding: 40px 0;
}
.titulos h2 {
  background: #f9f9f9;
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  position: relative;
  margin: 0 30px;
  color: #0c3c60;
}
.titulos h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
.titulos h2 {
  animation: fadeUpTitle 0.8s ease;
}
@keyframes fadeUpTitle {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flat {
  padding: 80px 20px;
  background: #f9f9f9;
}
.flat .container {
  display: flex;
  gap: 40px;
  align-items: center;
}
.flat .flat-galeria {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 300px;
}
.flat .flat-galeria .slides {
  position: relative;
  height: 400px;
}
.flat .flat-galeria .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.6s ease;
}
.flat .flat-galeria .slide.active {
  opacity: 1;
  z-index: 2;
}
.flat .flat-galeria .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flat .flat-galeria .controls {
  position: absolute;
  width: 100%;
  top: 50%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 3;
}
.flat .flat-galeria .controls span {
  cursor: pointer;
  font-size: 30px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 5px 12px;
  border-radius: 5px;
}
.flat .flat-info {
  flex: 1;
}
.flat .flat-info h2 {
  font-size: 32px;
  margin-bottom: 10px;
}
.flat .flat-info p {
  margin-bottom: 20px;
}
.flat .flat-info .comodidades {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.flat .flat-info .comodidades li {
  display: flex;
  gap: 10px;
}
.flat .flat-info .comodidades li i {
  color: #25d366;
}
@media screen and (max-width: 600px) {
  .flat .flat-info .comodidades {
    grid-template-columns: repeat(2, 1fr);
  }
}

.reserva-flat .bookingForm {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}
.reserva-flat .bookingForm .campo {
  display: flex;
  flex-direction: column;
}
.reserva-flat .bookingForm .campo input,
.reserva-flat .bookingForm .campo select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.reserva-flat .bookingForm .campo.full {
  grid-column: span 2;
}
.reserva-flat .bookingForm button {
  background: #25d366;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .flat .container {
    flex-direction: column;
  }
  .flat-galeria {
    width: 100%;
    min-height: 250px;
  }
  .flat-galeria .slides {
    height: 250px;
  }
  .bookingForm {
    grid-template-columns: 1fr !important;
  }
}
.galeria {
  padding: 80px 0px;
  background: #f9f9f9;
}
.galeria .grid-galeria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
}
.galeria .grid-galeria .item {
  overflow: hidden;
  border-radius: 0px;
  cursor: pointer;
  position: relative;
}
.galeria .grid-galeria .item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.5s;
}
.galeria .grid-galeria .item:hover img {
  transform: scale(1.1);
}
.galeria .grid-galeria .item.hidden {
  display: none;
}
.galeria .btn-center {
  text-align: center;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.galeria .btn-center .btn-ver-mais {
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.galeria .btn-center .btn-ver-mais:hover {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}
.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  transition: 0.3s;
}
.lightbox .prev {
  left: 30px;
}
.lightbox .next {
  right: 30px;
}
.lightbox .prev:hover,
.lightbox .next:hover {
  color: #00c6ff;
  transform: translateY(-50%) scale(1.2);
}
.lightbox .lightbox .prev,
.lightbox .lightbox .next {
  z-index: 1000;
}
.lightbox.active {
  display: flex;
}

@media (max-width: 768px) {
  .galeria .grid-galeria {
    grid-template-columns: repeat(2, 1fr);
  }
  .galeria .grid-galeria .item {
    display: none;
  }
  .galeria .grid-galeria .item:nth-child(-n+2) {
    display: block;
  }
  .galeria .grid-galeria img {
    height: 160px;
  }
  .galeria .btn-ver-mais {
    display: block;
  }
}
section.parallax {
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.parallax .parallax-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #f9f9f9;
}
section.parallax .parallax-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform: translateY(0);
  will-change: transform;
}
section.parallax .parallax-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}
section.parallax .parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
}
section.parallax .parallax-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 600;
}
section.parallax .parallax-content p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.5;
}
section.parallax .parallax-content .btn-parallax {
  display: inline-block;
  padding: 12px 28px;
  background: #ffffff;
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}
section.parallax .parallax-content .btn-parallax:hover {
  background: #000;
  color: #fff;
}

section.galeria-video {
  padding: 80px 0;
}
section.galeria-video .grid-video {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
section.galeria-video .item-video {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  /* 🔥 FORMATO 9:16 */
  aspect-ratio: 9/16;
  /* 🔥 CENTRALIZAÇÃO */
  display: flex;
  align-items: center;
  justify-content: center;
}
section.galeria-video .item-video img,
section.galeria-video .item-video video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
section.galeria-video .item-video .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #fff;
  z-index: 2;
}
section.galeria-video .item-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

/* LIGHTBOX */
.video-lightbox {
  position: fixed;
  inset: 0;
  display: none; /* inicia escondido */
  z-index: 999;
}
.video-lightbox.ativo {
  display: flex; /* 🔥 só aqui vira flex */
  align-items: center;
  justify-content: center;
}
.video-lightbox .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}
.video-lightbox .content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-lightbox video {
  max-width: 380px;
  width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  margin-top: 80px;
}
.video-lightbox .fechar {
  position: absolute;
  top: 40px;
  font-size: 60px;
  color: #fff;
  cursor: pointer;
}

.ver-mais-wrap {
  text-align: center;
  margin-top: 40px;
}
.ver-mais-wrap button {
  padding: 12px 30px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.ver-mais-wrap button:hover {
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .grid-video {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .grid-video {
    grid-template-columns: 1fr;
  }
}
.sanfona .item-sanfona {
  border-bottom: 1px solid #ddd;
}

/* título */
.sanfona .titulo {
  cursor: pointer;
  padding: 15px;
  background: #f5f5f5;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* seta */
.sanfona .seta {
  width: 10px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg); /* para baixo */
  transition: 0.3s;
}

/* seta aberta */
.sanfona .titulo.ativo .seta {
  transform: rotate(-135deg); /* para cima */
}

/* conteúdo animado */
.sanfona .conteudo {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 15px;
}

/* quando abre */
.sanfona .conteudo.ativo {
  padding: 15px;
}

.sanfona .conteudo.ativo p {
  text-align: justify;
  padding-bottom: 10px;
}

section.politicas {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
section.politicas h2 {
  padding: 30px 0;
}

.footer {
  background: linear-gradient(180deg, #0c3c60, #021b2f);
  color: #fff;
  padding: 60px 20px;
}
.footer .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.footer .footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .footer-col h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.footer .footer-col p {
  font-size: 14px;
  color: #ccc;
}
.footer .footer-col img {
  max-width: 150px;
  margin-bottom: 10px;
}
.footer .center {
  align-items: center;
  text-align: center;
}
.footer .social li {
  list-style: none;
}
.footer .social li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.footer .social li a i {
  font-size: 18px;
}
.footer .social li a:hover {
  color: #00c6ff;
}
.footer .bookingFormFooter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .bookingFormFooter input,
.footer .bookingFormFooter select {
  padding: 8px;
  border-radius: 5px;
  border: none;
}
.footer .bookingFormFooter button {
  background: #25d366;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}
.footer .bookingFormFooter button:hover {
  background: #1ebe5d;
}

@media (max-width: 768px) {
  .footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

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