/* ==========================================================================
   Tangará Ilhabela — styles.css (arquivo único — redesign editorial)
   Sumário:
     1. Variáveis / reset / tipografia
     2. Container / botões / utilidades / scroll progress
     3. Navbar (pílula flutuante)
     4. Hero (editorial)
     5. Marquee
     6. Sections + numeração grande
     7. Carrossel
     8. Quote
     9. Menu cards (layout assimétrico)
    10. Amenidades
    11. Footer + assinatura tipográfica
    12. WhatsApp flutuante
   ========================================================================== */


/* ===== 1. Variáveis / reset / tipografia ================================ */
:root {
  /* Paleta */
  --color-primary:    #487E55;
  --color-primary-dk: #2E5538;
  --color-accent:     #95C11F;
  --color-accent-dk:  #7BA516;
  --color-sand:       #EFEAD8;
  --color-sand-dk:    #E4DCC4;
  --color-clay:       #C9A678;
  --color-bg-light:   #FAF8F0;
  --color-bg-dark:    #141413;
  --color-bg-dark-2:  #1c1c1a;
  --color-text-dark:  #1A1A18;
  --color-text-muted: #3A3A36;
  --color-text-soft:  #6b6b65;
  --color-white:      #FFFFFF;
  --color-border:     rgba(20,20,19,0.10);

  /* Fontes */
  --font-sans:        'Albert Sans', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif:       'Fraunces', 'Cormorant Garamond', Georgia, "Times New Roman", serif;

  /* Raios + sombras */
  --radius-sm:        6px;
  --radius:           14px;
  --radius-lg:        24px;
  --radius-pill:      999px;

  --transition:       0.3s cubic-bezier(.2,.7,.2,1);
  --transition-slow:  0.7s cubic-bezier(.2,.7,.2,1);

  --shadow-sm:        0 2px 10px rgba(20,20,19,0.06);
  --shadow:           0 12px 30px rgba(20,20,19,0.10);
  --shadow-hover:     0 18px 48px rgba(20,20,19,0.18);

  /* Layout */
  --container:        1280px;
  --section-pad-y:    clamp(80px, 11vw, 160px);
  --gutter:           clamp(24px, 4vw, 64px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-dark);
  background: var(--color-bg-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Tipografia base */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); font-weight: 500; }
h4 { font-family: var(--font-sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 700; }

p  {
  color: var(--color-text-muted);
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  line-height: 1.7;
}

::selection { background: var(--color-primary); color: var(--color-sand); }


/* ===== 2. Container / botões / utilidades =============================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 56px);
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--color-accent);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 100;
  transition: transform 0.1s linear;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  transition: transform var(--transition), background var(--transition),
              box-shadow var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
  border: 1.5px solid transparent;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

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

.btn--accent  { background: var(--color-accent); color: var(--color-text-dark); box-shadow: 0 8px 24px rgba(149,193,31,0.35); }
.btn--accent:hover { background: var(--color-accent-dk); color: var(--color-text-dark); }

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.45);
  padding: 13px 22px;
}
.btn--ghost:hover { background: var(--color-white); color: var(--color-text-dark); border-color: var(--color-white); }
.btn--ghost svg { transition: transform var(--transition); }
.btn--ghost:hover svg { transform: translateX(4px); }

/* Link com seta (editorial) */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  transition: color var(--transition), border-color var(--transition);
}
.link-arrow svg { transition: transform var(--transition); }
.link-arrow:hover { color: var(--color-primary-dk); }
.link-arrow:hover svg { transform: translateX(5px); }

.link-arrow--light { color: var(--color-sand); }
.link-arrow--light:hover { color: var(--color-accent); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}


/* ===== 3. Navbar (pílula flutuante) ===================================== */
.navbar {
  position: fixed;
  inset: 20px 0 auto 0;
  z-index: 50;
  pointer-events: none;
  transition: inset var(--transition);
}
.navbar__pill {
  pointer-events: auto;
  margin: 0 auto;
  max-width: min(1180px, calc(100% - 32px));
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 22px;
  background: rgba(20, 20, 19, 0.55);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 32px rgba(20,20,19,0.22), inset 0 0 0 1px rgba(250,248,240,0.08);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.is-scrolled .navbar__pill {
  background: rgba(20, 20, 19, 0.88);
  box-shadow: 0 14px 40px rgba(20,20,19,0.32), inset 0 0 0 1px rgba(250,248,240,0.10);
}

.navbar__logo {
  display: flex;
  align-items: center;
  height: 44px;
  flex-shrink: 0;
}
.navbar__logo img {
  height: 38px;
  width: auto;
  transition: transform var(--transition);
}
.navbar__logo:hover img { transform: scale(1.04); }

.navbar__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.navbar__nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}
.navbar__nav a {
  position: relative;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.92rem;
  color: rgba(250, 248, 240, 0.85);
  padding: 8px 2px;
  transition: color var(--transition);
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transform: translateX(-50%);
  transition: width var(--transition);
}
.navbar__nav a:hover { color: var(--color-accent); }
.navbar__nav a:hover::after { width: 100%; }

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--color-accent);
  color: var(--color-text-dark);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition), color var(--transition);
}
.navbar__cta svg { transition: transform var(--transition); }
.navbar__cta:hover { background: var(--color-sand); color: var(--color-text-dark); }
.navbar__cta:hover svg { transform: translateX(3px); }

