/* ============================================================
   POUSADA JUQUIRIQUERÊ — style.css
   Redesign to match Figma
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

:root {
  --color-dark: #18110D;
  /* Dark brown/black */
  --color-gold: #BEA379;
  /* Gold/Tan */
  --color-gold-hover: #a88d63;
  --color-bg: #FDFCFA;
  /* Light cream background */
  --color-text: #333333;
  --color-text-light: #666666;
  --color-white: #FFFFFF;
  --color-gray: #DED8D0;
  /* Lines */
  --color-placeholder: #D9D9D9;

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --container-max: 1440px;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── BLEED GRID UTILS ─────────────────────────────────────── */
/* Layout 50/50 flexível e seguro, impedindo que o conteúdo esprema e alinhe perfeitamente! */
.bleed-grid {
  display: flex;
  flex-wrap: wrap;
}

.bleed-left-img,
.bleed-right-img {
  width: 100%;
}

.bleed-left-img img,
.bleed-right-img img {
  width: 100%;
  height: 400px;
  /* Altura fixa no mobile */
  object-fit: cover;
}

.bleed-left-content,
.bleed-right-content {
  width: 100%;
  padding: 60px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 800px) {
  .bleed-grid {
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .bleed-left-img,
  .bleed-right-img {
    flex: 0 0 50%;
    width: 50%;
    position: relative;
    /* Prepara para a imagem absoluta */
  }

  .bleed-left-content,
  .bleed-right-content {
    flex: 0 0 50%;
    width: 50%;
  }

  /* O pulo do gato: A imagem fica absoluta, forçando a linha inteira a ter EXATAMENTE a altura definida apenas pelo bloco de texto! */
  .bleed-left-img img,
  .bleed-right-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  /* Padding Matemático para alinhar o texto perfeitamente com o container do resto do site */
  .bleed-right-content {
    padding-top: 120px;
    padding-bottom: 120px;
    padding-left: 80px;
    /* Respiro em relação à linha do meio */
    padding-right: max(40px, calc((100vw - var(--container-max)) / 2));
  }

  .bleed-left-content {
    padding-top: 120px;
    padding-bottom: 120px;
    padding-right: 80px;
    /* Respiro em relação à linha do meio */
    padding-left: max(40px, calc((100vw - var(--container-max)) / 2));
  }
}

/* Typography Base */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-serif);
  color: var(--color-dark);
}

.section-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  line-height: 1.1;
}

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

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--color-gold);
  color: var(--color-dark);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 32px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
}

.btn-dark {
  display: inline-block;
  background-color: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 32px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-dark:hover {
  background-color: #332720;
}

.btn-dark-small {
  display: inline-block;
  background-color: var(--color-dark);
  color: var(--color-gold);
  /* Dourado conforme print */
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: none;
  /* 'Fazer Reserva' em vez de CAPS */
  letter-spacing: 0.02em;
  padding: 14px 40px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  align-self: flex-start;
  /* Impede que o botão estique */
}

.btn-dark-small:hover {
  background-color: #332720;
  color: var(--color-white);
}

/* ── HEADER ───────────────────────────────────────────────── */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.header.sticky {
  position: fixed;
  background-color: rgba(24, 17, 13, 0.98);
  /* --color-dark com opacidade */
  padding: 15px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: none;
}

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

.logo-area {
  display: flex;
  flex-direction: column;
  color: var(--color-white);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 4px;
}

.logo-subtitle {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.8;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: 40px;
  }
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.btn-reserva-header {
  background-color: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 24px;
  border: none;
  transition: all 0.3s ease;
}

.btn-reserva-header:hover {
  background-color: var(--color-gold);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: 80px;
  /* Offset for header */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: var(--color-dark);
}

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

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(24, 17, 13, 0.2) 0%, rgba(24, 17, 13, 0.8) 100%);
  z-index: 1;
}

.hero-container {
  display: flex;
  position: relative;
  z-index: 2;
}

.hero-text-block {
  max-width: 700px;
  color: var(--color-white);
}

.hero-text-block h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-text-block p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 400px;
}

/* ── SOBRE ────────────────────────────────────────────────── */
.sobre {
  padding: 100px 0;
}

