
:root {
    --primary-color: #008b74;
    --secondary-color: #e67e22;
    --bg-color: #fefbf2;
    --text-color: #333;
    --white: #ffffff;
    --font-serif: 'Kalnia', serif;
    --font-sans: 'Montserrat', sans-serif;
}

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

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    margin: 0;
  overflow-x: hidden;
    
}


html {
            scroll-behavior: smooth;
        }

.minha-lista {
  list-style: none;
  padding-left: 0;
}


 .img-responsive{


  max-width: 100%; /* Largura máxima não passa de 100% do pai */
  height: auto;    /* Altura ajusta proporcionalmente */
  display: block;  /* Remove espaçamento indesejado abaixo da imagem */
}




/* corpo geral */ 

.corpo {

    font-size: 16px;
    text-align: center;
    padding-bottom: 150px;;
}


/* Coqueiro decorativo na home */

.container-home{
max-width: 600px;

}


.coqueiro-home {
    position: absolute;
    right: 0;
    bottom: -60px; /* 👈 invade 10px na próxima section */
    width: 220px;
    max-width: 28vw;
    z-index: 2; /* 👈 garante que fique por cima */
    pointer-events: none;
    opacity: 0.7;
}

.coqueiro-home {
    right: 0;
    bottom: -1px;
    width: 269px;
    max-width: 52vw;
}

.voluntarias-mobile-heading,
.voluntarias-title-mobile,
.servicos-mobile-heading,
.servicos-title-mobile,
.sobre-mobile-heading,
.sobre-title-mobile {
    display: none;
}

.about-decor {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    pointer-events: none;
    z-index: 0;
}

.about {
    position: relative;
    overflow: visible;
}

.hangloose {
  display: inline-block;
  animation: balanco 2s ease-in-out infinite;
  transform-origin: bottom center; /* importante pra girar natural */
}

@keyframes balanco {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(10deg); }
  40%  { transform: rotate(-8deg); }
  60%  { transform: rotate(6deg); }
  80%  { transform: rotate(-4deg); }
  100% { transform: rotate(0deg); }
}
.section-title {
  font-size: 2rem;
  color: #000000; /* verde como na imagem */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  font-family: kalnia;
  font-weight: 400;
}


.item-home {
    color: #008b74;
    position: relative;
    padding-bottom: 8px;
    transition: all 0.3s ease;
        display: inline-block;
}

.item-home::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 10px;
    background: url('../img/home.svg') repeat-x;
    background-size: 50px 10px;
    transition: width 0.3s ease;
}

.item-home:hover::after {
    width: 100%;
   
}
.item-home:hover{
   
     color: #008b74;
     transform: scale(1.05);
}




.menu-item {
    position: relative;
    padding-bottom: 8px;
    transition: all 0.3s ease;
    display: inline-block;

    line-height: 1;
    vertical-align: middle;
}

.menu-item:hover {
    transform: scale(1.05);
}

.menu-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(100%);

    width: 0;
    height: 10px;

    background-repeat: repeat-x;
    background-size: 50px 10px;

    transition: width 0.3s ease;
}

.menu-item:hover::after {
    width: 100%;
}



.item-dicas {
     color: #FEC600;
    position: relative;
    padding-bottom: 8px;
    transition: all 0.3s ease;
    display: inline-block;;
}

.item-dicas::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 10px;
    background: url('../img/dicas.svg') repeat-x;
    background-size: 50px 10px;
    transition: width 0.3s ease;
}

.item-dicas:hover::after {
    width: 100%;
   
}
.item-dicas:hover{
   
     color: #FEC600;
     transform: scale(1.05);
     
}







.item-sobre {
    color: #009CBD;
     position: relative;
    padding-bottom: 8px;
    transition: all 0.3s ease;
    display: inline-block;;
}


.item-sobre::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 10px;
    background: url('../img/sobre.svg') repeat-x;
    background-size: 50px 10px;
    transition: width 0.3s ease;
}

.item-sobre:hover::after {
    width: 100%;
    
}

.item-sobre:hover{
    
    color: #009CBD;
    transform: scale(1.05);

}



.item-servicos {
    color: #008b74;
    position: relative;
    padding-bottom: 8px;
    transition: all 0.3s ease;
    display: inline-block;;
}

.item-servicos:hover{

    color: #008b74;
    transform: scale(1.05);
}
.item-servicos::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 10px;
    background: url('../img/servicos.svg') repeat-x;
    background-size: 50px 10px;
    transition: width 0.3s ease;
}

.item-servicos:hover::after {
    width: 100%;
}




.item-suites {
    color: #e67e22;
    position: relative;
    padding-bottom: 12px; /* mais espaço pra onda */

    display: inline-block;
    line-height: 1;

    transition: transform 0.3s ease;
}

/* hover LIMPO */
.item-suites:hover {
    color: #e67e22;
    transform: scale(1.05);
}

/* ondinha corrigida */
.item-suites::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
  color: #e67e22;
    width: 0;
    height: 10px;

    background: url('../img/suites.svg') repeat-x;
    background-size: 50px 10px;
   padding-bottom: 5px; /* diminui espaço */
    transition: width 0.3s ease;
}

.item-suites:hover::after {
    width: 100%;
    
}

.item-suites:hover::after {
    width: 100%;
    
}




.item-contato{
    color: #EC1900;
    position: relative;
    padding-bottom: 12px; /* mais espaço pra onda */

    display: inline-block;
    line-height: 1;

    transition: transform 0.3s ease;
}

/* hover LIMPO */
.item-contato:hover {
   color: #EC1900;
    transform: scale(1.05);
}

/* ondinha corrigida */
.item-contato::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
 color: #EC1900;
    width: 0;
    height: 10px;
background: url('../img/contato.svg') repeat-x;
    background-size: 50px 10px;
   padding-bottom: 2px; /* diminui espaço */
    transition: width 0.3s ease;
}

.item-contato:hover::after {
    width: 100%;
    
}

.item-contato:hover::after {
    width: 100%;
    
}



.item-faq{
      color: #e67e22;
    position: relative;
    padding-bottom: 12px; /* mais espaço pra onda */

    display: inline-block;
    line-height: 1;

    transition: transform 0.3s ease;
}

/* hover LIMPO */
.item-faq:hover {
   color: #e67e22;
    transform: scale(1.05);
}

/* ondinha corrigida */
.item-faq::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
   color: #e67e22;
    width: 0;
    height: 10px;
background: url('../img/faq.svg') repeat-x;
    background-size: 50px 10px;
   padding-bottom: 2px; /* diminui espaço */
    transition: width 0.3s ease;
}

.item-faq:hover::after {
    width: 100%;
    
}

.item-faq:hover::after {
    width: 100%;
    
}




.item-voluntarias {
    color: #00bcd4;
    position: relative;
    padding-bottom: 12px; /* mais espaço pra onda */

    display: inline-block;
    line-height: 1;

    transition: transform 0.3s ease;
}

/* hover LIMPO */
.item-voluntarias:hover {
       color: #00bcd4;
    transform: scale(1.05);
}

/* ondinha corrigida */
.item-voluntarias::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
      color: #00bcd4;
    width: 0;
    height: 10px;
 background: url('../img/voluntarias.svg') repeat-x;
    background-size: 50px 10px;
   padding-bottom: 2px; /* diminui espaço */
    transition: width 0.3s ease;
}

.item-voluntariashover::after {
    width: 100%;
    
}

.item-voluntarias:hover::after {
    width: 100%;
    
}






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

/* Header */
.header {
    background-color: var(--white);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
 
     box-shadow: 0px 4px 4px #b1b1b1;
}

.header-servicos {
    padding: 0;
    box-shadow: none;
}

.header-servicos .header-container {
    height: 56px;
    min-height: 56px;
    padding-top: 0;
    padding-bottom: 0;
}

.header-servicos .nav-left,
.header-servicos .nav-right,
.header-servicos .logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-servicos .logo img {
    height: 56px;
    width: auto;
    margin: 0;
    display: block;
}

.header-servicos nav a {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  
}

.header nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 139, 116, 0.1);
    cursor: pointer;
    flex-direction: column;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header.menu-open .menu-toggle {
    background: rgba(0, 139, 116, 0.18);
}

.header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

 
 

