/* =====================================================
 * Hotel & Pousada Los Hermanos — CSS
 * Sem JavaScript. Usa CSS scroll-driven animations para:
 *   • Navbar com fundo ao rolar (animation-timeline: scroll)
 *   • Reveal on scroll (animation-timeline: view)
 *   • Menu mobile via <details>/<summary>
 * ===================================================== */

/* ============= FONTES ============= */
@font-face {
  font-family: "Tusker Grotesk";
  src: url("/fonts/tusker-grotesk-4700-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/SpaceGrotesk-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* ============= VARIÁVEIS ============= */
:root {
  --ink: #202020;
  --ink-2: #2a2a2a;
  --ink-3: #333333;
  --paper: #f5f5f5;
  --paper-2: #e8e8e8;
  --line: #2a2a2a;
  --gold: #e7c203;
  --gold-2: #f0d446;
  --gold-deep: #b89a02;
  --river: #5a6b58;

  --display: "Tusker Grotesk", system-ui, sans-serif;
  --serif: "Tusker Grotesk", system-ui, sans-serif;
  --sans: "Space Grotesk", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1280px;
  --pad-x: clamp(20px, 5vw, 80px);
}

/* ============= RESET / BASE ============= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: .92;
}

h2 {
  letter-spacing: -0.025em;
}

h3 {
  letter-spacing: -0.015em;
}

p {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
}

/* ============= UTILITÁRIOS ============= */
.eyebrow {
  font-family: var(--mono);
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.dark .eyebrow {
  color: var(--gold-2);
}

.italic,
.it {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-deep);
}

.dark .italic,
.dark .it {
  color: var(--gold-2);
}

.section {
  position: relative;
  padding: clamp(64px, 9vw, 140px) var(--pad-x);
}

.section.dark {
  background: var(--ink);
  color: var(--paper);
}

.section .inner {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}

.rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 22px 0;
}

/* ============= BOTÕES ============= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: transparent;
  transition: background .25s ease, color .25s ease, transform .25s ease;
  cursor: pointer;
}

.btn:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

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

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

.btn.dark {
  color: var(--paper);
}

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

.btn svg {
  width: 16px;
  height: 16px;
}

/* ============= NAVBAR ============= */
/*
 * Fundo da navbar controlado por CSS scroll-driven animation.
 * De transparente (scroll = 0) até escuro translúcido (scroll = 80px).
 * Não precisa de JavaScript.
 */
@keyframes nav-bg {
  from {
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    padding-block: 18px;
    border-bottom-color: transparent;
  }

  to {
    background: rgba(20, 20, 20, .88);
    backdrop-filter: blur(14px);
    padding-block: 12px;
    border-bottom-color: rgba(232, 201, 135, .18);
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding-inline: var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  /* Scroll-driven animation */
  animation: nav-bg linear both;
  animation-timeline: scroll(root);
  animation-range: 0px 80px;
}

/* Fallback: navegadores sem scroll-driven animations */
@supports not (animation-timeline: scroll()) {
  .nav {
    background: rgba(20, 20, 20, .88);
    backdrop-filter: blur(14px);
    padding-block: 12px;
    border-bottom-color: rgba(232, 201, 135, .18);
  }
}

.nav .brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--paper);
}

.nav .nav-logo {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity .2s ease;
}

.nav .brand:hover .nav-logo {
  opacity: .85;
}

/* Links desktop */
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: .85;
  transition: opacity .2s ease, color .2s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold-2);
}

/* CTA da nav */
.nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ============= MENU MOBILE (details/summary — zero JS) ============= */
.nav-details {
  display: none;
  /* oculto no desktop */
}

/* O <summary> vira o botão hamburger */
.burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
  list-style: none;
}

/* Remove marcador padrão do <summary> */
.burger::-webkit-details-marker {
  display: none;
}

.burger::marker {
  display: none;
  content: "";
}

.burger span {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold-2);
  transition: transform .25s ease, opacity .25s ease;
}

/* Animação do ícone ao abrir */
.nav-details[open] .burger span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-details[open] .burger span:nth-child(2) {
  opacity: 0;
}