.sobre h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.subtitle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.subtitle-wrap .line {
  height: 1px;
  width: 120px;
  background-color: var(--color-gray);
}

.subtitle {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-text);
  font-size: 0.8rem;
}

.sobre-content {
  max-width: 800px;
  /* Alargado conforme pedido na S1 */
  margin: 0 auto;
}

.sobre-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

.sobre-text strong {
  display: block;
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 16px;
  font-weight: 500;
}

.localizacao {
  padding: 60px 0 100px;
}

/* Removemos a grid fixa antiga pois será usada .bleed-grid */

.map-placeholder img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  background-color: #EEE;
}

.localizacao-texto h3 {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.localizacao-texto p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.diferenciais-lista-sec {
  padding: 0 0 100px;
}

/* Removido dif-grid pois será usado bleed-grid */

.dif-subtitle {
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: 40px;
  line-height: 1.6;
}

.dif-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.dif-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-dark);
  border-radius: 50%;
  color: var(--color-white);
}

.dif-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-white);
}

.dif-item-text h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.dif-item-text p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.dif-right img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

/* ── BANNER CTA ───────────────────────────────────────────── */
.banner-cta-container {
  padding: 80px 0;
}

.banner-box {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .banner-box {
    flex-direction: row;
    height: 300px;
  }
}

.banner-text {
  background-color: var(--color-gold);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 8%;
}

.banner-text h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 32px;
}

.banner-img {
  flex: 1;
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 250px;
}

/* ── ESPAÇOS SPLIT ────────────────────────────────────────── */
.espaco-subtitle {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  margin-bottom: 12px;
  display: block;
}

.espaco-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.espaco-text p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 600px;
  /* Texto um pouco mais largo */
}

/* Modificador para descolar a imagem da borda na S2 */
@media (min-width: 800px) {
  .espacos-split-sec .bleed-left-img img {
    left: 40px;
    top: 40px;
    width: calc(100% - 40px);
    height: calc(100% - 80px);
  }

  .espacos-split-sec .bleed-right-img img {
    right: 40px;
    left: auto;
    top: 40px;
    width: calc(100% - 40px);
    height: calc(100% - 80px);
  }
}

/* ── ALMA V2 (RESPECTING FIGMA PROPORTIONS) ───────────────── */
.alma-sec-v2 {
  padding: 120px 0;
  background-color: var(--color-bg);
}

.alma-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 800px) {
  .alma-grid-v2 {
    grid-template-columns: 1.2fr 1fr;
    gap: 120px;
  }
}

.alma-content-v2 {
  position: relative;
}

.alma-title-huge {
  font-family: var(--font-serif);
  font-size: 4rem;
  /* HUGE font from Figma */
  line-height: 1.05;
  color: var(--color-dark);
  margin-bottom: 40px;
}

.alma-content-v2 p {
  font-size: 0.95rem;
  /* Levemente maior */
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 650px;
  /* Alargado conforme pedido na S3 */
}

.btn-text-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-dark);
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-dark);
  padding-bottom: 4px;
}

.alma-img-v2 {
  position: relative;
  z-index: 1;
}

/* Detalhe dourado quebrando o fundo e unindo a imagem (S3) */
.alma-img-v2::before {
  content: '';
  position: absolute;
  top: -30px;
  bottom: -30px;
  left: -40px;
  width: 60%;
  background-color: var(--color-gold);
  opacity: 0.15;
  z-index: -1;
}

.alma-img-v2 img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  /* Soft shadow for 'floating' look */
}

@media (max-width: 800px) {
  .alma-title-huge {
    font-size: 2.5rem;
  }

  .alma-img-v2 img {
    height: 400px;
  }
}

/* Replaces old Alma and Chales rules */
.chales-sec,
.alma-sec {
  display: none;
}

.gold-square {
  width: 40px;
  height: 40px;
  background-color: var(--color-gold);
  margin-bottom: 32px;
}

.alma-text h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 32px;
}

.alma-text p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

.btn-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-dark);
}

.alma-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ── CAROUSEL ─────────────────────────────────────────────── */
.carousel-sec {
  padding: 80px 0;
  border-top: 1px solid var(--color-gray);
  border-bottom: 1px solid var(--color-gray);
}