.logo img {
   height: 117px;
    width: 104px;
  display: block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo img:hover {
  transform: scale(1.04);
}

.footer-logo img {
   height: 117px;
    width: 104px;
    display: block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
 

.footer-logo img:hover {
  transform: scale(1.04);
}
/* Hero Section */
.hero {
  position: relative;
  height: 95vh;
  min-height: 500px;
  overflow: hidden; /* 👈 trava qualquer vazamento */
  object-position: top; /* 👈 sobe a imagem */
}

.hero-servicos {
  height: 78vh;
  min-height: 420px;
  margin-top: -8px;
  display: block;
  line-height: 0;
}

.hero-bg {
  position: absolute;
  top: -1rem;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center top; /* 👈 sobe a imagem */
}

.hero-bg img {
  width: 100%;
 height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
 
  display: block;
}

.hero-servicos .hero-bg img {
  object-position: top center;
}
.hero-bg-faq img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 👈 mostra a imagem inteira */
  object-position: center; /* 👈 centraliza */
  display: block;
}
.booking-bar {
    
    bottom: 15px;
    left: 0;
    right: 0;
    z-index: 10;
       
    object-position: top center;
    position: absolute;
    bottom: -50px; /* 👈 joga pra fora da hero */
    left: 0;
    right: 0;
    z-index: 10;
    padding: 95px;
    bottom: 35px; /* 👈 sobe */
    opacity: 0.9;
}

.booking-form {
    background-color: rgba(255, 255, 255, 0.95);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(280px, 250px);
    font-family: var(--font-sans);
  
    border-radius: 5px;
    box-shadow: 0px 4px 4px #b1b1b1;
    align-items: center;
    gap: 0;
        margin-bottom: 0;
    max-width: 1100px;
    margin: 0 auto;

    
}
.booking-form input,
.booking-form select {
    height: 40px; /* 👈 controla altura dos campos */
    font-size: 14px;
}

.form-group {
    padding: 0 20px;
    position: relative;
    min-height: 74px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-group:not(:last-child) {
    border-right: 1px solid rgba(0,0,0,0.12);
}

.form-group::after {
    content: '▼';
    position: absolute;
    right: 22px;
    bottom: 20px;
    font-size: 0.8rem;
    color: var(--primary-color);
    pointer-events: none;
}

.form-group label {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    color: #888;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-value {
  /*  display: flex; */
    align-items: baseline;
    gap: 6px;
}

.form-value__number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    font-family:montserrat;
}

.form-value__suffix {
    font-size: 1rem;
    font-weight: 00;
    color: #555;
    align-self: flex-end;
    margin-bottom: 6px;
      font-family:montserrat;
}

.booking-native-input {
    position: absolute;
    width: 1px;
    height: 1px;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.booking-native-input::-webkit-calendar-picker-indicator {
    display: none;
}

.booking-native-select {
    appearance: none;
    border: 0;
}

.booking-arrow-trigger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 3;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 139, 116, 0.1);
    padding: 55px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-left: 1px solid rgba(0,0,0,0.12);
}

.form-submit .btn-primary {
    width: 100%;
    padding: 14px 0;
    border-radius: 8px;
    background-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 9px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #006e5c;
}

.booking-widget-panel {
    max-width: 1100px;
    margin: 18px auto 0;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.booking-widget-panel[hidden] {
    display: none;
}

.booking-widget-panel .hbe-bws {
    width: 100%;
}

.booking-widget-panel #hbe-bws-page,
.booking-widget-panel #hbe-bws-wrapper {
    width: 100%;
}

.home-highlights {
    margin-top: -18px;
    padding: 74px 0 18px;
    background: linear-gradient(180deg, rgba(255, 251, 242, 0.96) 0%, #fefbf2 100%);
}

.home-highlights__container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.home-highlight {
    padding: 18px 16px 20px;
    border-radius: 18px;
    border: 1px solid rgba(88, 174, 178, 0.14);
    background: transparent;
    padding-right: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.home-highlight__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin-bottom: 18px;
    color: #58aeb2;
    font-size: 2.25rem;
}

.home-highlight:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(88, 174, 178, 0.18);
    box-shadow: 0 16px 30px rgba(21, 55, 52, 0.10);
}

.home-highlight__title {
    margin: 0 0 10px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1c2f2b;
}

.home-highlight__text {
    margin: 0;
    max-width: 24ch;
    color: #566866;
    font-size: 0.95rem;
    line-height: 1.65;
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(12, 33, 31, 0.66);
    backdrop-filter: blur(6px);
}

.booking-modal[hidden] {
    display: none;
}

.booking-modal__dialog {
    position: relative;
    width: min(1120px, 100%);
    max-height: calc(100vh - 48px);
    padding: 28px 20px 20px;
    overflow-y: auto;
    background: #fff7f1;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.booking-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #f86300;
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.booking-modal__title {
    margin: 0 0 12px;
    padding-right: 56px;
    color: #0d5c51;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.booking-modal .booking-widget-panel {
    max-width: none;
    margin-top: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

body.booking-modal-open {
    overflow: hidden;
}

/* About Section */
.about {
    position: relative;
     padding: 0px 0 30px;
}

.about-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    pointer-events: none;
}

.about-wave {
    position: absolute;
    top: -80px;
    left: 0;
    width: 240px;
    max-width: 35%;
}

.section-title-center {
    display: flex;
    justify-content: center;
    padding: 180px 20px 70px;
}

.section-title-center img {
    max-width: 500px;
    width: 100%;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-top: 65px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    
}

.about-content {
    flex: 1.2;
}

.section-title-home {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}
 
.highlight {
    font-weight: 00;
    color: #F86300;
    margin-bottom: 15px;
}
.about-content strong {
    font-weight: 00;
    color: #F86300;
    margin-bottom: 15px;
}
.about-content p {
    margin-bottom: 20px;
    color: #555;
}

.btn-outline {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
       color:#fefbf2;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: Montserrat;
}

.btn-outline:hover {
    border-color: #006e5c;
    background-color: #fefbf2;
    color: #006e5c;;
    
    border: 2px solid #006e5c;
}
















/* Suites Section */
.galeria-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.imagem-principal img {
  width: 100%;
  height: 100%;
  border: 10px solid #eee;
  border-radius: 18px;
  object-fit: cover;
  display: block;
}

/* SETA ESQUERDA */
.seta.esquerda {
  position: absolute;
  left: -60px; /* joga bem pra esquerda */
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
}

.seta img {
  width: 35px;
}




.galeria-suite {
  background: #e6d2bf;
  padding: 40px 20px;
  text-align: center;
}

.galeria-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.imagem-principal img {
  width: 100%;
  height: 100%;
  border: 10px solid #eee;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.imagem-principal {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 18px;
}

/* SETAS */
.seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 188, 212, 0.18);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  z-index: 6;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.seta::before {
  content: '';
  position: absolute;
  inset: 13px;
  border-radius: 999px;
  background: rgba(31, 79, 91, 0.18);
  transition: background-color 0.2s ease;
}

.seta img {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.seta.esquerda {
  left: -40px;
}

.seta.direita {
  right: -40px;
}

.seta:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
  filter: brightness(1.03);
}

.seta:active {
  background: rgba(255, 255, 255, 0.28);
}

.seta:active::before {
  background: rgba(255, 255, 255, 0.78);
}