.navbar__burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(250, 248, 240, 0.10);
  position: relative;
  z-index: 60;
  margin-left: auto;
}
.navbar__burger span {
  display: block;
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--color-sand);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.35s ease, top 0.35s ease, opacity 0.2s ease, background var(--transition);
}
.navbar__burger span:nth-child(1) { top: 14px; }
.navbar__burger span:nth-child(2) { top: 19px; }
.navbar__burger span:nth-child(3) { top: 24px; }

.navbar__burger.is-open span:nth-child(1) { top: 19px; transform: translateX(-50%) rotate(45deg); }
.navbar__burger.is-open span:nth-child(2) { opacity: 0; }
.navbar__burger.is-open span:nth-child(3) { top: 19px; transform: translateX(-50%) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,20,19,0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 40;
}
.nav-overlay.is-open { opacity: 1; pointer-events: auto; }

@media (max-width: 900px) {
  .navbar { inset: 12px 0 auto 0; }
  .navbar__pill { padding: 8px 8px 8px 18px; }
  .navbar__nav,
  .navbar__cta { display: none; }
  .navbar__burger { display: block; }

  .navbar__pill.is-mobile-open .navbar__nav,
  .navbar__pill.is-mobile-open .navbar__cta { display: none; }

  .navbar__nav.is-open {
    position: fixed;
    inset: 0;
    background: var(--color-sand);
    display: flex;
    z-index: 55;
    padding: 100px 32px 40px;
  }
  .navbar__nav.is-open ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
  }
  .navbar__nav.is-open a {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text-dark);
  }
}


/* ===== 4. Hero ========================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero__slides { position: absolute; inset: 0; z-index: 1; }

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  will-change: opacity, transform;
}
.hero__slide.is-active {
  opacity: 1;
  animation: kenBurns 16s ease-out forwards;
}

@keyframes kenBurns {
  0%   { transform: scale(1.08) translate(0, 0); }
  100% { transform: scale(1.18) translate(-1.2%, -1.2%); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(20,20,19,0.55) 0%, rgba(20,20,19,0.20) 45%, rgba(20,20,19,0.50) 100%),
    linear-gradient(to bottom, rgba(20,20,19,0.10), rgba(20,20,19,0.55) 85%);
}

/* Meta lateral vertical */
.hero__meta {
  position: absolute;
  z-index: 3;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__meta--left {
  left: 36px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
}
.hero__meta--right {
  right: 36px;
  bottom: 100px;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  writing-mode: vertical-rl;
  letter-spacing: 0.32em;
}
.hero__meta-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
}