.nav-details[open] .burger span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Drawer do menu mobile — posicionado em relação à .nav (position:fixed) */
.nav-drawer {
  position: absolute;
  top: 100%;
  /* logo abaixo da .nav */
  left: 0;
  right: 0;
  list-style: none;
  margin: 0;
  padding: 24px var(--pad-x);
  background: rgba(20, 20, 20, .96);
  border-top: 1px solid rgba(232, 201, 135, .2);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 60;
}

.nav-drawer a {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: .85;
  transition: opacity .2s ease, color .2s ease;
}

.nav-drawer a:hover {
  opacity: 1;
  color: var(--gold-2);
}

.nav-drawer .nav-cta {
  align-self: flex-start;
  margin-top: 6px;
}

@media (max-width: 900px) {

  .nav-links,
  .nav>.nav-cta {
    display: none;
  }

  .nav-details {
    display: block;
  }
}

/* ============= HERO ============= */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(100px, 18vh, 200px);
  padding-bottom: clamp(60px, 8vh, 100px);
}

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

.hero .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95);
}

.hero .vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .15) 25%, rgba(0, 0, 0, .35) 60%, rgba(0, 0, 0, .92) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .3) 70%);
  pointer-events: none;
}

.hero .content {
  position: relative;
  z-index: 3;
  padding: 0 var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.hero h1 {
  font-size: clamp(72px, 14vw, 188px);
  line-height: .85;
  font-weight: 400;
  color: var(--paper);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 300;
}

.hero .sub {
  margin-top: 32px;
  font-family: var(--sans);
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.5;
  color: #fff;
  max-width: 740px;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-left: auto;
  margin-right: auto;
}

.hero .cta-row {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero .hero-foot {
  position: absolute;
  z-index: 3;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(232, 201, 135, .25);
  padding-top: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero .hero-foot .l2 {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--gold-2);
  font-style: italic;
  margin-top: 4px;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 700px) {
  .hero .hero-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hero .cta-row {
    margin-top: 64px;
  }
}

/* ============= SOBRE ============= */
.about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.about .img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(184, 154, 2, .25);
}

.about .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about h2 {
  font-size: clamp(52px, 7.5vw, 108px);
  line-height: .88;
  font-weight: 400;
}

.about .body {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: #4a4133;
  margin-top: 12px;
}

.about .loc {
  margin-top: 28px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.about .loc .row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: clamp(15px, 1.4vw, 18px);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.about .loc .row em {
  font-style: italic;
  color: var(--gold-deep);
}

.about .loc .pin {
  width: 24px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
}

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

/* ============= ESTRUTURA ============= */
.structure .head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: flex-end;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(232, 201, 135, .22);
}

.structure h2 {
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: .9;
  font-weight: 400;
  max-width: 780px;
}

.structure .head .stat {
  text-align: right;
}

.structure .head .n {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  color: var(--gold-2);
  font-weight: 300;
}

.structure .head .l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 6px;
}

.structure .grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

@media (max-width: 700px) {
  .structure .grid {
    grid-template-columns: 1fr;
  }
}

.structure .card {
  background: var(--ink-2);
  border: 1px solid rgba(232, 201, 135, .18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.structure .card .ph {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #1a1611;
  overflow: hidden;
}

.structure .card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.structure .card:hover .ph img {
  transform: scale(1.04);
}

.structure .card .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold-2);
  background: rgba(11, 10, 8, .7);
}

.structure .card .body-wrap {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.structure .card .kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.structure .card h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--paper);
  font-weight: 400;
  line-height: 1.0;
}

.structure .card h3 .it {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 300;
}

.structure .card .rule {
  width: 32px;
  margin: 14px 0;
}

.structure .card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.structure .card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  color: #d6cab2;
}

.structure .card li b {
  color: #e9dec6;
  font-weight: 500;
}

.structure .card li .ck {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
}

.structure .card li .ck::after {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 1.5px solid var(--gold-2);
  border-bottom: 1.5px solid var(--gold-2);
  transform: rotate(-45deg) translate(1px, -1px);
}

.structure .card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .2s ease, color .2s ease;
}