.ch-text {
  text-align: center;
  margin-bottom: 60px;
}

.sub-ch {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: 16px;
}

.ch-text .line {
  width: 100%;
  max-width: 300px;
  height: 1px;
  background-color: var(--color-dark);
  margin: 0 auto 24px;
}

.carousel-header h2 {
  font-size: 2rem;
}

.carousel-cards-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
}

.cards::-webkit-scrollbar {
  display: none;
}

.card {
  flex: 0 0 260px;
  background-color: var(--color-placeholder);
  /* Gray placeholder for card */
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  scroll-snap-align: start;
}

.card p {
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 16px;
  color: var(--color-text);
}

.card .author {
  font-size: 0.8rem;
  font-weight: 600;
}

.nav-arrow {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-gray);
  cursor: pointer;
  padding: 0 10px;
}

.nav-arrow:hover {
  color: var(--color-dark);
}

/* ── GUIA ─────────────────────────────────────────────────── */
.guia-sec {
  padding: 100px 0;
}

.guia-sec h2 {
  margin-bottom: 60px;
  font-size: 2.2rem;
}

.guia-grid-8 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
  margin-top: 60px;
}

@media (min-width: 600px) {
  .guia-grid-8 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .guia-grid-8 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.guia-item {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.guia-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.guia-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.guia-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #EEE;
}

.guia-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.guia-info h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 16px;
  line-height: 1.3;
  color: var(--color-dark);
}

.guia-info p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.guia-info p strong {
  color: var(--color-dark);
  font-weight: 700;
}

.guia-info .dist {
  margin-top: auto;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  font-weight: 800;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ── FEATURES ─────────────────────────────────────────────── */
.features-sec {
  padding: 80px 0 120px;
  background-color: var(--color-bg);
}

.features-sec h2 {
  margin-bottom: 80px;
  font-size: 2.2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
  }
}

.feature-item {
  text-align: left;
}

.feature-item .icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  color: var(--color-dark);
}

.feature-item h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 80px 0 40px;
}

.footer-flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .footer-flex {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-left h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 8px;
}

.footer-left p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-nav {
  display: flex;
  gap: 40px;
}

.footer-nav a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.copyright {
  font-size: 0.75rem;
  opacity: 0.5;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── MARQUEE AMENITIES ───────────────────────────────────── */
.marquee-amenities-sec {
  padding: 120px 0 60px;
  overflow: hidden;
  background-color: var(--color-bg);
}

.marquee-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}

.m-header-left {
  flex: 1;
  min-width: 300px;
}

.m-brand h3 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.m-brand span {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
}

.m-line {
  width: 100%;
  max-width: 450px;
  height: 1px;
  background-color: var(--color-dark);
  margin: 20px 0;
  opacity: 0.6;
}

.m-slogan {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--color-dark);
}

.m-header-right {
  flex: 1;
  max-width: 500px;
  min-width: 300px;
}

.m-header-right p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.marquee-wrapper {
  display: flex;
  width: 100%;
}

.marquee-content {
  display: flex;
  gap: 0;
  animation: marquee-scroll 45s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex: 0 0 450px;
  /* Um pouco maior para o efeito de luxo */
  height: 450px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-right: 1px solid rgba(190, 163, 121, 0.2);
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marquee-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Moldura interna de 1px dourada */
.m-inner-border {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(190, 163, 121, 0.6);
  pointer-events: none;
  z-index: 2;
}

.m-text {
  text-align: center;
  padding: 40px;
  z-index: 3;
}

.m-text span {
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.m-text p {
  color: var(--color-white);
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.9;
  letter-spacing: 0.02em;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-450px * 6));
  }
}

@media (max-width: 768px) {
  .marquee-item {
    flex: 0 0 300px;
    height: 300px;
  }

  .marquee-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .m-text span {
    font-size: 1.5rem;
  }

  @keyframes marquee-scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-300px * 6));
    }
  }
}

/* ── ANIMATIONS (UX) ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ── MENU MOBILE ──────────────────────────────────────────── */
.nav-hamburguer {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 100;
  margin-left: auto;
}