.hero__content {
  position: relative;
  z-index: 3;
  color: var(--color-white);
  padding-top: 110px;
  padding-bottom: 120px;
  max-width: 900px;
  animation: fadeInUp 1s ease-out 0.25s both;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.hero__title {
  color: var(--color-white);
  font-weight: 400;
  line-height: 1.02;
  margin-bottom: 26px;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  color: var(--color-sand);
}

.hero__subtitle {
  color: rgba(255,255,255,0.86);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  max-width: 540px;
  margin-bottom: 38px;
  line-height: 1.55;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}
.hero__dot {
  width: 30px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background var(--transition), width var(--transition);
}
.hero__dot.is-active { background: var(--color-accent); }

.hero__scroll {
  position: absolute;
  bottom: 30px;
  right: 36px;
  z-index: 4;
  color: rgba(255,255,255,0.78);
  display: none;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
@media (min-width: 1024px) { .hero__scroll { display: flex; } }
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30%;
  background: var(--color-accent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { top: -30%; }
  100% { top: 100%; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero__meta--left, .hero__meta--right { display: none; }
  .hero__content { padding-top: 130px; padding-bottom: 100px; }
  .hero__dots { bottom: 40px; }
}


/* ===== 5. Marquee ======================================================= */
.marquee {
  background: var(--color-sand);
  color: var(--color-text-dark);
  border-top: 1px solid rgba(20,20,19,0.06);
  border-bottom: 1px solid rgba(20,20,19,0.06);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  animation: marqueeScroll 38s linear infinite;
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.4vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.marquee__track span { display: inline-block; }
.marquee__track em { font-style: italic; }
.marquee__sep {
  color: var(--color-accent);
  font-size: 0.7em;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ===== 6. Sections ====================================================== */
.section {
  padding: var(--section-pad-y) 0;
  position: relative;
  background: var(--color-bg-light);
  overflow: hidden;
}
.section--alt { background: var(--color-white); }
.section--dark {
  background: var(--color-primary);
  color: var(--color-sand);
}
.section--dark p,
.section--dark .section__title { color: var(--color-sand); }
.section--dark a:not(.btn):not(.link-arrow) { color: var(--color-accent); }
.section--dark a:not(.btn):not(.link-arrow):hover { color: var(--color-white); }

/* Numeração gigante de fundo */
.section__big-num {
  position: absolute;
  left: clamp(20px, 4vw, 60px);
  top: clamp(30px, 5vw, 70px);
  font-family: var(--font-serif);
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 300;
  line-height: 0.85;
  color: var(--color-text-dark);
  opacity: 0.06;
  pointer-events: none;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144;
  z-index: 0;
  user-select: none;
}
.section__big-num--light { color: var(--color-sand); opacity: 0.08; }

.section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  align-items: center;
}
.section__inner--carousel-right .section__media  { order: 2; }
.section__inner--carousel-right .section__text   { order: 1; }
.section__inner--carousel-left  .section__media  { order: 1; }
.section__inner--carousel-left  .section__text   { order: 2; }

.section__media { min-width: 0; }

.section__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 480px;
  gap: 22px;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.section__eyebrow--light { color: var(--color-accent); }
.section__eyebrow-num {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
  color: currentColor;
  opacity: 0.7;
  padding-right: 8px;
  border-right: 1px solid currentColor;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.section__text p {
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.7;
}
.section--dark .section__text p { color: rgba(250,248,240,0.86); }

@media (max-width: 900px) {
  .section__inner,
  .section__inner--carousel-left,
  .section__inner--carousel-right {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section__inner--carousel-right .section__media,
  .section__inner--carousel-right .section__text,
  .section__inner--carousel-left .section__media,
  .section__inner--carousel-left .section__text { order: initial; }
  .section__media { order: 1; }
  .section__text  { order: 2; max-width: 100%; }
  .section__big-num { font-size: 130px; opacity: 0.05; }
}


/* ===== 7. Carrossel ===================================================== */
.carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #0c0c0c;
  isolation: isolate;
}

.carousel__track {
  display: flex;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel__track::-webkit-scrollbar { display: none; }

.carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  aspect-ratio: 4 / 5;
  position: relative;
  background: #0c0c0c;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease-out;
}
.carousel:hover .carousel__slide img { transform: scale(1.05); }

.carousel--compact .carousel__slide { aspect-ratio: 16 / 9; }

@media (min-width: 900px) {
  .carousel__slide { aspect-ratio: 4 / 5; }
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(250, 248, 240, 0.92);
  color: var(--color-text-dark);
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity var(--transition), background var(--transition), transform var(--transition);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  z-index: 3;
}
.carousel:hover .carousel__btn { opacity: 1; }
.carousel__btn:hover {
  background: var(--color-accent);
  transform: translateY(-50%) scale(1.08);
}
.carousel__btn--prev { left: 16px; }
.carousel__btn--next { right: 16px; }

.carousel__counter {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(20,20,19,0.55);
  color: var(--color-sand);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
  z-index: 3;
}

.carousel__dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.carousel__dot {
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background var(--transition);
}
.carousel__dot.is-active { background: var(--color-accent); }

.carousel__btn:focus-visible,
.carousel__dot:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .carousel__btn { width: 42px; height: 42px; opacity: 1; }
}


/* ===== 8. Quote ========================================================= */
.quote {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--color-sand);
  position: relative;
  text-align: center;
}
.quote__mark {
  width: 56px;
  height: auto;
  color: var(--color-primary);
  opacity: 0.4;
  margin: 0 auto 28px;
  display: block;
}
.quote blockquote {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.quote blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.quote blockquote p em {
  font-style: italic;
  color: var(--color-primary);
}
.quote blockquote footer {
  margin-top: 30px;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}


/* ===== 9. Menu cards (assimétrico) ====================================== */
.menu-cards {
  position: relative;
  padding: var(--section-pad-y) 0;
  background: var(--color-bg-light);
  overflow: hidden;
}

.menu-cards__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 7vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.menu-cards__lead {
  color: var(--color-text-muted);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  max-width: 580px;
}

.menu-cards__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 3vw, 36px) clamp(16px, 2.5vw, 28px);
  max-width: 1100px;
  margin: 0 auto;
}

/* Layout assimétrico — 4 cards posicionados em 12 colunas */
.menu-card--a { grid-column: 1 / span 6; }
.menu-card--b { grid-column: 7 / span 6; margin-top: 60px; }
.menu-card--c { grid-column: 2 / span 6; }
.menu-card--d { grid-column: 8 / span 5; margin-top: -40px; }

.menu-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.menu-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0c0c0c;
}
.menu-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.menu-card:hover .menu-card__media img { transform: scale(1.06); }

.menu-card__body {
  padding: 24px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-card__tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.menu-card__body h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 500;
  color: var(--color-text-dark);
  margin-top: 4px;
}
.menu-card__body p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 2px;
}