.structure .card .card-link:hover {
  gap: 14px;
  color: var(--gold-2);
}

.structure .card .card-link svg {
  width: 14px;
  height: 14px;
}

/* ============= EXPERIÊNCIA ============= */
.experience .quote {
  position: relative;
  min-height: clamp(360px, 60vh, 620px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(36px, 6vw, 80px);
  margin-bottom: clamp(40px, 6vw, 80px);
  border: 1px solid rgba(184, 154, 2, .35);
}

.experience .quote img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.experience .quote .over {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .05) 35%, rgba(0, 0, 0, .65) 78%, rgba(0, 0, 0, .9) 100%);
}

.experience .quote .text {
  position: relative;
  z-index: 3;
  color: var(--paper);
  max-width: 44%;
}

@media (max-width: 900px) {
  .experience .quote .text {
    max-width: 100%;
  }
}

.experience .quote .eyebrow {
  color: var(--gold-2);
}

.experience .quote .big {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.05;
  font-weight: 400;
  color: var(--paper);
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.experience .quote .big em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 300;
}

.experience .quote .credit {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .24em;
  color: var(--gold);
  text-transform: uppercase;
}

.experience .duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

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

.experience .col .kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .24em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.experience .col h3 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -0.02em;
}

.experience .col h3 .it {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 300;
}

.experience .list {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
}

@media (max-width: 600px) {
  .experience .list {
    grid-template-columns: 1fr;
  }
}

.experience .list .item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 4px;
  border-top: 1px solid rgba(11, 10, 8, .18);
  font-family: var(--serif);
  font-size: clamp(15px, 1.4vw, 19px);
  color: var(--ink);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.experience .list .item:last-child {
  border-bottom: 1px solid rgba(11, 10, 8, .18);
}

.experience .ck {
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold-deep);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.experience .ck::after {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 1.5px solid var(--gold-deep);
  border-bottom: 1.5px solid var(--gold-deep);
  transform: rotate(-45deg) translate(1px, -1px);
}

.experience .box {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  border: 1px solid var(--gold);
}

.experience .box::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(232, 201, 135, .22);
  pointer-events: none;
}

.experience .box .label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--gold-2);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.experience .box h4 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: var(--paper);
  line-height: 1.05;
}

.experience .box h4 .it {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 300;
}

.experience .box .rule {
  width: 42px;
  margin: 18px 0 20px;
}

.experience .box .rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.experience .box .row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: #d6cab2;
  line-height: 1.5;
}

.experience .box .row .ico {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 18px;
}

.experience .box .row b {
  display: block;
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .02em;
}

/* ============= GALERIA ============= */
.gallery {
  padding-bottom: clamp(32px, 4vw, 56px);
}

.gallery h2 {
  font-size: clamp(44px, 6vw, 80px);
  line-height: .92;
  font-weight: 400;
}

.gallery .head {
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(232, 201, 135, .24);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gallery .grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}

@media (max-width: 900px) {
  .gallery .grid {
    grid-auto-rows: 180px;
  }
}

.gallery .grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid rgba(231, 194, 3, .12);
}

.gallery .grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.gallery .grid figure:hover img {
  transform: scale(1.06);
}

/* Layout do mosaico */
.gallery .a {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery .b {
  grid-column: span 5;
}

.gallery .c {
  grid-column: span 5;
}

.gallery .d {
  grid-column: span 4;
}

.gallery .e {
  grid-column: span 4;
}

.gallery .f {
  grid-column: span 4;
}

@media (max-width: 900px) {
  .gallery .a {
    grid-column: span 12;
    grid-row: span 2;
  }

  .gallery .b,
  .gallery .c {
    grid-column: span 6;
  }

  .gallery .d,
  .gallery .e,
  .gallery .f {
    grid-column: span 6;
  }
}

@media (max-width: 540px) {

  .gallery .a,
  .gallery .b,
  .gallery .c,
  .gallery .d,
  .gallery .e,
  .gallery .f {
    grid-column: span 12;
  }
}

/* ============= CTA / RESERVAS ============= */
.cta {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: #000;
}

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

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

.cta .veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .25) 22%, rgba(11, 10, 8, .8) 60%, rgba(11, 10, 8, .96) 100%);
}

