/* -- Variable -- */
:root {
    --primary: #DDD3C2;
    --secondary: #634305;
    --bg-light: #EFEAE0;
    --black-10: #0000001A;
    --black-12: #0000001F;
    --black-20: #00000033;
    --black-40: #00000066;
    --black-60: #00000099;
    --black-80: #000000CC;
    --white-60: #FFFFFF99;
    --white-70: #FFFFFFB2;
    --white-80: #FFFFFFCC;
    --white-90: #FFFFFFCC;
    --gray-10: #F3F4F6;
    --gray-20: #E5E7EB;
    --gray-30: #D1D5DB;
    --gray-40: #9CA3AF;
    --gray-50: #6B7280;
    --gray-60: #4B5563;
    --gray-70: #374151;
    --gray-80: #1F2937;
    --gray-90: #111827;
    --text-color-1: #8D8686;
    --dark: #515151;
    --dark-50: #0D0D0D80;
    --blue: #1A777E;
}

/* -- Reset -- */
body {
    font-family: "DM Sans", sans-serif;
    color: var(--black-60);
    font-size: 16px;
    line-height: 22px;
}

#wrapper {
    background-color: var(--bg-light);
    overscroll-behavior: none;
    scroll-behavior: smooth;
}

/* -- Typography -- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
}

h1,
.h1 {
    font-size: 140px;
    line-height: 140px;
}

h2,
.h2 {
    font-size: 100px;
    line-height: 100px;
}

h3,
.h3 {
    font-size: 74px;
    line-height: 82px;
}

h4,
.h4 {
    font-size: 40px;
    line-height: 42px;
}

h5,
.h5 {
    font-size: 24px;
    line-height: 30px;
}

@media (max-width:1199px) {

    h1,
    .h1 {
        font-size: 116px;
        line-height: 116px;
    }

    h2,
    .h2 {
        font-size: 83px;
        line-height: 91px;
    }

    h3,
    .h3 {
        font-size: 60px;
        line-height: 68px;
    }

    h4,
    .h4 {
        font-size: 32px;
        line-height: 40px;
    }

}


@media (max-width:991px) {

    h1,
    .h1 {
        font-size: 96px;
        line-height: 96px;
    }

    h2,
    .h2 {
        font-size: 70px;
        line-height: 88px;
    }

    h3,
    .h3 {
        font-size: 50px;
        line-height: 58px;
    }

    h4,
    .h4 {
        font-size: 26px;
        line-height: 34px;
    }

    h5,
    .h5 {
        font-size: 20px;
        line-height: 28px;
    }
}


@media (max-width:767px) {

    h1,
    .h1 {
        font-size: 80px;
        line-height: 88px;
    }

    h2,
    .h2 {
        font-size: 58px;
        line-height: 64px;
    }

    h3,
    .h3 {
        font-size: 42px;
        line-height: 50px;
    }
}

@media (max-width:575px) {
    h1,
    .h1 {
        font-size: 66px;
        line-height: 76px;
    }

    h2,
    .h2 {
        font-size: 48px;
        line-height: 56px;
    }

    h3,
    .h3 {
        font-size: 35px;
        line-height: 43px;
    }
}

@media (max-width:425px) {
    h1,
    .h1 {
        font-size: 55px;
        line-height: 63px;
    }

    h2,
    .h2 {
        font-size: 40px;
        line-height: 48px;
    }

    h3,
    .h3 {
        font-size: 30px;
        line-height: 38px;
    }
    h4,
    .h4 {
        font-size: 22px;
        line-height: 30px;
    }

    h5,
    .h5 {
        font-size: 18px;
        line-height: 26px;
    }
}


.text-display-1 {
    font-size: 200px;
    line-height: 170px;
}

.bellefair-font {
    font-family: "Bellefair", serif;
}

.tangerine-font {
    font-family: "Tangerine", serif;
}

.text-sub-head {
    font-size: clamp(18px, 2vw, 20px);
    line-height: 22px;
}

.text-sub-head-medium {
    font-size: clamp(18px, 2vw, 20px);
    line-height: 26px;
    font-weight: 500;
}

.text-body-1 {
    font-size: 24px;
    line-height: 22px;
}

.text-body-2 {
    font-size: 16px;
    line-height: 22px;
}

.text-body-3 {
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: bold;
}

.text-caption {
    font-size: 14px;
    line-height: 18px;
}

.text-dark {
    color: var(--dark);
}

.text-dark-50 {
    color: var(--dark-50);
}

.text-color-1 {
    color: var(--text-color-1);
}

.text-white-60 {
    color: var(--white-60);
}

.text-white-70 {
    color: var(--white-70);
}

.text-white-80 {
    color: var(--white-80);
}

.text-white-90 {
    color: var(--white-90);
}


.text-black-40 {
    color: var(--black-40);
}

.text-black-60 {
    color: var(--black-60);
}

.text-black-80 {
    color: var(--black-80);
}

.text-blue {
    color: var(--blue);
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}


.container {
    padding-right: 6px;
    padding-left: 6px;
    width: 1308px;

}

.container.w-1079 {
    width: 1091px;
}

.container .row {
    margin-left: -6px !important;
    margin-right: -6px !important;

}

.container .row>* {
    padding-left: 6px !important;
    padding-right: 6px !important;
}

.main-container {
    z-index: 2;
}

.tf-btn {
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    letter-spacing: -0.06rem;
}

.tf-btn i {
    font-size: 18px;
}

.tf-btn.btn-bg-dark {
    background-color: var(--black);
}

.tf-btn.btn-bg-primary {
    color: var(--black);
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    font-family: "Bellefair",
        serif;
}

/* CTA faixa do footer */
.footer-cta-band{
  background: var(--primary);
  padding: 24px 0;              /* ↓ mais baixo */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* botão igual ao "SAIBA MAIS" e centrado */
/* Banda full-width */
.footer-cta-band{
  background: var(--primary);
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.4s cubic-bezier(.2, 1, .2, 1);
}

/* Lift subtil (sem scale na banda para não mexer o layout) */
.footer-cta-band:hover{
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}

/* ==========================================
   Shine elegante – direita → esquerda
========================================== */

.footer-cta-band::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  /* começa fora do lado direito */
  transform: translateX(120%);
  opacity: 0;

  background-image: linear-gradient(
      120deg,
      rgba(255,255,255,0) 40%,
      rgba(255,255,255,0.4),
      rgba(255,255,255,0) 60%
    );
}