.nav-hamburguer span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  transition: all 0.3s ease;
}

.header--light:not(.sticky) .nav-hamburguer span {
  background-color: var(--color-dark);
}

.nav-hamburguer span:nth-child(1) { top: 0; }
.nav-hamburguer span:nth-child(2) { top: 11px; }
.nav-hamburguer span:nth-child(3) { bottom: 0; }

.nav-hamburguer.aberto span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.nav-hamburguer.aberto span:nth-child(2) {
  opacity: 0;
}
.nav-hamburguer.aberto span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 11px;
}

/* Fullscreen Menu Overlay */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--color-dark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  padding: 40px;
}

.nav-mobile.aberto {
  right: 0;
}

.nav-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.nav-mobile-header .logo {
  font-size: 1.2rem;
  color: var(--color-gold);
}

.nav-close {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
}

.nav-mobile-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.nav-mobile-link {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-white);
  text-transform: none;
  letter-spacing: 0;
  transition: color 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateX(20px);
}

.nav-mobile.aberto .nav-mobile-link {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered animation for links */
.nav-mobile.aberto .nav-mobile-link:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile.aberto .nav-mobile-link:nth-child(2) { transition-delay: 0.2s; }
.nav-mobile.aberto .nav-mobile-link:nth-child(3) { transition-delay: 0.3s; }
.nav-mobile.aberto .nav-mobile-link:nth-child(4) { transition-delay: 0.4s; }

.nav-mobile-link:hover {
  color: var(--color-gold);
  transform: translateX(10px);
}

.nav-mobile-cta {
  display: inline-block;
  background-color: var(--color-gold);
  color: var(--color-dark);
  padding: 18px 40px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.5s;
}

.nav-mobile.aberto .nav-mobile-cta {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile-footer {
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile-footer p {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ── RESPONSIVIDADE GLOBAL (UX/UI) ────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
}

@media (max-width: 800px) {
  /* Menu e Header Mobile */
  .nav-hamburguer { display: block; }
  .btn-reserva-header { display: none; } /* Oculta botão RESERVE do header e deixa no menu hamburguer */
  
  .logo { font-size: 1.25rem; }
  .logo-subtitle { font-size: 0.55rem; letter-spacing: 0.2em; }
  .nav { gap: 16px; width: 100%; justify-content: flex-end; }
  
  /* Restante responsividade */
  .hero-text-block h1 { font-size: 3rem; }
  .section-title { font-size: 2.2rem; margin-bottom: 2rem; }
  .sobre { padding: 60px 0; }
  .sobre h2 { font-size: 2rem; }
  
  .bleed-left-content, .bleed-right-content { padding: 50px 24px; }
  .localizacao { padding: 60px 0; }
  .diferenciais-lista-sec { padding: 0 0 60px; }
  
  .banner-cta-container { padding: 60px 0; }
  .banner-text { padding: 50px 24px; }
  .banner-text h2 { font-size: 1.6rem; }
  .banner-img img { min-height: 200px; }
  
  .alma-sec-v2 { padding: 60px 0; }
  .alma-title-huge { font-size: 2.5rem; }
  
  .carousel-sec { padding: 60px 0; }
  .guia-sec { padding: 60px 0; }
  .features-sec { padding: 60px 0; }
  .features-sec h2 { margin-bottom: 50px; font-size: 1.8rem; }
  
  .footer { padding: 60px 0 40px; }
  
  .btn-primary, .btn-dark { width: 100%; max-width: 320px; text-align: center; }
  .btn-dark-small { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .logo { font-size: 1.15rem; }
  .logo-subtitle { font-size: 0.5rem; letter-spacing: 0.15em; }
  .header-content { padding-top: 8px; padding-bottom: 8px; }

  .hero-text-block h1 { font-size: clamp(2.5rem, 10vw, 3rem); margin-bottom: 16px; }
  .section-title { font-size: 1.8rem; }
  .container { padding: 0 16px; }
  .bleed-left-content, .bleed-right-content { padding: 40px 16px; }
  .alma-title-huge { font-size: 2rem; }
  .sobre h2 { font-size: 1.8rem; }
}