.cta .inner {
  position: relative;
  z-index: 3;
}

.cta .topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.cta .topline .id {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .26em;
  color: var(--gold);
  text-transform: uppercase;
}

.cta h2 {
  font-size: clamp(56px, 8.5vw, 120px);
  line-height: 1.05;
  font-weight: 400;
  color: var(--paper);
  margin-top: 16px;
  letter-spacing: -0.02em;
}

.cta h2 em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 300;
}

.cta .lede {
  margin-top: 30px;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
  color: var(--paper);
  max-width: 760px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.cta .cta-row {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta .grid {
  margin-top: 70px;
  padding-top: 36px;
  border-top: 1px solid rgba(232, 201, 135, .28);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 36px;
}

@media (max-width: 900px) {
  .cta .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .cta .grid {
    grid-template-columns: 1fr;
  }
}

.cta .cell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
}

.cta .cell .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .26em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta .cell .ic {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold-2);
}

.cta .cell .ic svg {
  width: 15px;
  height: 15px;
}

.cta .cell .value {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--paper);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.cta .cell .small {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: #9d8b66;
  margin-top: 6px;
  text-transform: uppercase;
}

.cta .sign {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(232, 201, 135, .2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .28em;
  color: var(--gold);
  text-transform: uppercase;
}

.cta .sign .center {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--gold-2);
  letter-spacing: 0;
  text-transform: none;
}

/* ============= COMO CHEGAR ============= */
.como-chegar {
  background: var(--paper);
}

.cc-head {
  margin-bottom: 40px;
}

.cc-head h2 {
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: .95;
  font-weight: 400;
  margin-top: 14px;
}

.cc-body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

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

.cc-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cc-block {
  border-left: 2px solid var(--gold);
  padding-left: 18px;
}

.cc-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}

.cc-value {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.cc-btn svg {
  width: 16px;
  height: 16px;
}

.cc-map {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(184, 154, 2, .25);
  background: var(--ink-2);
  position: relative;
  display: block;
}

.cc-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.cc-map:hover img {
  transform: scale(1.03);
}

.cc-map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0);
  color: transparent;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .3s ease, color .3s ease;
}

.cc-map-overlay svg {
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: opacity .3s ease;
}

.cc-map:hover .cc-map-overlay {
  background: rgba(0, 0, 0, .45);
  color: var(--gold-2);
}

.cc-map:hover .cc-map-overlay svg {
  opacity: 1;
}

@media (max-width: 900px) {
  .cc-map {
    aspect-ratio: 16 / 9;
  }
}

/* ============= FOOTER ============= */
.footer {
  background: #0a0a0a;
  color: #7a715f;
  padding: 40px var(--pad-x);
  border-top: 1px solid rgba(232, 201, 135, .12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  opacity: .75;
  transition: opacity .2s ease;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-text {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #7a715f;
  text-align: center;
}

.footer-text span {
  color: var(--gold);
}

.footer-credits {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #4a4438;
  margin-top: 4px;
  text-align: center;
}

.footer-credits a {
  color: #6a5f4a;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-credits a:hover {
  color: var(--gold);
}

/* ============= WHATSAPP FAB ============= */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35), 0 0 0 2px rgba(255, 255, 255, .08);
  z-index: 40;
  transition: transform .25s ease, box-shadow .25s ease;
}

.wa-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45), 0 0 0 2px rgba(255, 255, 255, .14);
}

.wa-fab svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 600px) {
  .wa-fab {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }

  .wa-fab svg {
    width: 26px;
    height: 26px;
  }
}

/* ============= HERO EYEBROW ============= */
.hero-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: rgba(0, 0, 0, .45);
  border: 1px solid rgba(231, 194, 3, .35);
  padding: 8px 14px;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}

/* ============= GUIDES ============= */
.guides {
  background: var(--paper);
}

.guides .head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  margin-bottom: 56px;
}

.guides .head h2 {
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: .95;
  font-weight: 400;
  margin-top: 14px;
}

.guides .lede {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: #3a3a3a;
  max-width: 520px;
}

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