/* animação mais lenta e suave */
.footer-cta-band:hover::after{
  animation: am-band-shine 2.6s cubic-bezier(.22,1,.36,1);
}

/* movimento direita → esquerda */
@keyframes am-band-shine{
  0% {
    transform: translateX(120%);
    opacity: 0;
  }

  15% {
    opacity: 0.7;
  }

  100% {
    transform: translateX(-120%);
    opacity: 0;
  }
}

/* Botão mais comprido e centrado */
.footer-cta-btn{
  width: min(520px, calc(100% - 32px));
  justify-content: center;
  transition: transform 0.45s cubic-bezier(.2, 1, .2, 1);
}

/* Botão cresce ligeiramente */
.footer-cta-band:hover .footer-cta-btn{
  transform: scale(1.03);
}

html[lang="pt"] #amenities .am-title-italic,
html[lang="pt"] #amenities .am-title-italic *,
html[lang="pt"] #amenities .split-line,
html[lang="pt"] #amenities .split-word,
html[lang="pt"] #amenities .split-char {
    font-style: italic !important;
}

/* =========================================================
   Fixes:
   email / telemovel side by sid
========================================================= */

.am-form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

/* mobile */
@media (max-width:640px){
  .am-form-row{
    grid-template-columns:1fr;
  }
}

/* =========================================================
   Fixes:
   "apertar" só dentro do popup
========================================================= */

/* evitar alturas tipo 100vh vindas do tema */
.am-popup .section-contact-d7{
  height: auto !important;
  min-height: 0 !important;
}

/* reduzir spacing gigante (só no popup) */
.am-popup .flat-spacing-14{
  padding-top: 22px !important;
  padding-bottom: 12px !important;
}

.am-popup .flat-spacing-5{
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.am-popup .page-title-d7 .content-inner{
  padding-top: 34px !important;
  padding-bottom: 10px !important;
}

/* se existir algum background shape absoluto, não deve "rebentar" o layout */
.am-popup .bg-shape{
  pointer-events: none;
}

/* SUPER SMOOTH grow + smooth return */
.section-about-d7-v1 .item-1 img,
.section-about-d7-v1 .item-2 img,
.section-about-d7-v1 .item-3 img,
.section-about-d7-v1 .item-4 img,
.section-about-d7-v1 .item-5 img{
  display: block;
  pointer-events: auto;

  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
  transform-origin: center;

  /* slower easing + longer duration */
  transition:
    transform 1200ms cubic-bezier(.2, 1, .2, 1),
    opacity 900ms cubic-bezier(.2, 1, .2, 1);
  will-change: transform, opacity;
}

/* hover grows slowly */
.section-about-d7-v1 .item-1 img:hover,
.section-about-d7-v1 .item-2 img:hover,
.section-about-d7-v1 .item-3 img:hover,
.section-about-d7-v1 .item-4 img:hover,
.section-about-d7-v1 .item-5 img:hover{
  opacity: 1;
  transform: translate3d(0,-4px,0) scale(1.5);
}

/* even smoother return (slower than grow) */
.section-about-d7-v1 .item-1 img,
.section-about-d7-v1 .item-2 img,
.section-about-d7-v1 .item-3 img,
.section-about-d7-v1 .item-4 img,
.section-about-d7-v1 .item-5 img{
  transition-timing-function: cubic-bezier(.2, 1, .2, 1);
}

/* =========================================================
   Responsivo
========================================================= */
@media (max-width: 575px){
  .am-popup__panel{
    width: calc(100vw - 24px);
    border-radius: 22px;
  }
}

/* =========================================================
   Acessibilidade: reduzir animações se o user pedir
========================================================= */
@media (prefers-reduced-motion: reduce){
  .am-popup,
  .am-popup__panel{
    transition: none !important;
  }
}

#goTop{
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;

  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  z-index: 999999 !important;
}

@media (max-width:1439px) {
    .text-display-1 {
        font-size: 165px;
        line-height: 170px;
    }

    .container {
        padding-right: 15px;
        padding-left: 15px;
    }

    .container .row {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }

    .container .row>* {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width:1200px) {
    .text-display-1 {
        font-size: 138px;
        line-height: 146px;
    }


}

@media (max-width:991px) {
    .text-display-1 {
        font-size: 105px;
        line-height: 113px;
    }


}

@media (max-width:767px) {
    .text-display-1 {
        font-size: 76px;
        line-height: 84px;
    }
}

@media (max-width:575px) {
    .text-display-1 {
        font-size: 50px;
        line-height: 84px;
    }
}