@media (max-width: 820px) {
  .menu-cards__grid { grid-template-columns: 1fr; max-width: 540px; }
  .menu-card--a, .menu-card--b, .menu-card--c, .menu-card--d {
    grid-column: 1 / -1;
    margin-top: 0;
  }
}


/* ===== 10. Amenidades =================================================== */
.amenities {
  position: relative;
  padding: var(--section-pad-y) 0;
  background: var(--color-bg-light);
  overflow: hidden;
}
.amenities__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  position: relative;
  z-index: 1;
}
.amenities__text { max-width: 520px; display: flex; flex-direction: column; gap: 22px; }

.amenities__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  padding-top: 16px;
}
.amenities__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  color: var(--color-text-dark);
  font-weight: 500;
  line-height: 1.45;
}
.amenities__list li svg {
  color: var(--color-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.amenities__cta {
  margin: 40px 0 56px;
  position: relative;
  z-index: 1;
}

.amenities__media {
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .amenities__inner { grid-template-columns: 1fr; }
  .amenities__list { grid-template-columns: 1fr; }
}


/* ===== 11. Footer + assinatura tipográfica ============================== */
.footer {
  background: var(--color-bg-dark);
  color: rgba(250,248,240,0.72);
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 56px;
  position: relative;
  z-index: 2;
}

.footer__col h4 {
  color: var(--color-sand);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer__heading-spaced { margin-top: 28px; }

.footer__brand { display: flex; flex-direction: column; gap: 22px; }
.footer__brand img {
  width: auto;
  height: 56px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.footer__tagline {
  color: rgba(250,248,240,0.68);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.5;
  font-style: italic;
  max-width: 320px;
  font-variation-settings: "opsz" 144;
}

.footer__line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(250,248,240,0.75);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 10px;
}
.footer__line svg {
  color: var(--color-accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__link { transition: color var(--transition), transform var(--transition); }
.footer__link:hover { color: var(--color-accent); transform: translateX(2px); }

.footer__map {
  display: inline-block;
  margin-top: 8px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition), transform var(--transition);
}
.footer__map:hover { color: var(--color-sand); transform: translateX(4px); }

.footer__nav { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__nav a {
  font-size: 0.94rem;
  color: rgba(250,248,240,0.72);
  transition: color var(--transition), padding-left var(--transition);
}
.footer__nav a:hover { color: var(--color-accent); padding-left: 6px; }

.footer__socials { display: flex; gap: 12px; margin-top: 4px; }
.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(250,248,240,0.06);
  display: grid;
  place-items: center;
  color: var(--color-sand);
  transition: background var(--transition), transform var(--transition), color var(--transition);
}
.footer__socials a:hover {
  background: var(--color-accent);
  color: var(--color-text-dark);
  transform: scale(1.12);
}

.footer__handles { margin-top: 14px; font-size: 0.86rem; color: rgba(250,248,240,0.55); }
.footer__handles a { color: rgba(250,248,240,0.78); }
.footer__handles a:hover { color: var(--color-accent); }

/* Assinatura tipográfica */
.footer__signature {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(80px, 18vw, 260px);
  line-height: 0.85;
  letter-spacing: -0.035em;
  color: rgba(250,248,240,0.06);
  padding: 0 clamp(20px, 4vw, 60px) 40px;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  font-variation-settings: "opsz" 144;
}
.footer__signature span { display: inline-block; }
.footer__signature-it em {
  font-style: italic;
  color: rgba(149,193,31,0.16);
  margin-left: 0.15em;
}

.footer__bottom {
  border-top: 1px solid rgba(250,248,240,0.08);
  padding: 22px 0;
  position: relative;
  z-index: 2;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  color: rgba(250,248,240,0.55);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}
.footer__bottom-coords {
  font-family: var(--font-serif);
  font-style: italic;
  letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer { padding-top: 60px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__heading-spaced { margin-top: 20px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}


/* ===== 12. WhatsApp flutuante =========================================== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--color-white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 60;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform var(--transition);
  animation: pulseWhats 2.6s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--color-white);
}

@keyframes pulseWhats {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
}