/* MINIATURAS */
.miniaturas {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.miniaturas img {
  width: 100%;
  aspect-ratio: 1 / 1;   /* mantém todas quadradas */
  object-fit: cover;     /* corta sem distorcer */
  cursor: pointer;
  border: 5px solid #eee;
  transition: 0.3s;
}

.miniaturas img:hover {
  transform: scale(1.05);
}




.suites-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.suite-card {
    display: flex;
    background-color: #FFFCF3;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.suite-img {
    flex: 1;
}

.suite-img img {
    width: 100%;
 /*   height: 100%;*/
    object-fit: cover;
    border-radius: 0px;
    padding: 10px;

}

.suite-imagem-left{
      width: 100%;
  
   


    float: left; /* ou */
  text-align: left; /* dependendo do conteúdo */
  margin-left: 0; /* garante que não haja espaço extra */


}

.suite-info {
    flex: 1.5;
    padding: 0px;
    text-align: left;
}

.suite-info h3 {
    font-family: var(--font-serif);
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 26px;
}

.suite-info p {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.btn-booking {
    background-color: #00bcd4;
    color: var(--white);
    border: 1px solid transparent;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    box-sizing: border-box;
    font-family: Montserrat;
}

.btn-booking:hover {
    border-color: #00bcd4;
     background-color: #fffcf3;
    color: #00bcd4;
}

.btn-booking.secondary {
    background-color: var(--secondary-color);
    border: 1px solid transparent;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    margin-bottom: 20px;
}

.btn-booking.secondary:hover {
    border-color: #e67e22;
    background-color: #fffcf3;
    color: #e67e22;
}

.suites-gallery img {
    width:120%;
    height: 100%;
    object-fit: cover;
    
}

 


/* Reviews */
.google-reviews {

    text-align: center;
 
   background-color: #ffffff;
   padding-top: 15px;
    box-shadow: 0px 4px 4px #00000040;
}

.google-header {
    margin-bottom: 40px;
}

 .hMUqhT {
    border-radius: inherit;
    background-color: #ffffff;
}

.hrcMQT {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    background-color: #ffffff;
    padding: 24px;
    gap: 12px;
    justify-content: center;
    text-align: center;
}

.elfsight-app-c262c21b-5cea-48fc-b6af-a5ae86463540,
.elfsight-app-c262c21b-5cea-48fc-b6af-a5ae86463540 > div,
.elfsight-app-c262c21b-5cea-48fc-b6af-a5ae86463540 [class*="HeaderContainer__Inner"],
.elfsight-app-c262c21b-5cea-48fc-b6af-a5ae86463540 [class*="HeaderComponent"],
.elfsight-app-c262c21b-5cea-48fc-b6af-a5ae86463540 [class*="WidgetBackground__Container"],
.elfsight-app-c262c21b-5cea-48fc-b6af-a5ae86463540 [class*="ReviewWidgetBackground"],
.elfsight-app-c262c21b-5cea-48fc-b6af-a5ae86463540 [class*="Card__Container"],
.elfsight-app-c262c21b-5cea-48fc-b6af-a5ae86463540 [class*="Container__Styled"],
.elfsight-app-c262c21b-5cea-48fc-b6af-a5ae86463540 [class*="Background"] {
    background-color: #ffffff !important;
}

.google-title{
 padding-top: 80px;
    text-align: center;
    max-width: 15%;

}
.booking-title{
    padding-top: 120px;
    text-align: center;
    max-width: 18%;
}

.reviews-section{
  padding: 20px;
  background:#f0fcff;
   
    box-shadow: 0px 4px 4px #00000040;
}

.reviews-container{
  max-width:1100px;
  margin:auto;
  padding-bottom: 45px;
}

.reviews-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:40px;
}

.reviews-header h2{
  font-size:32px;
}

.review-score{
       display: grid;
    gap: 10px;
    text-align: center;
    align-content: stretch;
    justify-content: center;
    justify-items: center;;
}

.score{
  background:#003580;
  color:white;
  font-weight:bold;
  font-size:26px;
  padding:12px 16px;
  border-radius:8px;
  max-width: 80px;
  text-align: center;
  align-content: center;
}

.score-text strong{
  display:block;
  font-size:18px;
}

.score-text span{
  font-size:14px;
  color:#666;
}

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.review-card{
  background:white;
  padding:25px;
  border-radius:12px;
  box-shadow:0 4px 15px rgba(0,0,0,0.06);
}

.review-text{
  font-size:15px;
  line-height:1.6;
  margin-bottom:20px;
}

.review-author strong{
  display:block;
}

.review-author span{
  font-size:13px;
  color:#777;
}

.reviews-button{
  margin-top:40px;
  text-align:center;
    padding-top: 20px;
}

.reviews-button a{
  background:#0071c2;
  color:white;
  padding:14px 28px;
  border-radius:8px;
  text-decoration:none;

 
}

.reviews-button a:hover{
  background:#F96300;
}

@media(max-width:900px){

.reviews-grid{
grid-template-columns:1fr;
}

.reviews-header{
flex-direction:column;
gap:20px;
}

}
/* SECTION AVALIAÇÕES */

.avaliacoes-google {
  position: relative;
 
  padding: 0px 20px;
  text-align: center;
  overflow: hidden;
}

.avaliacoes-container {
 
  width: 100%;
  margin: auto;
  text-align: center;
  padding: 150px 50px;
}

.avaliacoes-subtitulo {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 40px;
  color: #333;
}

.google-avaliacao img {
  width: 120px;
  margin-bottom: 15px;
}
/* SECTION CLIENTES */

.clientes-section{
  position: relative;
   
 /* padding: 60px 80px;*/
  overflow: hidden;
}
.clientes-section2{
  position: relative;
   
   
  overflow: hidden;
  height: 340px;
  background-color: #f0fcff;
}
.clientes-container{
  max-width: 1200px;
  margin: auto;
  text-align: center;
 /* padding-top: 75px;*/
  
      
}

/* titulo svg */



.clientes-titulo,
.section-title-center {
    max-width: 500px;
    width: 100%;
    padding-bottom: 90px;
    padding-top: 90px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.clientes-titulo-acomodacoes .section-title-center {
    max-width: 500px;
    width: 100%;
    padding-bottom: 105px;
    padding-top: 90px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}


.clientes-titulo-prancha{

   max-width: 500px;
    width: 61%;
    padding-bottom: 178px;
    padding-top: 10px;

    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-container {
 max-width: 1600px;
  margin: auto;
  text-align: center;
  padding-top: 28px;
  padding-bottom: 18px;
 background-color: #f6f6f6;
  position: relative;
  z-index: 3;
}

.faq-container .clientes-titulo {
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 4;
  filter: drop-shadow(0 10px 24px rgba(248, 99, 0, 0.10));
}

.faq-container + .about {
  padding: 0;
  margin-top: -18px;
  min-height: 0;
}

.faq-container + .about .about-container {
  display: none;
}

.faq-container + .about .about-decor {
  position: relative;
  top: 0;
  height: auto;
}

.faq-container + .about .about-wave {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  max-width: none;
}

.faq-title {
font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: #F86300;;
   
    line-height: 1.2;
    transform: translateY(40px);
transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.praia {
  text-align: left;
  
  justify-content: center;
  align-items: flex-end;
  gap: clamp(300px, 5vw, 150px); /* 👈 espaçamento responsivo */
  background-color: #f6f6f6;
  padding: 0;
  margin: 0;
  padding-top: 30px;
  flex-wrap: nowrap; /* 👈 NÃO deixa quebrar */
}


* controla os itens */
.praia > * {
  width: 100%;
  max-width: 500px;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .praia {
    justify-content: flex-start; /* evita esmagar no centro */
    overflow-x: auto; /* 👈 permite rolar se precisar */
    padding: 0 20px;
  }

  .praia > * {
    min-width: 20px; /* 👈 garante que não fique minúsculo */
    max-width: 80%;
  }
}


 

.coqueiro-laranja-faq {
  max-width: 350px;
 
  justify-content: flex-end; /*  joga pra direita */
  position: absolute; /*  tira do fluxo */
  right: 0;           /* cola na direita */
  bottom: 10;
 top: 1972px;
 
}

.prancha-sol  {
  max-width: 180px;            /* prancha + sol menor */
  justify-content: flex-start;
  left: 0;
  bottom: 10;
  margin-right: auto; 
   top: 1972px;
}


.img sub-titulo{

    width: 10%;
}

/* subtitulo*/
.sub-titulo {
 
  position: relative;
  
 
  display: block; /* garante que o SVG se comporte como bloco */
  margin: 0 auto; /* centraliza horizontalmente */
  max-width: 500px;
 
 padding-bottom: 80px;

transform: translateY(40px);
transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);

}



.fade-in-up-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

 

/* prancha */

.prancha-direita{
  position: absolute;
  right: 140px;
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
  width: 90px;
  opacity: 0.8;
}
 

.prancha-direita {
  animation: flutuar 4s ease-in-out infinite;
}

@keyframes flutuar {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}


.prancha-esquerda {
   bottom: -180px; /* menos negativo = sobe */
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  opacity: 0.8;
  
  z-index: 10; /* 👈 aumenta (pode usar 20, 50 se precisar) */
}
 
.prancha-esquerda {
  animation: flutuar-horizontal 5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes flutuar-horizontal {
  0%   { transform: translateY(-50%) translateX(0); }
  50%  { transform: translateY(-50%) translateX(-8px); }
  100% { transform: translateY(-50%) translateX(0); }
}


.estrela-mar {
  display: inline-block;
  animation: wiggle 3s infinite;
  transform-origin: center;
}

@keyframes wiggle {
  0%   { transform: rotate(0deg) scale(1); }
  20%  { transform: rotate(4deg) scale(1.02); }
  40%  { transform: rotate(-3deg) scale(0.98); }
  60%  { transform: rotate(5deg) scale(1.03); }
  80%  { transform: rotate(-2deg) scale(0.99); }
  100% { transform: rotate(0deg) scale(1); }
}


.caranguejo {
  animation: andar-lateral 7s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes andar-lateral {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(-12px); }
  40%  { transform: translateX(10px); }
  50% { transform: translateX(15px) rotate(2deg); }
  80%  { transform: translateX(6px); }
  100% { transform: translateX(0); }
}

.caranguejo-dicas{
  animation: andar-lateral 7s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes andar-lateral {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(-12px); }
  40%  { transform: translateX(10px); }
  50% { transform: translateX(15px) rotate(2deg); }
  80%  { transform: translateX(6px); }
  100% { transform: translateX(0); }
}





/*voluntarias*/


.voluntarias {
  background-color: #FFFBE9; /* fundo geral da página */
  padding: 40px 20px;
}

.blocos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
   grid-template-columns: repeat(3, minmax(0, 2fr)) minmax(400px, 300px)
}


.bloco {
  max-width: 300px;
  text-align: center;
}

.bloco img {
  width: 620px;
  max-width: 100%;
  height: 609px;
  object-fit: cover;
  margin-bottom: 15px;

}

.voluntarias-cta {
  position: relative;
  margin: 28px auto 0;
  overflow: hidden;
  border-radius: 12px;
  background: #fff8e7;
}

.voluntarias-cta__top {
  position: relative;
  min-height: 104px;
  padding: 26px 40px 0;
}

.voluntarias-cta__icon {
  position: absolute;
  left: 40px;
  bottom: 0px;
  width: 58px;
  height: auto;
  display: block;
  z-index: 3;
}

.voluntarias-cta__bottom {
  position: relative;
  min-height: 250px;
  padding: 46px 24px 54px;
  background: #119f88;
}

.voluntarias-cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.voluntarias-cta__content h2 {
  margin: 0 0 24px;
  color: #fff8e7;
  font-family: "Kalnia", serif;
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-login img {
  display: block;
  max-width: 170px;
  height: auto;
  transition: transform 0.35s ease;
}

.btn-login:hover img {
  transform: scale(1.03);
}

.voluntarias-cta__coqueiro {
  position: absolute;
  right: -10px;
  bottom: -16px;
  width: min(320px, 34vw);
  pointer-events: none;
}

 
 


.voluntarias-title {
font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: #009478;;
   
    line-height: 1.2;
    transform: translateY(40px);
transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ajustes para mobile */
@media (max-width: 768px) {
  .voluntarias {
    flex-direction: column;   /* coloca tudo em coluna */
    align-items: center;      /* centraliza horizontalmente */
    text-align: center;       /* centraliza texto */
    padding: 40px 20px;
  }

  .voluntarias-title {
    font-family: var(--font-serif);
    font-size: 33px;
    font-weight: 400;
    color: #009478;
    line-height: 1.2;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .voluntarias-cta {
    margin-top: 18px;
  }

  .voluntarias-cta__top {
    min-height: 88px;
    padding: 22px 24px 0;
  }

  .voluntarias-cta__icon {
    left: 24px;
    bottom: -8px;
    width: 46px;
  }

  .voluntarias-cta__bottom {
    min-height: 220px;
    padding: 38px 20px 44px;
  }

  .voluntarias-cta__content h2 {
    font-size: 1.8rem;
  }

  .voluntarias-cta__coqueiro {
    width: 220px;
    right: -28px;
    bottom: -10px;
  }

  .btn-login img {
    max-width: 150px;
  }
}

/*servicos*/


.section-title-servicos {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: #009478;
    line-height: 1.2;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}


 .onda-laranja {
  width: 100%;
  line-height: 0;
margin-bottom: -5px; /* ajusta conforme necessário */
}

.onda-laranja img {
  display: block;
  width: 100%;
  height: auto;
  margin-top:900px; 
}

.onda {
  position: absolute;
  width: 100%;
  left: 0;
}

.onda-verde {
  top: 0;
}

.onda-laranja {
  top: 40px;
}

.onda-comodidas {
  top: 80px;
}

.onda-servicos {
  top: 120px;
}

.blocos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 200px; /* espaço para as ondas */
  
}

.bloco img {
  max-width: 250px;
  height: auto;
  transition: transform 0.4s ease;
}

.bloco img:hover {
  transform: scale(1.03); /* efeito leve de destaque */
}

 .conteudo img {
  display: block;       /* garante que se comporte como bloco */
  margin: 0 auto 20px;  /* centraliza e dá espaço abaixo */
  max-width: 250px;     /* controla o tamanho da imagem */
  height: auto;
  transition: transform 0.5s ease; /* transição mais longa e suave */
}


 

.blocos-servicos {
  display: grid; /* usa grid */
  grid-template-columns: repeat(3, 1fr); /* 3 colunas iguais */
  gap:20px; /* espaçamento entre os blocos */
  margin-bottom: 160px;
  
}

.bloco-1 {
  max-width: 300px;
  text-align: center;
  margin: 0 auto; /* centraliza dentro da coluna */
}
 
.bloco-1 img {
  width: 100%;   /* ocupa toda a largura do bloco */
  height: auto;

   transition: transform 0.5s ease; /* transição mais longa e suave */
}

.bloco-1 img:hover {
    transform: scale(1.03); /* efeito leve de destaque */

}

.servicos {
  position: relative;       /* permite posicionar elementos absolutos dentro */
  background-color: #EEFFFC;
  
  text-align: center;
}

.onda {
  position: absolute;
  width: 50%;              /* ocupa toda a largura */
  left: 0;
}

.onda-laranja {
  display: block;
  width: 10%;
  height: auto;
  margin-top:900px
}

.conteudo-servicos {
  position: relative;
  z-index: 2;               /* garante que o texto fique acima da onda */
}




/* suites page*/


/* =========================
   BASE
========================= */

 .prancha {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding-top: 40px;

 }
 

.suites-page {
  background-color: #f8e3d1;
}

.container-suites {
   max-width: 1200px;
    margin: auto;
    text-align: center;
  padding-top: 15px;
}

/* =========================
   ELEMENTOS DECORATIVOS
========================= */

.coqueiro-suites {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 28vw;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}
.onda-laranja-suites {
 position: absolute;
  bottom: -180px;   /* fica abaixo da imagem */
  right: -200px;   /* encosta na direita da página */
  width: 290px;
  left: auto;      /* garante que não vai pra esquerda */
  padding-top: 40px;;
}

.onda-laranja-suites-left {
 transform: scaleX(-1);
  position: absolute;
  bottom: -180px;   /* fica abaixo da imagem */
  right: -200px;   /* encosta na direita da página */
  width: 290px;
  left: auto;      /* garante que não vai pra esquerda */
  padding-top: 40px;
    position: absolute;
  top: -180px;
  left: -160px; /* puxa até a borda da tela */
  width: 250px;
  padding-top:70px
}


.onda-verde {
  position: absolute;
  top: -180px;
  left: -160px; /* puxa até a borda da tela */
  width: 250px;
  padding-top:70px
}
/* =========================
   SECTION SUITES
========================= */




.suites {
  padding-top: 60px;
  position: relative;
  background-color: #ffffff;
  text-align: center;
   box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* =========================
   CARD SUITE
========================= */

.suite {
 display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 100px;
    position: relative;
    align-content: space-between;

}

/* =========================
   ORDEM DOS ELEMENTOS
========================= */




.suite-dupla .suite-texto {
  order: 1;
}

.suite-dupla .suite-imagem {
  order: 2;
  margin-right: -180px; /* ajustado */
}

.suite-tripla .suite-imagem {
  order: 1;
  margin-left: -180px; /* ajustado */
}

.suite-tripla .suite-texto {
  order: 2;
}

/* =========================
   IMAGEM
========================= */

.suite-imagem {
  flex: 1;
  text-align: center;
}

.suite-imagem img {
  max-width: 80%;
  border-radius: 8px;
}

/* =========================
   TEXTO
========================= */

.suite-texto-dupla {
  flex: 1;
  padding: 20px;
  text-align: right;
  font-size: 14px;
  position: relative; /* ESSENCIAL pra onda */
  z-index: 2;
}
.suite-texto-dupla h2 {
  font-size: 32px;
  color: #F86300;
  font-family: kalnia;
  font-weight: 440;
   margin-bottom: 25px;
}
.suite-texto-dupla h3 {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
  font-weight: 400;
}

.suite-texto-dupla p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #444;
   margin-bottom: 45px;
  
}

.suite-dupla strong {
  font-size: 14px;
  color: #F86300;
  font-weight: 600;
  
}
.suite-texto {
  flex: 1;
  padding: 20px;
  text-align: left;
  font-size: 14px;
  position: relative; /* ESSENCIAL pra onda */
  z-index: 2;
}

.suite-texto h2 {
  font-size: 32px;
  color: #F86300;
  font-family: kalnia;
  font-weight: 440;
   margin-bottom: 25px;
}

.suite-texto h3 {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  font-weight: 400;
}

.suite-texto p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #444;
   margin-bottom: 45px;
}

.suite-texto strong {
  font-size: 14px;
  color: #F86300;
  font-weight: 600;
}


/* =========================
   BOTÃO
========================= */

.btn-reservar {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn-reservar:hover {
  background: #e05500;
}

 
 
/* sobre */

.sobre{

   position: relative;       /* permite posicionar elementos absolutos dentro */
 background-color: #F0FCFF;
  
  text-align: center;
}

.container-sobre {
  margin: 0 auto;
  max-width: 760px;
}


.section-title-sobre {
font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color:  #0094BC;
    line-height: 1.2;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}



.galeria {
  background: #0094BC; /* fundo azul */
  padding: 95px 45px 60px;
  position: relative;
  color: #fff;
  border-radius: 100px 100px 0 0
}

 


.card{
   width: 580px;      
        
  
  display: flex;
  justify-content: center;
}
 
/* Área do card */
.card-wrapper {
position: relative;
    justify-content: center;
    width: 100%;
}


.card {
display: none;margin: 0 auto;
 
}


.card.active {
display: block;
align-content: center;    
}


.card img {
 width: 80%;
  
    display: block;
    margin: 0 auto; /* 👈 centraliza */
  
}


/* Botão download (imagem) */
.download-.explicacao p {
  display: block;
  margin: 16px auto;
  text-align: center;
  width: 30%;
      
}


.download-btn img {
  display: block;
  margin: 16px auto;
  text-align: center;
    padding-top: 8px;
    width: 25%;
}


/* Setas */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(82, 81, 81, 0.45);
  color: #fff;
  border: none;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 65px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.3s ease, filter 0.3s ease; /* 👈 vem pra cá */
}

.arrow:hover {
  transform: translateY(-50%) scale(1.05); /* 👈 mantém + adiciona zoom */
  filter: brightness(1.2);
}

.arrow.left {
  left:185px;   /* aproxima do card */
}

.arrow.right {
  right: 185px;  /* aproxima do card */
}

@media (max-width: 768px) {

  .card-wrapper {
    position: relative;
  }

 .arrow.left {
  left: -18px;   /* aproxima do card */
}

.arrow.right {
  right: -18px;  /* aproxima do card */
      display: inline-block; /* 👈 ESSENCIAL */
  transition: transform 0.3s ease, filter 0.3s ease;
}
    
.arrow.right:hover {
  transform: translateY(-5px) scale(1.05);
  filter: brightness(1.2);
    transform: translateY(-5px) scale(1.05) !important;
}


    .card{
   width: 250px;      
        

}
 
    
    
    
    
}
@media (max-width: 480px) {
  .arrow-left {
    left: -50px;
  }
  .arrow-right {
    right: -50px;
  }
    
   
}




/* =========================
   CONTATO
========================= */

.contato-lp {
  background: #e8cfc3;
  position: relative;
  padding: 100px 20px 60px;
  text-align: center;
  overflow: hidden;
}

/* título svg */
.titulo-contato {
  width: 120px;
  margin-bottom: 20px;
}

/* onda vermelha */
.onda-vermelha {
  position: absolute;
  left: 0;
  top: 120px;
  width: 180px;
}

/* coqueiro fundo */
.coqueiro-bg {
  position: absolute;
  right: 0;
  opacity: 0.5;
  width: 400px;
  bottom: 0px;

}

/* caranguejo */
.caranguejo {
  position: absolute;
  left: 40px;
  bottom: 0px;
  width: 50px;
}

/* conteúdo */
.contato-content h2 {
  color: #da3718;
  font-size: 40px;  
  font-family: kalnia;
  font-weight: 500;
      padding-top: 40px;
}

.icon-center {
  color: #0094BC;
  margin: 10px 0;
}

.contato-content p {
   color: #da3718;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 28px;
    font-family: Montserrat, sans-serif;
}

.telefone {
  display: block;
    color: #da3718;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 28px;
}

/* botões */
.botoes {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 12.8px;
  font-weight: 600;

  color: #fff;

  border: 2px solid transparent; /* 👈 já define a borda */
  box-sizing: border-box;        /* 👈 evita crescer */
  transition: all 0.3s ease;
}
.btn:hover {
  transform: scale(1.05); /* aumenta 5% */
}
.icone {
  height: 16px;   /* melhor proporção */
  width: auto;
  margin: 0;      /* remove margens que quebram alinhamento */
  padding: 0;     /* remove padding errado */
  display: block;
}
.whatsapp {
  background: #0a7c8c;
  
}
.whatsapp:hover {
 background-color:   #da3718;;
  
}

.reservar {
  background-color:   #da3718;;
  
}
.reservar:hover {
  background: #0a7c8c;
}
/* =========================
   INSTAGRAM
========================= */

.instagram {
  background: #eee;
  text-align: center;
  padding: 10px 20px;
}

.contato-titulo 
{
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding-bottom: 70px;
     margin: 0 auto;  /*  isso centraliza */
  
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}


.titulo-instagram {
  width: 220px;
  margin-bottom: 10px;
}

section.instagram > .titulo-instagram,
.contato > .instagram .titulo-instagram {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.user {
  display: block;
  color: #1aa0c9;
  margin-bottom: 20px;
  font-weight: 600;
}

/* grid */
.grid-instagram {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}

.grid-instagram img {
  width: 100%;

  object-fit: cover;
}



/* dicas*/ 


.dicas {
  position: relative;
  background: #FFFAE6;
  padding: 80px 20px 60px;
  text-align: center;
  overflow: hidden;
}

/* efeito orgânico com clip-path */
.dicas::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 150px;
  background: #FFFAE6;

  clip-path: polygon(
    0% 40%, 10% 50%, 20% 45%, 30% 55%, 40% 48%,
    50% 60%, 60% 50%, 70% 55%, 80% 45%, 90% 52%, 100% 40%,
    100% 0%, 0% 0%
  );
}



.dicas {
  position: relative;
  background: #fff;
  padding: 80px 20px 60px;
  text-align: center;
}

/* topo rasgado */
.rasgo-topo {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 120px;
  background: url("../img/rasgo.png") no-repeat top center;
  background-size: cover;
  pointer-events: none;
}


.dicas h2 {
  font-size: 32px;
  margin-bottom: 15px;
  
}

.dicas p {
  max-width: 600px;
  margin: 0 auto 20px;
  color: #666;
}

.dicas ul {
  list-style: none;
  padding: 0;
}

.dicas li {
  margin: 10px 0;
  font-size: 18px;
}

.dicas {
  position: relative;
  background: #fff;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.conteudo {
  position: relative;
  z-index: 2; /* fica acima dos ícones */
}

.praias {
  padding: 100px 20px;
  background: #f9f9f9;
}

.container {
  max-width: 1130px;
  margin: 0 auto;
}


.dicas-title {
font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: #f4b400;
   
    line-height: 1.2;
    transform: translateY(40px);
transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}


.praias h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.regiao {
  margin-bottom: 50px;
  
}




.regiao h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #f4b400;
  font-family: kalnia;
  font-weight: 500;
}
.praia {
      margin: 0 auto;          /* centraliza horizontalmente */
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #fffae6;

}

.praia h4 {
  font-size: 18px;
  margin-bottom: 8px;
 color: #f4b400;
   text-align: center;
   padding-bottom: 10px;
   
}

.praia span {
  font-size: 18px;
  color: #888;
  font-weight: 400;

}

.praia p {
  color: #555;
  font-size: 12px;
  line-height: 1.5;
      text-align: center; /* centraliza o texto */
}

.praia strong {

   color: #f4b400;
}



.dicas-parte1 {
  position: relative;
  background: #fff;
   
  text-align: center;
  overflow: hidden;
}

.guia-gastronomico {
  padding: 32px 20px 48px;
}

.guia-gastronomico__intro,
.guia-gastronomico__legenda {
  max-width: 760px;
  margin: 0 auto 16px;
  color: #666;
  line-height: 1.7;
  text-align: center;
}

.guia-gastronomico__legenda strong {
  color: #f4b400;
}

.gastronomia-item {
  max-width: 760px;
}

.gastronomia-item h4 {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.gastronomia-distancia {
  font-weight: 600;
  color: #8a6a00;
}
.dicas {
  position: relative;
  background: #fff;
  padding-bottom: 300px; /* espaço extra para ícones no rodapé */
  text-align: center;
  overflow: hidden;
}

.dicas h2 {
  font-size: 32px;
 
   color: #f4b400;
}
.dicas p {
  max-width: 600px;
  margin: 0 auto 20px;
  color: #666;
  line-height: 1.6;
}

.conteudo {
  position: relative;
  z-index: 2; /* acima dos ícones */
}

/* Ícones decorativos */
.decor {
  position: absolute;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  /* animation: flutuar 4s ease-in-out infinite;*/
}

.coqueiro { right: 0; width: 320px;  bottom: -20px; /* 👈 invade 10px na próxima section */}
.caranguejo-dicas{ left: 92%; width: 30px;bottom: -20px;  }
.castelinho { left: 65%; width: 40px;bottom: -20px; /* 👈 invade 10px na próxima section */}
.bicicleta { right: 55%; width: 80px; bottom: -20px;  }
.cadeira { right: 15%; width: 110px; bottom: -20px;  }
.pranchas { left: 10; width: 110px;bottom: -20px;  }

/* Animação suave */
/* @keyframes flutuar {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
*/



.nota {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.nota span {
  font-size: 16px;
  color: #333;
}

.estrelas {
  color: #f4b400;
  font-size: 18px;
}

/* PRANCHA DECORATIVA */



.reviews-slider {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.review-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
  /*  width: 300px; */
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.reviewer img {
    border-radius: 50%;
}

.booking-reviews {
    margin-top: 60px;
}

.booking-score {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 10px;
}

.score-badge {
    background-color: #003580;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Contact Section */
.contato{
background:#f9feff;
text-align:center;


}

.contato-top{
padding:60px 20px 30px;
}

.decor{
display:flex;
align-items:center;
justify-content:center;
gap:15px;
margin-bottom:20px;
}

.decor h3{
font-size:16px;
font-weight:400;
}

.linha{
 text-align: center;
 display: grid;

}

@media (max-width: 768px) {
  .linha {
    display: none !important;
  }
}

.contato h2{
font-size:32px;
margin-bottom:40px;
font-family:kalnia;
font-weight: 500;
}

.contato-info{
display:flex;
justify-content:center;
gap:60px;
padding-bottom:40px;
flex-wrap:wrap;
}

.contato-item{
display:flex;
align-items:center;
gap:10px;
font-size:15px;
font-weight: 600;
text-align: left;
}


.contato-item strong{
font-family: kelnia;
color: #0094BC;
font-size: 30px;
text-align: left;


}
.whats{
margin-left:10px;
background:#17a2b8;
color:white;
padding: 10px 25px;
border-radius:5px;
text-decoration:none;
font-size:12.8px;
text-transform: uppercase;
font-weight: 600;
display: flex;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: space-between;
    align-items: center;
}

.whats:hover{
 
background-color: #e67e22;
color:white;

}

 
.contato-mapa iframe{
display:block;
}

 
/* FAQ Accordion */
.faq {
    padding: 5px 0;
    background-color: #f6f6f6;
}

.text-center {
    text-align: center;
}

.accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.accordion-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #f9f9f9;
}

.accordion-header i {
    transition: transform 0.3s;
    color: var(--secondary-color);
}

.accordion-item.active .accordion-header {
    background-color: #f8e3d1;
    color: var(--secondary-color);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    padding: 0 25px;
}

.accordion-item.active .accordion-content {
    max-height: 1700px; /* Suficiente para o conteúdo */
    padding: 20px 25px;
}

.accordion-content p {
    color: #666;
    margin: 0;
}

/* Footer */
.footer {
    background-color: var(--white);
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    width: fit-content;
    padding-bottom: 12px;
}
.menu-topo{
background:#e9e9e9;
padding:40px 20px;
}

 

/* BOTAO TOPO */

.btn-topo{
position:fixed;
right:30px;
bottom:30px;
width:60px;
height:60px;
background-color:#f4b400;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
transition:.5s;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
z-index: 2000;
 scroll-behavior: smooth;
}

.btn-topo:hover{
transform:translateY(-3px);
 
}


/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Home hero override */
.hero {
    display: flex;
    align-items: flex-start;
}

.hero-bg {
    inset: 0;
    top: -1rem;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
   /* background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.34) 30%, rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.08) 22%, rgba(0, 0, 0, 0) 48%);*/
    z-index: 1;
}

.hero-bg img {
    object-position: center center;
    width: 100%;;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: clamp(72px, 11vw, 130px);
}

.hero-title {
    max-width: 700px;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.38);
}

@media (max-width: 768px) {
    .hero {
        min-height: 420px;
        height: 82vh;
    }

    .hero-bg::after {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.16) 42%, rgba(0, 0, 0, 0.08) 100%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.08) 52%, rgba(0, 0, 0, 0) 100%);
    }

    .hero-bg img {
        width: 108%;
        height: 100%;
        object-fit: cover;
        object-position: 11% top;
    }

    .hero-content {
        padding-top: 88px;
    }

    .hero-title {
        max-width: 350px;
        font-size: 24px;
        line-height: 1.12;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

/* Hero fine tune */
.hero {
    height: clamp(560px, 88vh, 820px);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left 38%;
}

@media (max-width: 1024px) {
    .hero {
        height: clamp(500px, 82vh, 620px);
    }

    .hero-bg img {
        width: 122%;
        height: 70%;
        object-fit: cover;
        object-position: left 38%;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 120px;
        height: 12vh;
    }

    .hero-bg {
        top: 0;
        height: 100%;
    }

    .hero-bg::after {
        inset: 0;
        height: 100%;
    }

    .hero-bg img {
        width: 118%;
        height: 100%;
        object-fit: cover;
        object-position: 8% top;
    }

    .booking-bar {
        padding: 0 14px;
        left: 50%;
        right: auto;
        width: min(100%, 640px);
        transform: translateX(-50%);
    }

    .hero.hero-sobre .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
}

/* Portal voluntarias */

.voluntarias-portal-page {
  background: linear-gradient(180deg, #fff8e7 0%, #f7fffd 100%);
}

.portal-login,
.portal-area {
  min-height: calc(100vh - 180px);
}

.portal-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: #f86300;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portal-login__hero {
  position: relative;
  overflow: hidden;
  padding: 72px 20px 90px;
}

.portal-login__shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.portal-login__intro h1,
.portal-area__hero-content h1 {
  margin: 0 0 18px;
  color: #0d8f79;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  font-weight: 400;
  line-height: 1.02;
}

.portal-login__intro p,
.portal-area__hero-content p {
  max-width: 560px;
  color: #4f5b57;
  font-size: 1.05rem;
  line-height: 1.75;
}

.portal-login__badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.portal-login__badge img {
  width: 36px;
  height: auto;
}

.portal-login__badge span {
  color: #0d5c51;
  font-size: 0.96rem;
  font-weight: 600;
}

.portal-login__card,
.portal-video-card,
.portal-downloads-card,
.portal-guide__card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(13, 143, 121, 0.09);
  border-radius: 28px;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.08);
}

.portal-login__card {
  padding: 34px 30px;
}

.portal-login__card h2,
.portal-section-heading h2,
.portal-guide__header h2 {
  margin: 0 0 12px;
  color: #0d5c51;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
}

.portal-login__card p,
.portal-section-heading p {
  color: #64716d;
  line-height: 1.65;
}

.portal-login__form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.portal-login__error {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff2eb;
  color: #b64600;
  font-size: 0.94rem;
  font-weight: 600;
}

.portal-login__form label {
  display: grid;
  gap: 8px;
  color: #0d5c51;
  font-size: 0.95rem;
  font-weight: 600;
}

.portal-login__form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(13, 143, 121, 0.18);
  border-radius: 14px;
  background: #fffdfa;
  color: #2f3b38;
  font-size: 1rem;
}

.portal-login__form input:focus {
  outline: none;
  border-color: #0d8f79;
  box-shadow: 0 0 0 4px rgba(13, 143, 121, 0.12);
}

.portal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 999px;
  background: #f86300;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  box-shadow: 0 14px 26px rgba(248, 99, 0, 0.24);
}