/* Duo card unificado */
.guides .duo-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  background: #fff;
  border: 1px solid rgba(184, 154, 2, .18);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
}

.guides .duo-card .photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
}

.guides .duo-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.guides .duo-card:hover .photo img {
  transform: scale(1.05);
}

.guides .duo-card .info {
  padding: clamp(28px, 4vw, 44px);
}

.guides .duo-card .names h3 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
}

.guides .duo-card .names .amp {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 300;
}

.guides .duo-card .roles {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 10px;
}

.guides .duo-card .roles .sep {
  color: var(--line);
  opacity: .4;
}

.guides .duo-card .rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 18px;
}

.guides .duo-card .bio {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
}

@media (max-width: 800px) {
  .guides .duo-card {
    grid-template-columns: 1fr;
  }

  .guides .duo-card .photo {
    aspect-ratio: 16 / 9;
  }
}

/* ============= ROTEIRO ============= */
.roteiro {
  background: var(--ink);
  color: var(--paper);
}

.roteiro .head {
  max-width: 720px;
  margin-bottom: 64px;
}

.roteiro .head h2 {
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: .95;
  font-weight: 400;
  margin-top: 14px;
  color: var(--paper);
}

.roteiro .lede {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(245, 245, 245, .7);
  margin-top: 18px;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 120px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(231, 194, 3, .4), transparent);
}

@media (max-width: 720px) {
  .timeline::before {
    left: 22px;
  }
}

.timeline .step {
  display: grid;
  grid-template-columns: 120px 32px 1fr;
  align-items: start;
  gap: 0;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.timeline .step:last-child {
  border-bottom: none;
}

.timeline .hour {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.timeline .hour .t {
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1;
  color: var(--gold-2);
  font-weight: 400;
}

.timeline .hour .until {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, .5);
}

.timeline .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  margin-left: 9px;
  margin-top: 12px;
  box-shadow: 0 0 0 4px rgba(231, 194, 3, .18);
}

.timeline .body h4 {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--paper);
  margin: 0 0 6px;
  line-height: 1.1;
}

.timeline .body p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245, 245, 245, .7);
  margin: 0;
  max-width: 560px;
}

@media (max-width: 720px) {
  .timeline .step {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 50px;
    position: relative;
  }

  .timeline .hour {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
  }

  .timeline .dot {
    position: absolute;
    left: 16px;
    top: 28px;
    margin: 0;
  }
}

.roteiro .extra {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid rgba(231, 194, 3, .25);
  background: rgba(255, 255, 255, .02);
  font-size: 14px;
  color: rgba(245, 245, 245, .78);
  line-height: 1.5;
}

.roteiro .extra .ic {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

/* ============= PEIXES ============= */
.peixes {
  background: var(--paper);
}

.peixes .head {
  max-width: 720px;
  margin-bottom: 56px;
}

.peixes .head h2 {
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: .95;
  font-weight: 400;
  margin-top: 14px;
}

.peixes .lede {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: #3a3a3a;
  margin-top: 18px;
}

.peixes .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.2vw, 32px);
}

@media (max-width: 1000px) {
  .peixes .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .peixes .grid {
    grid-template-columns: 1fr;
  }
}

.fish-card {
  background: #fff;
  border: 1px solid rgba(184, 154, 2, .18);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.fish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
  border-color: var(--gold);
}

.badge-fish {
  width: 64px;
  height: 32px;
  color: var(--gold-deep);
  margin-bottom: 18px;
}

.badge-fish svg {
  width: 100%;
  height: 100%;
}

.fish-card h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  margin: 0;
}

.fish-card .sci {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: #6a6a6a;
  margin-top: 6px;
}

.fish-card .rule {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 14px 0 12px;
}

.fish-card p {
  font-size: 14px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0;
}

.peixes .news {
  margin-top: 56px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px 36px;
  align-items: start;
  border-left: 4px solid var(--gold);
}

@media (max-width: 720px) {
  .peixes .news {
    grid-template-columns: 1fr;
  }
}

.peixes .news-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-2);
  padding: 6px 12px;
  border: 1px solid rgba(231, 194, 3, .4);
  align-self: start;
  white-space: nowrap;
}

.peixes .news h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--paper);
}

.peixes .news p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 245, 245, .8);
  margin: 0 0 14px;
  max-width: 620px;
}

.peixes .news-credit {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, .5);
}

/* ============= RESERVAS ============= */

/* ============= STRUCTURE LEDE ============= */
.structure .head .eyebrow {
  color: var(--gold-2);
}

.structure .head .lede {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(245, 245, 245, .7);
  margin-top: 16px;
  max-width: 520px;
}

/* ============= ABOUT EYEBROW ============= */
.about .text .eyebrow {
  display: block;
  margin-bottom: 14px;
}

/* ============= REVEAL ON SCROLL (CSS scroll-driven) ============= */
/*
 * Substitui o IntersectionObserver do JavaScript original.
 * animation-timeline: view() anima o elemento conforme ele
 * entra no viewport, sem nenhuma linha de JS.
 */
@keyframes reveal-up {
  from {
    opacity: 0;
    translate: 0 24px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

.reveal {
  animation: reveal-up linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 28%;
}

/* Fallback para navegadores sem scroll-driven animations */
@supports not (animation-timeline: view()) {
  .reveal {
    opacity: 1;
    translate: none;
  }
}

/* Respeita preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    animation: none;
    opacity: 1;
    translate: none;
  }

  .nav {
    animation: none;
    background: rgba(20, 20, 20, .88);
    backdrop-filter: blur(14px);
    padding-block: 12px;
    border-bottom-color: rgba(232, 201, 135, .18);
  }
}

/* ============= CLIENTES / CARROSSEL ============= */
.clientes {
  background: var(--ink);
  color: var(--paper);
}

.clientes .head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 80px);
}

.clientes .eyebrow {
  color: var(--gold);
}

.clientes .head h2 {
  color: var(--paper);
  margin-top: 10px;
  font-size: clamp(48px, 7vw, 108px);
  line-height: .88;
  font-weight: 400;
}

.clientes .head h2 .it {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.clientes .lede {
  margin-top: 14px;
  color: rgba(255, 255, 255, .8);
}

.clientes .carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--ink-2);
  padding-bottom: 20px;
}

.clientes .carousel::-webkit-scrollbar {
  height: 8px;
}

.clientes .carousel::-webkit-scrollbar-track {
  background: var(--ink-2);
  border-radius: 4px;
}

.clientes .carousel::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

.clientes .carousel-item {
  scroll-snap-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink-2);
}

.clientes .carousel-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.clientes .carousel-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .clientes .carousel {
    grid-auto-columns: minmax(240px, 1fr);
  }

  .clientes .carousel-item img {
    height: 280px;
  }
}

/* ============= MODAL DE FOTOS (CSS :target — zero JS) ============= */
.foto-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.foto-modal:target {
  display: block;
}

.foto-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 5, .94);
  backdrop-filter: blur(8px);
  display: block;
  cursor: pointer;
  z-index: 0;
}

.foto-modal-box {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px var(--pad-x) 80px;
  min-height: 100vh;
  pointer-events: none;
}

.foto-modal-box>* {
  pointer-events: auto;
}

.foto-modal-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  background: rgba(10, 8, 5, .85);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background .2s ease, color .2s ease;
}

.foto-modal-close:hover {
  background: var(--gold);
  color: var(--ink);
}

.foto-modal-close svg {
  width: 20px;
  height: 20px;
}

.foto-modal-head {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(232, 201, 135, .22);
}

.foto-modal-head h2 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: .9;
  color: var(--paper);
  margin-top: 14px;
}

.foto-modal-head h2 em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 300;
}

.foto-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.foto-modal-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(232, 201, 135, .1);
  transition: transform .4s ease, border-color .3s ease;
}

.foto-modal-grid img:hover {
  transform: scale(1.02);
  border-color: rgba(232, 201, 135, .4);
}

@media (max-width: 900px) {
  .foto-modal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .foto-modal-grid {
    grid-template-columns: 1fr;
  }

  .foto-modal-box {
    padding-top: 70px;
  }
}