.portal-btn:hover {
  transform: translateY(-2px);
  background: #dc5800;
}

.portal-btn--ghost {
  background: transparent;
  color: #fff8e7;
  border: 1px solid rgba(255, 248, 231, 0.54);
  box-shadow: none;
}

.portal-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.portal-login__card small {
  display: block;
  margin-top: 14px;
  color: #7a8682;
  line-height: 1.5;
}

.portal-login__coqueiro {
  position: absolute;
  right: -36px;
  bottom: -10px;
  width: min(420px, 36vw);
  pointer-events: none;
}

.portal-area__hero {
  position: relative;
  overflow: hidden;
  padding: 64px 20px 54px;
  background: linear-gradient(135deg, #0d8f79 0%, #17a58f 100%);
}

.portal-area__hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
}

.portal-area__hero-content h1,
.portal-area__hero-content p,
.portal-area__hero .portal-kicker {
  color: #fff8e7;
}

.portal-area__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.portal-area__coqueiro {
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: min(360px, 30vw);
  pointer-events: none;
}

.portal-dashboard {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 24px;
  margin-top: -22px;
  padding-bottom: 32px;
}

.portal-video-card,
.portal-downloads-card {
  padding: 28px;
}

.portal-video-placeholder {
  display: flex;
  min-height: 320px;
  border: 2px dashed rgba(13, 143, 121, 0.22);
  border-radius: 22px;
  background: linear-gradient(135deg, #fff7ea 0%, #f8fffd 100%);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 24px;
}

.portal-video-placeholder strong {
  color: #0d5c51;
  font-size: 1.4rem;
  font-family: var(--font-serif);
  font-weight: 400;
}

.portal-video-placeholder span {
  margin-top: 10px;
  max-width: 360px;
  color: #6a7572;
  line-height: 1.7;
}

.portal-downloads-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.portal-download {
  display: block;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: #fff8e7;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portal-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.portal-download strong {
  display: block;
  color: #0d5c51;
  margin-bottom: 6px;
}

.portal-download span {
  color: #6f7a77;
  font-size: 0.92rem;
}

.portal-guide {
  padding-bottom: 90px;
}

.portal-guide--secondary {
  margin-top: 12px;
  padding: 34px 26px 38px;
  border-radius: 30px;
  background: #fefbf2;
}

.portal-closing {
  padding-bottom: 90px;
}

.portal-guide__header {
  margin-bottom: 24px;
}

.portal-guide__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.portal-panos-intro {
  max-width: 760px;
  margin-bottom: 24px;
  color: rgba(255, 248, 231, 0.82);
  line-height: 1.8;
}

.portal-panos-accordion {
  display: grid;
  gap: 16px;
}

.portal-pano-item {
  overflow: hidden;
  border-radius: 24px;
  background: transparent;
}

.portal-pano-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  border: 0;
  border-radius: 24px;
  background: #ffffff;
  color: #69716d;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}

.portal-pano-header__lead {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.portal-pano-header__thumb {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 999px;
  object-fit: cover;
  background: #f4f4f4;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.portal-pano-header__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #6d726f;
}

.portal-pano-header__chevron {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.portal-pano-header__chevron::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #a6aca9;
  border-bottom: 2px solid #a6aca9;
  transform: rotate(45deg);
}

.portal-pano-item.active .portal-pano-header__chevron {
  transform: rotate(180deg);
}

.portal-pano-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.portal-pano-item.active .portal-pano-content {
  max-height: 520px;
  padding: 10px 6px 6px;
}

.portal-pano-card {
  background: linear-gradient(135deg, #fffdf8 0%, #f6fffc 100%);
  border-radius: 22px;
  padding: 20px 20px 22px;
}

.portal-pano-card img {
  display: block;
  width: 164px;
  height: 164px;
  margin: 0 auto 18px;
  padding: 10px;
  border-radius: 999px;
  object-fit: cover;
  background: linear-gradient(135deg, #fff8e7 0%, #eefaf7 100%);
  box-shadow: inset 0 0 0 10px #ffffff, 0 14px 28px rgba(13, 143, 121, 0.10);
}

.portal-pano-card__body {
  padding: 0;
  text-align: left;
}

.portal-pano-card__body h3 {
  margin: 0 0 12px;
  color: #0d5c51;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.portal-guide__card {
  padding: 26px 24px;
}

.portal-guide__card--wide {
  grid-column: span 2;
}

.portal-guide__card--highlight {
  background: linear-gradient(135deg, #f86300 0%, #ff8f41 100%);
  color: #fff;
      margin-top: 26px;
}

.portal-guide__card h3 {
  margin: 0 0 12px;
  color: #0d5c51;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
}

.portal-guide__card p {
  color: #5e6a66;
  line-height: 1.75;
}

.portal-guide__card--highlight h3,
.portal-guide__card--highlight p {
  color: #fff8e7;
}

.portal-list {
  margin: 0;
  padding-left: 18px;
  color: #5e6a66;
  line-height: 1.8;
}

.portal-list li + li {
  margin-top: 6px;
}

@media (max-width: 960px) {
  .portal-login__shell,
  .portal-dashboard,
  .portal-guide__grid {
    grid-template-columns: 1fr;
  }

  .portal-area__hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .portal-area__actions {
    width: 100%;
  }

  .portal-guide__card--wide {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .portal-login__hero,
  .portal-area__hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .portal-guide--secondary {
    padding: 24px 16px 28px;
    border-radius: 24px;
  }

  .portal-login__card,
  .portal-video-card,
  .portal-downloads-card,
  .portal-guide__card {
    border-radius: 22px;
    padding: 22px 18px;
  }

  .portal-login__coqueiro,
  .portal-area__coqueiro {
    width: 220px;
    right: -46px;
    opacity: 0.2;
  }

  .portal-video-placeholder {
    min-height: 240px;
  }

  .portal-pano-header {
    padding: 12px 14px;
  }

  .portal-pano-header__lead {
    gap: 10px;
  }

  .portal-pano-header__thumb {
    width: 42px;
    height: 42px;
  }

  .portal-pano-header__title {
    font-size: 0.95rem;
  }

  .portal-pano-card img {
    width: 132px;
    height: 132px;
  }
}

/* Global mobile refinement */
@media (max-width: 960px) {
  .header,
  .header-servicos {
    z-index: 6000;
    overflow: visible;
  }

  .header.menu-open,
  .header-servicos.menu-open {
    background-color: var(--white);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
  }

  .header {
    padding: 10px 0 14px;
  }

  .header-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px 16px;
    position: relative;
    z-index: 2;
  }

  .logo {
    order: 1;
    width: auto;
    display: flex;
    justify-content: flex-start;
    grid-column: 1;
  }

  .menu-toggle {
    display: inline-flex;
    order: 2;
    grid-column: 2;
    justify-self: end;
  }

  .nav-left,
  .nav-right {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px 12px;
    padding: 0 4px;
    grid-column: 1 / -1;
  }

  .header-servicos .header-container {
    height: auto;
    min-height: 56px;
    padding-top: 10px;
    padding-bottom: 14px;
  }

  .header-servicos .nav-left,
  .header-servicos .nav-right {
    display: none !important;
    height: auto;
    align-items: flex-start;
  }

  .header.menu-open .nav-left,
  .header.menu-open .nav-right {
    display: flex;
  }

  .header-servicos.menu-open .nav-left,
  .header-servicos.menu-open .nav-right {
    display: flex !important;
  }

  .header nav a {
    margin: 0;
    padding: 10px 14px;
    font-size: 0.95rem;
    line-height: 1.2;
    width: 100%;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  }

  .header.menu-open .nav-left,
  .header.menu-open .nav-right,
  .header-servicos.menu-open .nav-left,
  .header-servicos.menu-open .nav-right {
    position: relative;
    z-index: 3;
  }

  .logo img,
  .footer-logo img {
    width: 78px;
    height: auto;
  }

  .booking-bar {
    padding: 0 18px;
    bottom: 18px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    align-items: stretch;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  }

  .form-group {
    width: 100%;
    min-height: 68px;
    padding: 14px 18px;
  }

  .form-group:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  }

  .form-submit {
    width: 100%;
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 0;
    padding: 14px;
  }

  .form-submit .btn-primary {
    border-radius: 999px;
  }

  .home-highlights {
    margin-top: -14px;
    padding: 68px 18px 18px;
  }

  .home-highlights__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 22px;
  }

  .suites-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .blocos-servicos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 96px;
  }

  .grid-instagram {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .faq-container.praia {
    display: block;
    position: relative;
    min-height: 330px;
    padding: 0 20px 0;
    margin: 0;
    padding-bottom: 0;
    border-bottom: 0;
    overflow: visible;
  }

  .faq-container.praia .prancha-sol,
  .faq-container.praia .coqueiro-laranja-faq {
    position: absolute;
    top: auto;
    max-width: none;
    margin: 0;
  }


  .faq-container.praia .prancha-sol {
    right: clamp(28px, 10vw, 68px);
    bottom: -1px;
    width: min(110px, 28vw);
    padding: 0;
    z-index: 2;
  }


  .faq-container.praia .coqueiro-laranja-faq {
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    width: min(310px, 84vw);
    z-index: 1;
  }

  .faq-container.praia + .contato {
    margin-top: 0;
  }

  .faq-container.praia + .contato .contato-top {
    padding-top: 18px;
  }

  .faq-container .clientes-titulo[src*="faq_titulo"] {
    padding-top: 30px;
    padding-bottom: 22px;
    width: min(360px, 78vw);
  }

  .faq-container + .about {
    margin-top: -12px;
  }

  .footer {
    padding: 42px 0;
  }

  .footer-container {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .footer-nav {
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 440px;
    height: 78vh;
  }

  .about-container {
    flex-direction: column;
    gap: 24px;
    padding-top: 32px;
  }

  .about-image,
  .about-content {
    width: 100%;
  }

  .about-image {
    order: 1;
  }

  .about-content {
    order: 2;
    text-align: left;
  }

  .about-image img {
    display: block;
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 3 / 3;
   /* object-fit: cover;*/
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
  }

  .section-title-home {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .review-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .header {
    padding: 10px 0 12px;
  }

  .header-container {
    gap: 10px 14px;
  }

  .logo img,
  .footer-logo img {
    width: 70px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .header nav a {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .clientes-titulo,
  .section-title-center,
  .clientes-titulo-acomodacoes .section-title-center,
  .clientes-titulo-prancha,
  .sub-titulo {
    padding-top: 2px;

  }

  .booking-bar {
    padding: 0 14px;
    bottom: 14px;
  }

  .home-highlights {
    margin-top: -10px;
    padding: 58px 14px 12px;
  }

  .home-highlights__container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-highlight {
    padding: 16px 14px 18px;
    padding-right: 0;
  }

  .home-highlight__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
    font-size: 2rem;
  }

  .home-highlight__text {
    max-width: none;
    font-size: 16px;
  }

  .form-value__number {
    font-size: 2rem;
  }

  .suites-gallery {
    order: 1;
  }

  .suites-list {
    order: 2;
  }

  .suites-gallery img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
  }

  .suite-card {
    flex-direction: column;
    padding: 9px 8px 2px 19px;
    border-radius: 22px;
  }

  .suite-img img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .blocos {
    gap: 20px;
    margin-top: 80px;
    margin-bottom: 30px;
  }

  .blocos-servicos {
    grid-template-columns: 1fr;
  }

  .botoes {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-bottom: 70px;
  }

  .btn,
  .btn-reservar,
  .btn-booking,
  .btn-outline {
    width: 100%;
    max-width: 320px;
  }

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

  .clientes-container .clientes-titulo[src*="dicas_titulo"] {
    position: relative;
    z-index: 3;
    margin-top: 24px;
    padding-top: 40px;
    padding-bottom: 22px;
  }

  .about-decor {
    margin-top: -6px;
  }

  .about .about-wave {
    position: relative;
    z-index: 1;
  }

  .about .about-wave[src*="onda_verde_voluntarias"] {
    margin-top: -18px;
  }

  .voluntarias-title-desktop {
    display: none;
  }

  .servicos-title-desktop {
    display: none;
  }

  .sobre-title-desktop {
    display: none;
  }

  .voluntarias-mobile-heading,
  .voluntarias-title-mobile,
  .servicos-mobile-heading,
  .servicos-title-mobile,
  .sobre-mobile-heading,
  .sobre-title-mobile {
    display: block;
  }

  .voluntarias-mobile-heading,
  .servicos-mobile-heading,
  .sobre-mobile-heading {
    margin: 0 auto;
    text-align: center;
  }

  .voluntarias-mobile-heading .clientes-titulo,
  .servicos-mobile-heading .clientes-titulo,
  .sobre-mobile-heading .clientes-titulo {
    position: relative;
    z-index: 3;
    margin: 0 auto;
    padding-top: 76px;
    padding-bottom: 0;
  }

  .dicas-parte1,
  .dicas-parte1 .conteudo,
  .dicas-parte1 .regiao,
  .dicas-parte1 .praia,
  .dicas-parte1 p,
  .dicas-parte1 h3,
  .dicas-parte1 h4 {
    text-align: center;
  }

  .dicas-parte1 .regiao {
    padding-left: 20px;
    padding-right: 20px;
  }

  .dicas-parte1 .praia {
    max-width: 100%;
  }

  .dicas-parte1 .praia h4 {
    margin-left: auto;
    margin-right: auto;
  }

  .dicas-parte1 .praia h4 span {
    display: inline-block;
  }

  .dicas-parte1 .praia p {
    margin-left: auto;
    margin-right: auto;
  }

  .dicas + .contato {
    margin-top: -48px;
  }

  .dicas + .contato .contato-top {
    padding-top: 28px;
  }

  .card-wrapper.galeria {
    padding: 76px 20px 40px;
    border-radius: 40px 40px 0 0;
  }

  .arrow {
    width: 52px;
    height: 52px;
  }

  .arrow.left {
    left: 8px;
  }

  .arrow.right {
    right: 8px;
  }

  .faq-container.praia {
    min-height: 276px;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .faq-container.praia .coqueiro-laranja-faq {
    bottom: -0;
    width: min(240px, 82vw);
  }

  .faq-container.praia .prancha-sol {
    right: clamp(18px, 8vw, 42px);
    bottom: 0px;
    width: min(92px, 26vw);
  }

  .faq-container.praia + .contato {
    margin-top: 0;
  }

  .faq-container.praia + .contato .contato-top {
    padding-top: 0;
  }

  .btn-topo {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .contato-lp {
    padding: 56px 20px 40px;
    overflow: hidden;
  }

  .contato-header {
    min-height: 120px;
  }

  .onda-vermelha {
    top: 18px;
    width: 120px;
    opacity: 0.95;
  }

  .coqueiro-bg {
    width: 180px;
    right: -18px;
    opacity: 0.2;
  }

  .caranguejo {
    left: 14px;
    bottom: 8px;
    width: 36px;
  }

  .contato-content {
    padding-left: 22px;
    padding-right: 22px;
  }

  .contato-content h2 {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
    line-height: 1.05;
    margin-bottom: 12px;
  }

  .contato-content p {
    font-size: 1.2rem;
    line-height: 1.45;
    margin-bottom: 20px;
  }

  .titulo-instagram {
    width: min(220px, 72vw);
    margin-bottom: 12px;
  }

  .contato .titulo-instagram,
  .contato-lp .titulo-instagram,
  .instagram .titulo-instagram {
    width: min(84px, 26vw);
  }

  .icone {
    width: 12px;
    height: 12px;
  }

  .instagram {
    padding-left: 22px;
    padding-right: 22px;
  }

  .user {
    font-size: 1rem;
    line-height: 1.5;
  }

  .grid-instagram {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .grid-instagram img {
    aspect-ratio: 1 / 1;
    border-radius: 18px;
  }

  .contato-mapa {
    padding-left: 22px;
    padding-right: 22px;
  }

  .contato-mapa iframe {
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
  }

  .conteudo-servicos.container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .conteudo-servicos.container p,
  .conteudo-servicos.container ul,
  .conteudo-servicos.container li {
    text-align: left;
    line-height: 1.8;
  }

  .container-suites {
    padding-left: 22px;
    padding-right: 22px;
  }

  .corpo.container-suites {
    text-align: left;
    padding-bottom: 65px;
    max-width: 350px;
  }

  .corpo.container-suites p {
    text-align: left;
    line-height: 1.85;
    margin-bottom: 5px;
  }

  .suites-page {
    background: linear-gradient(180deg, #fff7f1 0%, #f8e3d1 100%);
  }

  .suite {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 56px;
  }

  .suite-dupla .suite-texto-dupla,
  .suite-tripla .suite-texto {
    order: 2;
  }

  .suite-dupla .galeria-suite,
  .suite-tripla .galeria-suite {
    order: 1;
    position: relative;
    z-index: 4;
  }

  .suite-texto-dupla,
  .suite-texto {
    padding: 26px 22px;
    text-align: left;
    font-size: 0.96rem;
    line-height: 1.8;
    border-radius: 28px;
    background: #fffdf9;
    box-shadow: 0 18px 36px rgba(92, 56, 24, 0.08);
  }

  .suite-texto-dupla h2,
  .suite-texto h2 {
    font-size: clamp(2rem, 7vw, 2.4rem);
    line-height: 1.05;
    margin-bottom: 18px;
  }

  .suite-texto-dupla h3,
  .suite-texto h3,
  .suite-texto-dupla p,
  .suite-texto p,
  .suite-texto-dupla li,
  .suite-texto li {
    font-size: 16px;
    line-height: 1.8;
    color: #4f4a46;
    text-align: left;
  }

  .suite-texto-dupla li,
  .suite-texto li {
    margin-left: 1.1rem;
    margin-bottom: 8px;
  }

  .suite-dupla strong,
  .suite-texto strong {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .galeria-suite {
    padding: 22px 18px 20px;
    border-radius: 30px;
    background: linear-gradient(180deg, #edd7c7 0%, #e5cfbf 100%);
    box-shadow: 0 20px 38px rgba(92, 56, 24, 0.1);
  }

  .galeria-container {
    max-width: none;
    position: relative;
    z-index: 4;
  }

  .imagem-principal img {
    border: 8px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  }

  .imagem-principal {
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 3px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
  }

  .imagem-principal img {
    opacity: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .miniaturas {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 6px 2px 2px;
    margin-top: 16px;
    scroll-snap-type: x proximity;
  }

  .miniaturas img {
    flex: 0 0 88px;
    width: 88px;
    border-width: 4px;
    border-radius: 18px;
    scroll-snap-align: start;
    touch-action: manipulation;
  }


  .seta {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 8;
    pointer-events: auto;
    touch-action: manipulation;
  }

  .seta.esquerda {
    left: 14px;
  }

  .seta.direita {
    right: 14px;
  }

  .seta img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
  }

  .onda-laranja-suites,
  .onda-laranja-suites-left,
  .coqueiro-suites {
    display: none;
  }

  .suite .btn-booking.secondary {
    width: 100%;
    max-width: none;
    margin-top: 12px;
  }

  .section-title-sobre {
    padding: 0 20px;
  }

  .container-sobre,
  .corpo.container-sobre {
    padding-left: 22px;
    padding-right: 22px;
  }

  .corpo.container-sobre p {
    text-align: left;
    line-height: 1.85;
  }

  .clientes-container .clientes-titulo {
    padding: 30px 0px 27px;
  }

  .faq-container .clientes-titulo {
    padding-top: 24px;
    padding-bottom: 18px;
  }

  img.clientes-titulo[src*="sobre_nos"] {
    display: block;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 27px;
    position: relative;
    z-index: 2;
  }

  .about + .sobre .section-title-sobre {
    margin-top: 28px;
  }

  .card-wrapper.galeria {
    padding-top: 88px;
  }

  .arrow {
    width: 50px;
    height: 50px;
    top: auto;
    bottom: 18px;
    transform: none;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
  }

  .arrow:hover,
  .arrow.right:hover {
    transform: scale(1.04) !important;
  }

  .arrow.left {
    left: calc(50% - 58px);
  }

  .arrow.right {
    right: calc(50% - 58px);
  }

  .arrow img {
    display: none;
  }

  .arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid rgba(255, 255, 255, 0.9);
    border-right: 2px solid rgba(255, 255, 255, 0.9);
  }

  .arrow.left::before {
    transform: translate(-40%, -50%) rotate(-135deg);
  }

  .arrow.right::before {
    transform: translate(-60%, -50%) rotate(45deg);
  }

  .card {
    width: min(320px, calc(100vw - 56px));
    margin-bottom: 58px;
  }

  .card img {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .container-suites {
    padding-left: 6px;
    padding-right: 6px;
  }

  .galeria-suite {
    padding: 13px 14px 18px;
    border-radius: 24px;
  }

  .clientes-container .clientes-titulo[src*="servicos_titulo"] {
    padding-top: 64px;
    padding-bottom: 32px;
  }

  .clientes-container .clientes-titulo[src*="dicas_titulo"] {
    margin-top: 31px;
    padding-top: 42px;
    padding-bottom: 2px;
  }

  .header nav a {
    font-size: 0.88rem;
    padding: 10px 12px;
  }

  .booking-form {
    border-radius: 20px;
  }

  .form-group {
    padding: 12px 16px;
  }

  .form-group::after {
    right: 16px;
    bottom: 18px;
  }

  .contato-content h2 {
    font-size: 32px;
  }

  .contato-lp {
    padding-top: 48px;
  }

  .contato-content,
  .instagram,
  .contato-mapa {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contato-content p {
    font-size: 21px;
  }

  .titulo-instagram {
    width: min(190px, 74vw);
  }

  .contato .titulo-instagram,
  .contato-lp .titulo-instagram,
  .instagram .titulo-instagram {
    width: min(72px, 24vw);
  }

  .icone {
    width: 11px;
    height: 11px;
  }

  .grid-instagram {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contato-mapa iframe {
    height: 280px;
    border-radius: 20px;
  }

  .grid-instagram {
    gap: 8px;
  }

  .conteudo-servicos.container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .container-suites {
    padding-left: 2px;
    padding-right: 2px;
  }

  .suite-texto-dupla,
  .suite-texto {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .galeria-suite {
    padding: 18px 14px 18px;
    border-radius: 8px;
  }

  .imagem-principal img {
    aspect-ratio: 7 / 9;
    border-width: 7px;
    border-radius: 20px;
  }

  .imagem-principal {
    border-width: 11px;
    border-radius: 8px;
    aspect-ratio: 7 / 9;
  }

  .miniaturas img {
    flex-basis: 78px;
    width: 78px;
    border-radius: 16px;
  }

  .seta {
    width: 42px;
    height: 42px;
  }

  .seta.esquerda {
    left: 10px;
  }

  .seta.direita {
    right: 10px;
  }

  .clientes-container .clientes-titulo {
    padding: 30px 0px 27px;
  }

  .clientes-container .clientes-titulo[src*="dicas_titulo"] {
    display: block;
    margin: 60px auto -38px;
    padding-top: 0;
    padding-bottom: 0px;
  }

  .about .about-wave[src*="onda_amarela_dicas"] {
    margin-top: -24px;
  }

  .faq-container .clientes-titulo[src*="faq_titulo"] {
    padding-top: 30px;
    padding-bottom: 27px;
    width: min(300px, 80vw);
  }

  .dicas-parte1 .praia h4 {
  }

  .dicas-parte1 .praia p {
  }

  .dicas + .contato {
    margin-top: -36px;
  }

  .dicas + .contato .contato-top {
    padding-top: 24px;
  }

  .faq-container .clientes-titulo {
    padding-top: 18px;
    padding-bottom: 14px;
  }

  img.clientes-titulo[src*="sobre_nos"] {
    margin-top: 32px;
    padding-bottom: 32px;
  }

  .coqueiro-home {
    right: -24px;
    bottom: 1px;
    width: 234px;
    max-width: 30vw;
    opacity: 0.7;
  }

  .about + .sobre .section-title-sobre {
    margin-top: 34px;
  }

  .container-sobre,
  .corpo.container-sobre {
    padding-left: 24px;
    padding-right: 24px;
    max-width: 350px;
    font-size: 16px;
  }

  .card-wrapper.galeria {
    padding: 84px 16px 34px;
  }

  .arrow {
    width: 48px;
    height: 48px;
    bottom: 14px;
  }

  .arrow.left {
    left: calc(50% - 54px);
  }

  .arrow.right {
    right: calc(50% - 54px);
  }

  .card {
    width: min(330px, calc(100vw - 32px));
  }
}
