/* ============================================
   NATÁLIA MUNIZ — PSICÓLOGO
   Escuta qualificada e acolhedora
   Online e Presencial
   ============================================ */


:root {
  --primary:        #0b0b0b;   /* verde principal */
  --primary-light:  #1a1a1a;
  --primary-soft:   rgba(201,168,76,.08);
  --green-deep:     #111111;
  --green-900:      #080808;
  --green-950:      #050505;
  --accent:         #c9a84c;   /* gris elegante sobre claro */
  --accent-light:   #e0c46c;   /* gris elegante claro sobre verde */
  --dark:           #0b0b0b;
  --white:          #ffffff;
  --light:          #f3f5f4;   /* gris muy claro / off-white */
  --light-mid:      #e6eae8;
  --stone:          #dfe4e2;
  --muted:          #70645a;
  --border:         rgba(201,168,76,.14);
  --border-dark:    rgba(255,255,255,.1);
  --serif:          'Marcellus', Georgia, serif;
  --sans:           'Inter', system-ui, sans-serif;
  --shadow:         0 2px 12px rgba(0,0,0,.07);
  --shadow-md:      0 6px 28px rgba(0,0,0,.12);
  --shadow-lg:      0 16px 48px rgba(0,0,0,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; background: var(--primary); }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--dark);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ─── Typography ─────────────────────────── */
.label {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: .9rem;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--dark);
}
h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}
p { font-size: .93rem; line-height: 1.8; color: var(--muted); }

/* ─── Layout ─────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem,5vw,4rem); }
.section-pad { padding: clamp(5rem,8vw,8rem) 0; }
.section-intro {
  max-width: 600px;
  margin: 1rem 0 3rem;
  font-size: .95rem;
  line-height: 1.8;
  color: var(--muted);
}

/* ─── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: 100px;
  transition: background .3s, color .3s, transform .2s, box-shadow .3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,.4);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-white:hover {
  background: rgba(255,255,255,.92);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,255,255,.28);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,.4);
}
/* Em seções escuras o btn-dark vira claro/pedra para contraste */
.manifesto-section .btn-dark,
.sobre-section .btn-dark {
  background: var(--white);
  color: var(--primary);
}
.manifesto-section .btn-dark:hover,
.sobre-section .btn-dark:hover {
  background: rgba(255,255,255,.9);
  box-shadow: 0 6px 24px rgba(255,255,255,.2);
}

/* ─── HEADER ─────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0;
  transition: background .4s, padding .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
#header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: .85rem 0;
  border-color: rgba(201,168,76,.1);
  box-shadow: 0 1px 24px rgba(0,0,0,.07);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.logo-light { height: 46px; width: auto; display: block; }
.logo-dark  { height: 46px; width: auto; display: none; }
#header.scrolled .logo-light { display: none; }
#header.scrolled .logo-dark  { display: block; }

nav.header-nav { display: flex; align-items: center; gap: 1.6rem; }
nav.header-nav a {
  font-size: .76rem; font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.82);
  transition: color .3s;
}
nav.header-nav a:hover { color: var(--white); }
#header.scrolled nav.header-nav a { color: var(--muted); }
#header.scrolled nav.header-nav a:hover { color: var(--primary); }
.header-cta {
  padding: .7rem 1.5rem; font-size: .72rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
}
.header-cta:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}
#header.scrolled .header-cta {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
#header.scrolled .header-cta:hover { background: var(--primary-light); }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px; }
.hamburger span { display: block; height: 1.5px; background: var(--white); transition: all .3s; transform-origin: center; }
#header.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Mobile Nav ─────────────────────────── */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: var(--green-950);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.6rem;
  padding: 5rem 1.5rem 2.5rem;
  overflow-y: auto;
  max-height: 100vh;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: clamp(1.8rem,5vw,2.6rem);
  font-weight: 400; color: rgba(255,255,255,.82); transition: color .3s;
}
.mobile-nav a:hover { color: var(--accent-light); }
.mobile-nav .mobile-cta {
  font-family: var(--sans); font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--white); color: var(--primary);
  padding: .8rem 2rem; border-radius: 100px; margin-top: 1rem;
}

/* ─── HERO ───────────────────────────────── */
.hero-sequence { position: relative; height: 220vh; }
.hero-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  background: var(--green-950);
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-gradient {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to right, rgba(30,28,33,.90) 0%, rgba(30,28,33,.55) 42%, rgba(30,28,33,.1) 66%, transparent 84%),
    linear-gradient(to top,   rgba(30,28,33,.75) 0%, rgba(30,28,33,.22) 46%, transparent 72%);
}
.hero-content {
  position: absolute;
  top: auto;
  bottom: clamp(5rem, 14vh, 9rem);
  left: clamp(1.8rem, 5vw, 5rem);
  max-width: min(44vw, 540px);
  z-index: 10;
}
.hero-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: block;
  margin-bottom: 1.1rem;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.8vw, 3.4rem);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--white); margin-bottom: 1.1rem;
  text-shadow: 0 2px 28px rgba(0,0,0,.5), 0 1px 8px rgba(0,0,0,.35);
}
.hero-h1 em { font-style: italic; color: var(--accent-light); display: block; }
.hero-sub {
  font-size: .88rem; line-height: 1.75;
  color: rgba(255,255,255,.82); margin-bottom: 1.6rem;
  max-width: 400px;
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
}
.hero-actions { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.hero-actions .btn { padding: .78rem 1.6rem; font-size: .72rem; }
.hero-actions .btn-primary {
  background: var(--white); color: var(--primary);
}
.hero-actions .btn-primary:hover {
  background: rgba(255,255,255,.9);
  box-shadow: 0 6px 24px rgba(255,255,255,.25);
}
.hero-microcopy {
  margin-top: 1.2rem;
  font-size: .62rem; letter-spacing: .12em;
  color: rgba(255,255,255,.5); text-transform: uppercase;
}
.hero-scroll-hint {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.45); font-size: .56rem; letter-spacing: .2em;
  text-transform: uppercase; z-index: 10;
}
.scroll-line { width: 1px; height: 36px; background: rgba(255,255,255,.18); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--accent-light);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown { 0%{top:-100%} 100%{top:100%} }

/* ─── MARQUEE ────────────────────────────── */
.marquee-section {
  background: linear-gradient(135deg, #050505 0%, #111111 50%, #0b0b0b 100%);
  padding: 1.1rem 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee-outer { display: flex; overflow: hidden; }
.marquee-content {
  display: inline-flex; align-items: center; gap: 2.5rem;
  padding-right: 2.5rem; flex-shrink: 0;
  animation: marqueeScroll 52s linear infinite; white-space: nowrap;
}
.marquee-content.rev { animation-name: marqueeScrollRev; }
.marquee-content span { font-size: .64rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.78); }
.marquee-content .dot { color: var(--accent-light); font-size: .4rem; opacity: .7; }
@keyframes marqueeScroll    { 0%{transform:translateX(0)}    100%{transform:translateX(-50%)} }
@keyframes marqueeScrollRev { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)}    }

/* ─── MANIFESTO ──────────────────────────── */
.manifesto-section {
  background: linear-gradient(160deg, #1a1a1a 0%, #0b0b0b 55%, #111111 100%);
  text-align: center;
}
.manifesto-section .label { color: var(--accent-light); }
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 400; font-style: italic;
  line-height: 1.5; color: rgba(255,255,255,.96);
  margin: 1.2rem 0 1.6rem;
}
.manifesto-sub {
  font-size: .95rem; color: rgba(255,255,255,.7);
  max-width: 620px; margin: 0 auto 2.4rem;
}

/* ─── ÁREAS DE ATUAÇÃO (cards) ───────────── */
.experiencias-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.experiencias-section .label { color: var(--accent); }
.experiencias-section h2 { max-width: 600px; margin-top: .5rem; color: var(--dark); }
.experiencias-section .section-intro { color: var(--muted); }
.modalidades-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.4rem);
  max-width: 1040px;
  margin-top: 2.5rem;
}
.modalidade-card {
  overflow: hidden;
  border-radius: 20px;
  background: var(--primary);
  border: 1px solid rgba(201,168,76,.14);
  box-shadow: var(--shadow-md);
}
.modalidade-card > img {
  width: 100%;
  height: clamp(230px, 28vw, 360px);
  object-fit: cover;
}
.modalidade-body {
  display: flex;
  min-height: 270px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  flex-direction: column;
}
.modalidade-body .modalidade-label {
  margin-bottom: .65rem;
  color: var(--accent-light);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.modalidade-body h3 {
  margin-bottom: .75rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 400;
}
.modalidade-body > p:not(.modalidade-label) {
  color: rgba(255,255,255,.76);
  line-height: 1.75;
}
.modalidade-body a {
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--accent-light);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.modalidade-body a:hover { color: var(--white); }
.experiencias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.experiencia-card {
  background: var(--light);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 0;
  padding: clamp(1.6rem,2.8vw,2.4rem);
  min-height: 235px;
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 1rem;
  row-gap: 1.35rem;
  align-items: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.experiencia-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent 75%);
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.experiencia-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,.5); }
.experiencia-card:hover::before { transform: scaleX(1); }
.experiencia-card--wide { grid-column: span 2; }
.experiencia-icon {
  width: 52px; height: 52px; border-radius: 0;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.experiencia-card h3 {
  font-size: .9rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .055em;
}
.experiencia-card p {
  grid-column: 1 / -1;
  align-self: start;
  font-size: .84rem;
  color: var(--muted);
}

/* ─── MODALIDADES (cards com imagem) ─────── */
.destinos-section {
  background: linear-gradient(160deg, #1a1a1a 0%, #0b0b0b 55%, #111111 100%);
}
.destinos-section .label { color: var(--accent-light); }
.destinos-section h2 { color: rgba(255,255,255,.96); max-width: 600px; margin-top: .5rem; }
.destinos-section .section-intro { color: rgba(255,255,255,.68); }
.destinos-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
  gap: 1.4rem;
}
.destino-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.destino-card:hover { transform: translateY(-5px); box-shadow: 0 8px 36px rgba(0,0,0,.35); border-color: rgba(224,196,108,.35); }
.destino-img-wrap {
  position: relative; aspect-ratio: 16/11; overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.destino-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.8,.25,1);
}
.destino-card:hover .destino-img-wrap img { transform: scale(1.06); }
.destino-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(30,28,33,.55) 0%, transparent 55%);
}
.destino-body {
  padding: 1.6rem 1.6rem 1.8rem;
  display: flex; flex-direction: column; gap: .6rem; flex: 1;
}
.destino-region {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-light);
}
.destino-body h3 {
  font-family: var(--serif); font-size: 1.35rem;
  font-weight: 400; color: rgba(255,255,255,.96);
}
.destino-body > p { font-size: .84rem; color: rgba(255,255,255,.68); flex: 1; }
.destino-cta {
  margin-top: .6rem;
  font-size: .74rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-light);
  transition: color .25s, transform .2s;
  align-self: flex-start;
}
.destino-cta:hover { color: #fff; transform: translateX(3px); }

/* ─── CUIDADO NOS DETALHES (featured) ────── */
.hoteis-section { background: var(--light); }
.hoteis-section h2 { max-width: 640px; margin-top: .5rem; }
.hotel-featured {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 4rem; align-items: center;
  margin-top: 1rem;
}
.hotel-img-wrap {
  position: relative; border-radius: 20px;
  overflow: hidden; aspect-ratio: 4/3;
}
.hotel-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 20px; display: block;
  box-shadow: var(--shadow-md);
  transition: transform .7s cubic-bezier(.25,.8,.25,1);
}
.hotel-img-wrap:hover img { transform: scale(1.04); }
.hotel-location {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: .6rem;
}
.hotel-content h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 400; color: var(--dark); margin-bottom: 1rem;
}
.hotel-content p + p { margin-top: .9rem; }
.hotel-detail { font-size: .84rem; }
.hotel-content .btn { margin-top: 1.6rem; }

/* ─── SOBRE ──────────────────────────────── */
.sobre-section {
  background: linear-gradient(160deg, #1a1a1a 0%, #0b0b0b 55%, #111111 100%);
}
.sobre-section .label { color: var(--accent-light); }
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 5rem; align-items: center;
}
.sobre-img-wrap {
  position: relative; border-radius: 20px;
  overflow: hidden; aspect-ratio: 3/4;
}
.sobre-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  border-radius: 20px; display: block;
  box-shadow: var(--shadow-md);
}
.sobre-text h2 { color: rgba(255,255,255,.96); margin-bottom: 1.2rem; margin-top: .4rem; }
.sobre-text p { color: rgba(255,255,255,.72); }
.sobre-text p + p { margin-top: .9rem; }
.sobre-highlight {
  margin: 1.6rem 0; padding: 1.2rem 1.4rem;
  border: 1px solid rgba(224,196,108,.25);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.05) 0%, rgba(224,196,108,.08) 100%);
  position: relative; overflow: hidden;
}
.sobre-highlight strong {
  display: block; font-family: var(--serif); font-size: 1.15rem;
  font-weight: 400; color: var(--accent-light); margin-bottom: .3rem;
}
.sobre-highlight span { display: block; font-size: .82rem; color: rgba(255,255,255,.62); line-height: 1.6; }
.sobre-text .btn { margin-top: .5rem; }
.sobre-text .btn-primary { background: var(--white); color: var(--primary); }
.sobre-text .btn-primary:hover { background: rgba(255,255,255,.9); box-shadow: 0 6px 24px rgba(255,255,255,.2); }

/* ─── ATENDIMENTO / CONTATO ──────────────── */
.local-section { background: var(--white); border-top: 1px solid var(--light-mid); }
.local-inner {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 5rem; align-items: center;
}
.local-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-top: .5rem; margin-bottom: 1.2rem;
}
.local-address {
  display: flex; flex-direction: column; gap: .75rem;
  position: relative;
}
.local-address-item {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: 1rem 1.4rem;
  background: rgba(201,168,76,.04);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 12px;
  font-size: .88rem; color: var(--dark);
  font-weight: 500;
  transition: border-color .25s, background .25s;
  position: relative; overflow: hidden;
}
.local-address-item:hover { border-color: rgba(201,168,76,.4); background: rgba(201,168,76,.07); }
.local-address-item svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.local-address-item span { line-height: 1.6; }
.local-address-item a { transition: color .25s; }
.local-address-item a:hover { color: var(--primary); }

/* ─── AGENDA / CALENDÁRIO ────────────────── */
.agenda-section { background: var(--light); border-top: 1px solid var(--light-mid); }
.agenda-section h2 { max-width: 640px; margin-top: .5rem; }

.agenda-modalidade {
  display: inline-flex; gap: .4rem;
  padding: .35rem;
  background: rgba(201,168,76,.06);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 100px;
  margin-bottom: 2.4rem;
}
.modalidade-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.3rem;
  border-radius: 100px;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
  transition: background .25s, color .25s, box-shadow .25s;
}
.modalidade-btn svg { flex-shrink: 0; }
.modalidade-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(201,168,76,.28);
}

.agenda-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Calendar */
.agenda-calendar {
  background: #fff;
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.2rem;
}
.cal-month {
  font-family: var(--serif);
  font-size: 1.2rem; color: var(--primary);
  text-transform: capitalize; letter-spacing: .01em;
}
.cal-nav {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  background: rgba(201,168,76,.06);
  transition: background .2s, color .2s;
}
.cal-nav:hover { background: var(--primary); color: #fff; }
.cal-nav:disabled { opacity: .3; pointer-events: none; }
.cal-weekdays {
  display: grid; grid-template-columns: repeat(7,1fr);
  gap: .3rem; margin-bottom: .5rem;
}
.cal-weekdays span {
  text-align: center;
  font-size: .64rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent);
  padding: .3rem 0;
}
.cal-days {
  display: grid; grid-template-columns: repeat(7,1fr);
  gap: .3rem;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border-radius: 12px;
  font-size: .9rem; font-weight: 500;
  color: var(--dark);
  background: transparent;
  transition: background .2s, color .2s, transform .15s;
}
.cal-day.empty { pointer-events: none; }
.cal-day.available { color: var(--primary); font-weight: 600; }
.cal-day.available::after {
  content: ''; position: absolute; bottom: 6px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--primary);
}
.cal-day.available:hover { background: rgba(201,168,76,.1); transform: translateY(-1px); }
.cal-day.unavailable { color: rgba(201,168,76,.28); pointer-events: none; }
.cal-day.past { color: rgba(201,168,76,.2); pointer-events: none; }
.cal-day.selected {
  background: var(--primary); color: #fff;
}
.cal-day.selected::after { background: #fff; }

.cal-legend {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: 1.3rem; padding-top: 1.1rem;
  border-top: 1px solid rgba(201,168,76,.1);
}
.legend-item {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .7rem; color: var(--muted);
}
.legend-item i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.legend-item .dot-free { background: var(--primary); }
.legend-item .dot-sel  { background: var(--accent); }
.legend-item .dot-none { background: rgba(201,168,76,.22); }

/* Slots (à lateral no desktop) */
.agenda-slots {
  background: #fff;
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  position: sticky; top: 90px;
}
.slots-head {
  font-family: var(--serif);
  font-size: 1.15rem; color: var(--primary);
  margin-bottom: .3rem;
}
.slots-sub {
  font-size: .8rem; color: var(--muted);
  margin-bottom: 1.2rem;
}
.slots-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .55rem;
  min-height: 40px;
}
.slot-btn {
  padding: .7rem .5rem;
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,.16);
  background: rgba(201,168,76,.03);
  font-size: .88rem; font-weight: 600;
  color: var(--dark);
  transition: border-color .2s, background .2s, color .2s, transform .15s;
}
.slot-btn:hover { border-color: var(--primary); transform: translateY(-1px); }
.slot-btn.selected { background: var(--primary); color: #fff; border-color: var(--primary); }
.slot-btn.taken {
  color: rgba(201,168,76,.3);
  text-decoration: line-through;
  pointer-events: none;
  background: rgba(201,168,76,.02);
  border-style: dashed;
}
.slots-empty {
  grid-column: 1 / -1;
  font-size: .84rem; color: var(--muted);
  padding: .6rem 0;
}
.slots-summary {
  margin-top: 1.2rem; padding: .9rem 1rem;
  background: rgba(201,168,76,.05);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 12px;
  font-size: .84rem; color: var(--dark); line-height: 1.7;
}
.slots-summary strong { color: var(--primary); font-weight: 600; }
.agenda-confirm {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  width: 100%; margin-top: 1.2rem;
  padding: .95rem 1.2rem;
  border-radius: 100px;
  background: #25D366; color: #fff;
  font-size: .76rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background .3s, transform .2s, box-shadow .3s, opacity .2s;
}
.agenda-confirm:hover:not(:disabled) {
  background: #1fb355; transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37,211,102,.35);
}
.agenda-confirm:disabled { opacity: .4; pointer-events: none; }
.slots-note {
  font-size: .68rem; color: var(--muted);
  text-align: center; margin-top: .9rem; letter-spacing: .02em;
}

/* ─── DORES / IDENTIFICAÇÃO ──────────────── */
.problemas-section { background: var(--white); }
.problemas-showcase {
  position: relative;
  min-height: 760px;
}
.problemas-route {
  position: absolute;
  z-index: 0;
  top: 16%;
  left: 0;
  width: 31%;
  height: 28%;
  border-top: 2px dashed rgba(201,168,76,.38);
  border-left: 2px dashed rgba(201,168,76,.38);
  border-bottom: 2px dashed rgba(201,168,76,.38);
}
.problemas-route::after {
  content: '';
  position: absolute;
  right: -1px;
  bottom: -8px;
  border-left: 13px solid rgba(201,168,76,.5);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.problemas-image {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: min(58%, 690px);
  height: 82%;
  overflow: hidden;
}
.problemas-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.problemas-side-label {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 4%;
  width: 68px;
  height: 300px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.problemas-side-label span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: .16em;
  white-space: nowrap;
}
.problemas-card {
  position: absolute;
  z-index: 1;
  left: 2%;
  bottom: 0;
  width: min(56%, 680px);
  padding: clamp(2rem,3.2vw,3.3rem);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(201,168,76,.13);
}
.problemas-card h2 {
  max-width: 580px;
  margin-top: .35rem;
  font-size: clamp(1.8rem,3vw,2.9rem);
}
.ponte-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem,1.55vw,1.25rem);
  color: var(--primary);
  text-align: left;
  max-width: 600px;
  margin: 1.35rem 0 2rem;
  line-height: 1.5;
}
.problemas-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .78rem;
}
.problemas-list li {
  position: relative;
  padding-left: 1.85rem;
  font-size: .84rem;
  line-height: 1.55;
  color: var(--muted);
}
.problemas-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: .03rem;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(201,168,76,.48);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .68rem;
  line-height: 1;
}
/* ─── BENEFÍCIOS / TRANSFORMAÇÃO ─────────── */
.beneficios-section {
  background: linear-gradient(160deg, #1a1a1a 0%, #0b0b0b 55%, #111111 100%);
  overflow: hidden;
}
.beneficios-stage {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
}
.beneficios-image {
  position: absolute;
  left: 0;
  top: 0;
  width: min(38%, 430px);
  height: 100%;
  overflow: hidden;
  border-radius: 18px 18px 0 18px;
}
.beneficios-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.beneficios-card {
  position: relative;
  z-index: 1;
  width: min(68%, 760px);
  margin-left: 30%;
  padding: clamp(2.2rem,4vw,3.6rem);
  background: linear-gradient(160deg, #1a1a1a 0%, #0b0b0b 55%, #111111 100%);
  border-radius: 42px 0 0 0;
  box-shadow: none;
}
.beneficios-card .label { color: var(--accent-light); }
.beneficios-card h2 {
  color: rgba(255,255,255,.96);
  max-width: 610px;
  margin-top: .35rem;
  font-size: clamp(1.85rem,3.2vw,3rem);
}
.beneficios-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .72rem 2rem;
  margin: 1.8rem 0 2rem;
}
.beneficios-list li {
  position: relative;
  padding-left: 1.45rem;
  font-size: .82rem;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}
.beneficios-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-light);
  font-weight: 700;
  font-size: .78rem;
}
.beneficios-section .btn-primary { background: var(--white); color: var(--primary); }
.trajeto-list {
  grid-template-columns: 1fr;
  gap: 1.25rem;
  counter-reset: trajeto;
}
.trajeto-list li {
  padding-left: 2.6rem;
  counter-increment: trajeto;
}
.trajeto-list li::before {
  content: counter(trajeto, decimal-leading-zero);
  top: .05rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
}
.trajeto-list strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--white);
  font-size: .92rem;
  font-weight: 600;
}
.trajeto-list p {
  color: rgba(255,255,255,.74);
  font-size: .82rem;
  line-height: 1.65;
}
.beneficios-section .btn-primary:hover { background: rgba(255,255,255,.9); box-shadow: 0 6px 24px rgba(255,255,255,.2); }
/* ─── DEPOIMENTOS ────────────────────────── */
.depoimentos-section {
  background: var(--light);
  border-top: 1px solid var(--light-mid);
  overflow: hidden;
}
.depoimentos-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.2rem;
}
.depoimentos-section h2 { margin-top: .5rem; }
.depoimentos-section .section-intro { max-width: 620px; }
.google-rating {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: .7rem;
  padding: 1rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(201,168,76,.1);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(21,48,47,.08);
}
.google-wordmark {
  grid-row: 1 / 3;
  font: 600 1.28rem/1 Arial, sans-serif;
  letter-spacing: -.09em;
  padding-right: .08em;
}
.google-wordmark b { font-weight: 600; }
.google-wordmark b:nth-child(1), .google-wordmark b:nth-child(4) { color: #4285f4; }
.google-wordmark b:nth-child(2), .google-wordmark b:nth-child(6) { color: #ea4335; }
.google-wordmark b:nth-child(3) { color: #fbbc05; }
.google-wordmark b:nth-child(5) { color: #34a853; }
.rating-score { font-size: 1rem; font-weight: 700; color: var(--dark); }
.rating-stars, .card-rating { color: #f5aa18; letter-spacing: .1em; }
.rating-stars { font-size: .75rem; }
.google-rating small {
  grid-column: 1 / -1;
  margin-top: .5rem;
  color: var(--muted);
  font-size: .62rem;
  text-align: right;
}
.google-review-link {
  grid-column: 1 / -1;
  margin-top: .75rem;
  padding: .65rem .9rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.google-review-link:hover { background: var(--primary-light); transform: translateY(-1px); }
.depoimentos-carousel {
  width: 100%;
  overflow: hidden;
  padding: .8rem 0 1.8rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.depoimentos-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: depoimentos-marquee 42s linear infinite;
  will-change: transform;
}
.depoimentos-carousel:hover .depoimentos-track { animation-play-state: paused; }
.depoimentos-group { display: flex; gap: 1rem; }
.depoimento-card {
  width: clamp(280px, 30vw, 380px);
  min-height: 220px;
  background: #fff;
  border: 1px solid rgba(201,168,76,.1);
  border-radius: 18px;
  padding: 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 14px 36px rgba(21,48,47,.09);
}
.card-rating { font-size: .82rem; }
.depoimento-texto {
  flex: 1;
  font-size: .88rem;
  line-height: 1.75;
  color: var(--muted);
  font-style: italic;
}
.depoimento-autor {
  font-size: .72rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .03em;
  text-transform: uppercase;
}
@keyframes depoimentos-marquee {
  to { transform: translateX(calc(-50% - .5rem)); }
}
@media (prefers-reduced-motion: reduce) {
  .depoimentos-track { animation: none; }
  .depoimentos-carousel { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
}
/* ─── FAQ ────────────────────────────────── */
.faq-section { background: var(--white); }
.faq-section h2 { margin-top: .5rem; }
.faq-list { max-width: 780px; margin-top: 1rem; }
.faq-item {
  border-bottom: 1px solid rgba(201,168,76,.14);
  padding: 1.3rem 0;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: .96rem; font-weight: 600; color: var(--dark);
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; flex-shrink: 0;
  font-size: 1.3rem; font-weight: 400; color: var(--primary);
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item:hover summary { color: var(--primary); }
.faq-item p {
  margin-top: .9rem; font-size: .88rem; line-height: 1.8;
  color: var(--muted); max-width: 680px;
}

/* ─── CTA FINAL ──────────────────────────── */
.cta-final {
  background: linear-gradient(145deg, #050505 0%, #0b0b0b 45%, #111111 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(224,196,108,.16), transparent 65%);
  pointer-events: none;
}
.cta-final .label { color: rgba(255,255,255,.6); }
.cta-final h2 { color: var(--white); max-width: 700px; margin: .5rem auto 1.2rem; }
.cta-final > .container > p { color: rgba(255,255,255,.82); max-width: 500px; margin: 0 auto 2.8rem; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-final .btn-outline { border-color: rgba(255,255,255,.4); }

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: linear-gradient(145deg, #050505 0%, #050505 60%, #111111 100%);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: clamp(4rem,7vw,7rem) 0 2rem;
  position: relative;
  overflow: hidden;
}
footer::before,
footer::after {
  content: '';
  position: absolute;
  bottom: 3rem;
  width: 280px;
  height: 180px;
  opacity: .12;
  background-image: radial-gradient(circle, rgba(224,196,108,.8) 1.5px, transparent 1.7px);
  background-size: 13px 13px;
  pointer-events: none;
}
footer::before { left: -70px; transform: rotate(-12deg); }
footer::after { right: -70px; transform: rotate(12deg); }
footer > .container { position: relative; z-index: 1; }
.footer-statement {
  margin-bottom: clamp(3.5rem,7vw,6rem);
  overflow: hidden;
  width: 100%;
  margin-left: 0;
}
.footer-statement-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: footerStatementScroll 24s linear infinite;
}
.footer-statement span {
  display: block;
  flex-shrink: 0;
  padding-right: clamp(3rem,7vw,8rem);
  font-family: var(--serif);
  font-size: clamp(2.4rem,5.2vw,5rem);
  font-style: italic;
  line-height: 1.12;
  letter-spacing: -.025em;
  white-space: nowrap;
  color: rgba(255,255,255,.09);
}
@keyframes footerStatementScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .75fr .75fr 1fr;
  gap: clamp(2rem,4vw,4.5rem);
  align-items: start;
}
.footer-logo { height: 54px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.7); max-width: 280px; line-height: 1.78; }
.footer-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.4rem; background: #25D366; color: var(--white);
  padding: .65rem 1.25rem; border-radius: 100px; font-size: .76rem; font-weight: 600;
  transition: background .3s;
}
.footer-wa:hover { background: #1fb355; }
.footer-col h4 {
  font-size: .67rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.82);
  margin-bottom: 1.35rem;
}
.footer-col a,
.footer-col address span {
  font-size: .82rem; color: rgba(255,255,255,.7);
  display: block; line-height: 2; font-style: normal; transition: color .25s;
}
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .7rem; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: .5rem;
}
.footer-credit {
  color: rgba(255,255,255,.42);
  transition: color .25s;
}
.footer-credit:hover { color: rgba(255,255,255,.78); }

/* ─── BOTÃO FLUTUANTE BOT ────────────────── */
#float-bot {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--primary); border: none; padding: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(16px);
  transition: opacity .4s, transform .4s, box-shadow .3s;
  pointer-events: none; outline: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
}
#float-bot.vis  { opacity: 1; transform: translateY(0); pointer-events: all; }
#float-bot.hide { opacity: 0 !important; transform: translateY(16px) !important; pointer-events: none !important; }
#float-bot:hover { transform: translateY(-3px) !important; }
.bot-avatar {
  width: 34px; height: 34px; min-width: 34px; min-height: 34px;
  border-radius: 0;
  object-fit: contain;
  display: block; pointer-events: none; position: relative; z-index: 2;
}
#float-bot::before, #float-bot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--primary); opacity: 0;
  animation: radar-pulse 2.4s ease-out infinite; pointer-events: none; z-index: 1;
}
#float-bot::after { animation-delay: 1.2s; }
@keyframes radar-pulse { 0%{transform:scale(1);opacity:.5} 100%{transform:scale(2.2);opacity:0} }

/* ─── WEBCHAT WIDGET ─────────────────────── */
#kore-btn { display: none !important; }

/* ─── SPLASH CURSOR CANVAS ───────────────── */
#fluid {
  position: fixed; inset: 0; z-index: 9999;
  width: 100%; height: 100%;
  display: block;
  pointer-events: none;
}

/* ─── MAGIC BENTO BORDER GLOW ───────────── */
.experiencia-card,
.destino-card,
.hotel-img-wrap,
.sobre-img-wrap,
.local-address-item,
.sobre-highlight,
.destino-img-wrap {
  --mouse-x: -999px;
  --mouse-y: -999px;
}
.experiencia-card,
.hotel-img-wrap,
.sobre-img-wrap,
.local-address-item,
.sobre-highlight { position: relative; }

/* Glow claro/pedra para cards de vidro escuro */
.destino-card::after,
.sobre-img-wrap::after,
.sobre-highlight::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
  background: radial-gradient(
    336px circle at var(--mouse-x) var(--mouse-y),
    rgba(226, 233, 230, 1)  0%,
    rgba(224,196,108, .5) 42%,
    transparent             66%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; z-index: 2;
}

/* Glow verde para cards de fundo claro */
.experiencia-card::after,
.hotel-img-wrap::after,
.local-address-item::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
  background: radial-gradient(
    336px circle at var(--mouse-x) var(--mouse-y),
    rgba(44, 86, 84, .9)   0%,
    rgba(201,168,76, .45)  42%,
    transparent             66%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; z-index: 2;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media(max-width:1200px) {
  .experiencia-card--wide { grid-column: span 2; }
}

@media(max-width:1100px) {
  .hotel-featured { grid-template-columns: 1fr; gap: 3rem; }
  .local-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media(max-width:1024px) {
  .experiencias-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main { grid-row: span 2; }
  nav.header-nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { max-width: min(56vw,480px); top: clamp(5rem,14vh,8rem); }
  /* Agenda: horários abaixo do calendário no tablet/móvel */
  .agenda-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .agenda-slots { position: static; }
  .beneficios-stage { min-height: 650px; }
  .beneficios-image { width: 43%; }
  .beneficios-card { width: 72%; margin-left: 26%; }
  .beneficios-list { gap: .72rem 1.4rem; }
  .problemas-showcase { min-height: 790px; }
  .problemas-image { width: 64%; height: 72%; }
  .problemas-card { left: 2%; width: 74%; }
  .problemas-list { gap: .78rem; }
}

@media(max-width:768px) {
  #header { padding: .75rem 0; }
  #header.scrolled { padding: .65rem 0; }
  .header-inner { padding: 0 1.2rem; gap: .8rem; }
  .logo-light, .logo-dark { height: 36px; }
  .header-cta { padding: .6rem 1rem; font-size: .68rem; }
  .hamburger { flex-shrink: 0; }

  .hero-sequence { height: 180vh; }
  .hero-content { top: auto; bottom: clamp(3rem,6vh,4.5rem); left: 1.2rem; right: 1.2rem; max-width: 100%; }
  .hero-label { font-size: .55rem; }
  .hero-h1 { font-size: clamp(1.8rem,6vw,2.4rem); }
  .hero-sub { font-size: .84rem; }
  .hero-actions { gap: .6rem; flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { padding: .68rem 1.3rem; font-size: .68rem; }

  .experiencias-grid, .destinos-grid, .modalidades-grid { grid-template-columns: 1fr; }
  .experiencia-card--wide { grid-column: span 1; }
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-img-wrap { aspect-ratio: 4/5; width: 100%; max-width: 320px; margin: 0 auto; }
  .hotel-featured { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .section-pad { padding: clamp(3.5rem,7vw,5rem) 0; }
  h2 { font-size: clamp(1.75rem,5.5vw,2.4rem); }
  .cta-actions { flex-direction: column; align-items: center; }
  #float-bot { bottom: 1rem; right: 1rem; width: 48px; height: 48px; }
  .bot-avatar { width: 30px; height: 30px; min-width: 30px; min-height: 30px; }
  .agenda-calendar, .agenda-slots { padding: 1.2rem; }
  .depoimentos-heading { align-items: flex-start; flex-direction: column; }
  .google-rating { width: 100%; max-width: 320px; }
  .depoimento-card { width: min(85vw, 340px); }
  
  .beneficios-stage {
    min-height: 0;
    padding-top: 0;
    display: flex;
    flex-direction: column;
  }
  .beneficios-image {
    position: relative;
    width: 100%;
    height: clamp(240px, 45vw, 320px);
    border-radius: 20px 20px 0 0;
    margin-bottom: -24px;
    z-index: 1;
  }
  .beneficios-card {
    position: relative;
    width: 100%;
    margin-left: 0;
    padding: clamp(1.8rem, 5vw, 2.5rem) clamp(1.2rem, 4vw, 1.8rem);
    border-radius: 24px 24px 0 0;
    z-index: 2;
  }
  .beneficios-list { grid-template-columns: 1fr; gap: .72rem; }
  .footer-statement { margin-bottom: 3rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .footer-main { grid-column: 1 / -1; grid-row: auto; }
  
  .problemas-showcase {
    min-height: 0;
    padding-top: 0;
    display: flex;
    flex-direction: column;
  }
  .problemas-route { display: none; }
  .problemas-image {
    position: relative;
    width: 100%;
    height: clamp(240px, 45vw, 320px);
    border-radius: 20px 20px 0 0;
    margin-bottom: -24px;
    z-index: 1;
  }
  .problemas-side-label {
    display: none;
  }
  .problemas-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-left: 0;
    padding: clamp(1.8rem, 5vw, 2.5rem) clamp(1.2rem, 4vw, 1.8rem);
    border-radius: 24px;
    z-index: 2;
  }
  .problemas-card h2 { font-size: clamp(1.75rem,5.5vw,2.4rem); }
  .problemas-list { gap: .9rem; }
  .ponte-quote { margin: 1.1rem 0 1.6rem; }
  .faq-item summary { font-size: .9rem; }
}

@media(max-width:540px) {
  .header-cta { display: none; }
  .hero-actions .btn { padding: .6rem 1rem; font-size: .64rem; }
  .experiencia-card { padding: 1.6rem 1.4rem; }
  .destino-body { padding: 1.3rem 1.3rem 1.5rem; }
  .agenda-modalidade { width: 100%; }
  .modalidade-btn { flex: 1; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media(max-width:420px) {
  .hero-content { left: 1rem; right: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .experiencia-card { padding: 1.4rem 1.2rem; }
  h2 { font-size: clamp(1.6rem,5vw,2.2rem); }
  .container { padding: 0 1rem; }
  .slots-list { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width:360px) {
  .slots-list { grid-template-columns: 1fr; }
  .cal-days { gap: 1px; }
  .cal-day { font-size: .78rem; border-radius: 6px; }
  .hero-h1 { font-size: 1.65rem; }
  .btn { padding: .75rem 1.2rem; font-size: .66rem; }
}

@media(prefers-reduced-motion:reduce) {
  .footer-statement-track { animation: none; }
  .marquee-content { animation: none; }
  .scroll-line::after { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ══════════════════════════════════════════════════════
   ASSISTENTE NATÁLIA MUNIZ — Chat widget
══════════════════════════════════════════════════════ */
#vip-chat {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: min(360px, calc(100vw - 2rem));
  max-height: 520px;
  background: var(--green-950);
  border: 1px solid rgba(224,196,108,.3);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(224,196,108,.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(.97);
  transform-origin: bottom right;
  transition: opacity .25s ease, transform .25s ease;
}
#vip-chat.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* Header */
#vip-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1rem .9rem 1.1rem;
  background: linear-gradient(135deg, #111111 0%, #0b0b0b 100%);
  border-bottom: 1px solid rgba(224,196,108,.22);
  flex-shrink: 0;
}
#vip-chat-identity { display: flex; align-items: center; gap: .7rem; }
#vip-chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: contain;
  padding: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(224,196,108,.35);
  flex-shrink: 0;
}
#vip-chat-name {
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .01em;
}
#vip-chat-status {
  font-size: .68rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-top: .1rem;
}
#vip-chat-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #d4af37;
  display: inline-block;
  box-shadow: 0 0 6px #d4af37;
}
#vip-chat-close {
  background: rgba(255,255,255,.12);
  border: none;
  color: rgba(255,255,255,.8);
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: .75rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}
#vip-chat-close:hover { background: rgba(255,255,255,.25); color: #fff; }

/* Messages */
#vip-chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 1rem .9rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(224,196,108,.3) transparent;
}
#vip-chat-msgs::-webkit-scrollbar { width: 4px; }
#vip-chat-msgs::-webkit-scrollbar-thumb { background: rgba(224,196,108,.3); border-radius: 4px; }

.fcm-row {
  display: flex;
  flex-direction: column;
  max-width: 85%;
  gap: .4rem;
}
.fcm-bot { align-self: flex-start; }
.fcm-user { align-self: flex-end; }

.fcm-bubble {
  padding: .65rem .85rem;
  border-radius: 14px;
  font-size: .82rem;
  line-height: 1.6;
  word-break: break-word;
}
.fcm-bot .fcm-bubble {
  background: #111111;
  color: #e7edeb;
  border-radius: 4px 14px 14px 14px;
  border: 1px solid rgba(255,255,255,.06);
}
.fcm-user .fcm-bubble {
  background: linear-gradient(135deg, #0b0b0b, #111111);
  border: 1px solid rgba(224,196,108,.3);
  color: #fff;
  border-radius: 14px 4px 14px 14px;
}

/* Typing indicator */
.fcm-typing-bubble {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: .7rem .9rem !important;
}
.fcm-typing-bubble span {
  width: 7px; height: 7px;
  background: #7d8a85;
  border-radius: 50%;
  animation: fcm-bounce .9s infinite;
}
.fcm-typing-bubble span:nth-child(2) { animation-delay: .15s; }
.fcm-typing-bubble span:nth-child(3) { animation-delay: .3s; }
@keyframes fcm-bounce {
  0%,60%,100% { transform: translateY(0); }
  30%          { transform: translateY(-6px); }
}

/* CTA button inside chat */
.fcm-cta {
  background: rgba(224,196,108,.12);
  border: 1px solid rgba(224,196,108,.4);
  color: var(--accent-light);
  font-size: .74rem;
  font-weight: 600;
  padding: .45rem .85rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s, color .2s;
  align-self: flex-start;
  letter-spacing: .01em;
}
.fcm-cta:hover { background: rgba(224,196,108,.28); color: #fff; }

/* Input area */
#vip-chat-form {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem .9rem;
  border-top: 1px solid rgba(255,255,255,.07);
  background: #050505;
  flex-shrink: 0;
}
#vip-chat-input {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: .55rem .8rem;
  font-size: .82rem;
  color: #e7edeb;
  outline: none;
  font-family: var(--sans);
  transition: border-color .2s;
}
#vip-chat-input::placeholder { color: #56645f; }
#vip-chat-input:focus { border-color: rgba(224,196,108,.6); }
#vip-chat-send {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(160deg, #1a1a1a 0%, #0b0b0b 55%, #111111 100%);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}
#vip-chat-send:hover { background: var(--primary-light); transform: scale(1.05); }
#vip-chat-send:active { transform: scale(.95); }

/* Mobile overlay backdrop */
#vip-chat-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 598;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
#vip-chat-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

@media(max-width:600px) {
  #vip-chat {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    height: min(85vh, 580px);
    max-height: calc(100vh - 40px);
    border-radius: 20px 20px 0 0;
    border: none;
    border-top: 1px solid rgba(224,196,108,.3);
    box-shadow: 0 -8px 40px rgba(0,0,0,.6);
    transform: translateY(100%);
    opacity: 1;
    transition: transform .35s cubic-bezier(.32,1,.23,1);
    z-index: 599;
  }
  #vip-chat.open {
    transform: translateY(0);
    opacity: 1;
  }
  #vip-chat::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,.2);
    border-radius: 2px;
    margin: .65rem auto .1rem;
    flex-shrink: 0;
  }
  #vip-chat-header {
    padding: .65rem 1rem .75rem;
  }
  #vip-chat-avatar {
    width: 36px;
    height: 36px;
  }
  #vip-chat-name { font-size: .9rem; }
  #vip-chat-msgs {
    padding: .85rem 1rem;
    gap: .55rem;
  }
  .fcm-bubble { font-size: .84rem; padding: .6rem .8rem; }
  #vip-chat-form {
    padding: .65rem .9rem;
    padding-bottom: max(.65rem, env(safe-area-inset-bottom));
  }
  #vip-chat-input { font-size: 16px; padding: .6rem .75rem; }
  #vip-chat-send { width: 42px; height: 42px; flex-shrink: 0; }
  .fcm-row { max-width: 90%; }
  #vip-chat-backdrop { display: block; }
}

/* Identidade Natália Muniz — mantém a estrutura e as animações. */
.marquee-section, .footer-statement { background: #050505; color: #fff; }
.agenda-grid { display:none; }
.agenda-direct { margin-top:2rem; }

/* Menu marrom em desktop e mobile, antes e depois do scroll. */
#header, #header.scrolled, .mobile-nav { background: #0b0b0b; }
#header.scrolled nav.header-nav a { color: rgba(255,255,255,.88); }
#header.scrolled nav.header-nav a:hover { color: #fff; }
#header.scrolled .hamburger span { background: #fff; }
#header.scrolled .header-cta { border-color: rgba(255,255,255,.5); }
.hero-sticky { background-image: url('../frames/frame0001.webp'); background-size: cover; background-position: center; }
@media (max-width: 768px) { .hero-sticky { background-image: url('../frames%20celular/frame0001.webp'); } }


/* Modalidades: cards quadrados e estáticos sobre marca d'água. */
#atuacao { isolation: isolate; }
#atuacao::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: url('../justi%C3%A7a.jpg') center right / cover no-repeat;
  opacity: .1; pointer-events: none;
}
#atuacao .modalidades-grid { gap: 1rem; max-width: 900px; }
#atuacao .modalidade-card {
  border-radius: 0; aspect-ratio: 1 / 1;
  box-shadow: 0 18px 26px -12px rgba(201,168,76,.35);
  transform: none; animation: none; transition: none;
  display: flex;
}
#atuacao .modalidade-body { width: 100%; min-height: 0; padding: clamp(1.4rem, 3vw, 2.2rem); }
@media(max-width:768px) {
  #atuacao .modalidades-grid { max-width: 440px; gap: 1rem; }
  #atuacao .modalidade-body { padding: 1.4rem; }
}
@media(max-width:360px) {
  #atuacao .modalidade-body { padding: 1.1rem; }
  #atuacao .modalidade-body > p:not(.modalidade-label) { font-size: .82rem; line-height: 1.6; }
  #atuacao .modalidade-body a { padding-top: .8rem; }
}

/* Cards centrados: el fondo recorre el tramo mientras las cards quedan fijas. */
#atuacao { overflow: visible; }
#atuacao::before { content: none; }
#atuacao > .container > .label, #atuacao > .container > h2,
#atuacao > .container > .section-intro { text-align: center; margin-left: auto; margin-right: auto; }
.modalidades-scroll-stage { position: relative; min-height: 780px; padding-top: 24px; padding-bottom: 140px; }
.justica-watermark { position: absolute; width: min(38%, 280px); height: 350px; object-fit: contain; bottom: 24px; left: -12%; transform: none; opacity: .14; pointer-events: none; }
#atuacao .modalidades-grid { position: sticky; top: 120px; z-index: 1; max-width: 696px; margin: 0 auto; gap: 24px; }
#atuacao .modalidade-card { box-shadow: 0 24px 30px -12px rgba(201,168,76,.4), 0 5px 10px rgba(201,168,76,.08); }
#atuacao .modalidade-body { padding: 24px; }
#atuacao .modalidade-body h3 { font-size: 1.45rem; }
#atuacao .modalidade-body > p:not(.modalidade-label) { font-size: .87rem; line-height: 1.65; }
.google-booking { max-width: 780px; margin: 24px auto 0; background: #fff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.google-booking iframe { width: 100%; height: 600px; display: block; border: 0; }
@media(max-width:768px) {
  #atuacao .modalidades-grid { max-width: 310px; gap: 18px; top: 88px; }
  #atuacao .modalidade-body { padding: 20px; }
  #atuacao .modalidade-body h3 { font-size: 1.3rem; }
  #atuacao .modalidade-body > p:not(.modalidade-label) { font-size: .83rem; }
  #atuacao .modalidade-body a { padding-top: 14px; }
  .modalidades-scroll-stage { min-height: 980px; padding-bottom: 150px; }
  .justica-watermark { width: 220px; height: 300px; }
  .google-booking iframe { height: 580px; }
}
@media(max-width:768px) and (max-height:760px) {
  #atuacao .modalidades-grid { position: relative; top: auto; }
  .modalidades-scroll-stage { min-height: 0; padding-bottom: 160px; }
}
@media(prefers-reduced-motion:reduce) {
  #atuacao .modalidades-grid { position: relative; top: auto; }
  .modalidades-scroll-stage { min-height: 0; padding-bottom: 80px; }
}

/* Marca d'água ampla atrás das cards, delimitada ao palco. */
#atuacao .justica-watermark { width: min(82%, 860px); height: 620px; bottom: 35px; opacity: .16; object-fit: contain; }
#agenda .agenda-grid { display: grid; max-width: 760px; grid-template-columns: 1.12fr 1fr; gap: 16px; margin: 24px auto 0; }
#agenda .agenda-calendar, #agenda .agenda-slots { padding: 18px; border-radius: 12px; box-shadow: 0 3px 14px rgba(201,168,76,.06); }
#agenda .agenda-slots { position: static; }
#agenda .cal-days { gap: 3px; }
#agenda .cal-day { border-radius: 50%; font-size: .82rem; }
#agenda .cal-day.available { background: #f4f0eb; }
#agenda .cal-day.selected { background: var(--primary); }
#agenda .cal-legend { font-size: .65rem; gap: 10px; }
#agenda .agenda-modalidade { justify-content: center; }
#agenda .demo-confirmation { font-size: .8rem; margin-top: 12px; }
@media(max-width:768px) {
  #atuacao .justica-watermark { width: 100%; height: 620px; bottom: 70px; }
  #agenda .agenda-grid { grid-template-columns: 1fr; max-width: 380px; }
}

.google-calendar-demo-link { display:inline-block; margin-top:12px; text-decoration:underline; font-weight:600; color:var(--primary); }

.review-sample-label { font-size:.65rem; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); }
/* Evita solapamiento del hero con el menú en pantallas horizontales bajas. */
@media (min-width: 769px) and (max-height: 500px) {
  .hero-content { top: auto; bottom: 2rem; }
}

/* Logos e retratos: preservar proporção e visibilidade no celular. */
.header-brand { display: block; flex: 0 0 auto; }
#header .header-brand .logo-light, #header.scrolled .header-brand .logo-light {
  display: block; width: 156px; height: auto; max-width: none; object-fit: contain;
}
#atuacao .justica-watermark { opacity: .22; object-position: left center; z-index: 0; }
@media(max-width:768px) {
  #header .header-brand .logo-light, #header.scrolled .header-brand .logo-light { width: 170px; height: auto; }
  .problemas-image, .beneficios-image { height: auto; }
  .problemas-image img, .beneficios-image img { display: block; width: 100%; height: auto; object-fit: contain; object-position: center top; }
  #atuacao .modalidades-scroll-stage { padding-top: 150px; }
  #atuacao .justica-watermark { top: 0; bottom: auto; left: -8%; width: min(108%, 480px); height: auto; max-width: none; opacity: .24; }
}
@media(max-width:480px) {
  #header .header-cta { display: none; }
  #header .header-inner { justify-content: space-between; }
}
/* Somente Justiça: abaixo da primeira card e saindo pela esquerda. */
@media(max-width:768px) {
  #atuacao .justica-watermark {
    top: 350px; bottom: auto; left: -18%;
    width: min(125%, 480px); height: auto;
    opacity: .30; transform: none;
  }
}
/* Conter a marca d'água na seção sem criar outro contêiner de scroll. */
html { overflow-x: clip; }
#atuacao { overflow-x: clip; overflow-y: visible; }

/* ═══════════ PACOTES JH FOTOGRAFIA ═══════════ */
.pricing-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(201,168,76,.10), transparent 32%),
    linear-gradient(145deg, #050505 0%, #0b0b0b 58%, #111 100%);
  color: #fff;
  border-top: 1px solid rgba(201,168,76,.18);
}
.pricing-section::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none; opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.pricing-section .container { position: relative; z-index: 1; }
.pricing-heading { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.pricing-heading .label { color: #d4af37; }
.pricing-heading h2 { margin: .65rem 0 1rem; color: #fff; }
.pricing-heading > p:last-child { color: rgba(255,255,255,.66); line-height: 1.75; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.25rem; align-items: stretch; }
.pricing-card {
  position: relative; display: flex; flex-direction: column; min-height: 590px; padding: 2rem;
  border: 1px solid rgba(255,255,255,.15); border-radius: 22px;
  background: linear-gradient(155deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 22px 60px rgba(0,0,0,.32); transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.pricing-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,.55); box-shadow: 0 28px 70px rgba(0,0,0,.48); }
.pricing-card.featured { border-color: rgba(212,175,55,.62); background: linear-gradient(150deg, rgba(212,175,55,.15), rgba(255,255,255,.045) 40%, rgba(255,255,255,.025)); }
.pricing-badge { position: absolute; top: 1.25rem; right: 1.25rem; padding: .42rem .72rem; border: 1px solid rgba(212,175,55,.5); border-radius: 999px; color: #e0c46c; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.pricing-dot { width: 10px; height: 10px; margin-bottom: 1.1rem; border-radius: 50%; background: #d4af37; box-shadow: 0 0 18px rgba(212,175,55,.8); }
.pricing-card[data-tone="essencial"] .pricing-dot { background: #62c987; box-shadow: 0 0 18px rgba(98,201,135,.65); }
.pricing-card[data-tone="completo"] .pricing-dot { background: #69a8ff; box-shadow: 0 0 18px rgba(105,168,255,.65); }
.pricing-card[data-tone="premium"] .pricing-dot { background: #b987ff; box-shadow: 0 0 18px rgba(185,135,255,.65); }
.pricing-kicker { margin: 0 0 .85rem; color: rgba(255,255,255,.78); font-size: .72rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.pricing-card h3 { margin: 0; color: #fff; font-family: var(--serif); font-size: clamp(1.55rem,2.2vw,2.15rem); font-weight: 400; line-height: 1.12; }
.pricing-card h3 span { display: block; margin-top: .3rem; color: rgba(255,255,255,.52); font-family: var(--sans); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.pricing-price { margin: 1.6rem 0 1.8rem; color: #fff; font-family: var(--serif); font-size: clamp(2.5rem,4vw,3.65rem); line-height: 1; }
.pricing-price > span { color: #d4af37; font-family: var(--sans); font-size: .85rem; font-weight: 600; vertical-align: top; }
.pricing-price small { font-family: var(--sans); font-size: .9rem; color: rgba(255,255,255,.6); }
.pricing-card ul { display: grid; gap: .72rem; margin: 0 0 2rem; padding: 0; list-style: none; }
.pricing-card li { position: relative; padding-left: 1.45rem; color: rgba(255,255,255,.76); font-size: .84rem; line-height: 1.45; }
.pricing-card li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #d4af37; font-weight: 700; }
.pricing-cta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding: .95rem 1.1rem; border-radius: 999px; background: #fff; color: #080808; font-size: .76rem; font-weight: 600; transition: background .25s, color .25s, transform .25s; }
.pricing-cta:hover { background: #d4af37; color: #050505; transform: translateY(-2px); }
.pricing-cta span { font-size: 1.15rem; }
.pricing-notes { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1.5rem; margin-top: 2rem; padding: 1.5rem 1.75rem; border: 1px solid rgba(201,168,76,.22); border-radius: 16px; background: rgba(255,255,255,.035); }
.pricing-notes strong { color: #d4af37; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.pricing-notes p { margin: 0; color: rgba(255,255,255,.66); font-size: .78rem; line-height: 1.65; }
.pricing-notes span { grid-column: 2; color: rgba(255,255,255,.42); font-size: .7rem; font-style: italic; }
@media(max-width:1024px) { .pricing-grid { grid-template-columns: 1fr 1fr; } .pricing-card.featured { grid-column: 1 / -1; min-height: auto; } }
@media(max-width:680px) {
  .pricing-heading { margin-bottom: 2.25rem; text-align: left; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card, .pricing-card.featured { grid-column: auto; min-height: auto; padding: 1.5rem; border-radius: 18px; }
  .pricing-notes { grid-template-columns: 1fr; padding: 1.25rem; }
  .pricing-notes span { grid-column: 1; }
}
/* Ajuste visual: composición más cercana a la referencia de pricing */
.pricing-section {
  background: #080808;
  border-top: 1px solid #2a2a2a;
}
.pricing-section::before { display: none; }
.pricing-heading { max-width: 820px; margin-bottom: 5rem; }
.pricing-heading .label {
  display: inline-flex; padding: .35rem .9rem; border: 1px solid #343434;
  border-radius: 999px; color: #fff; font-size: .68rem; letter-spacing: .04em;
  text-transform: none; background: #080808;
}
.pricing-heading h2 {
  margin: 1.5rem auto 1.75rem; max-width: 720px; font-family: var(--sans);
  font-size: clamp(3.4rem, 6.3vw, 6.2rem); font-weight: 400; line-height: .94;
  letter-spacing: -.065em;
}
.pricing-heading > p:last-child { max-width: 620px; margin: 0 auto; color: rgba(255,255,255,.67); font-size: .94rem; }
.pricing-grid {
  grid-template-columns: minmax(280px,.82fr) minmax(520px,1.58fr);
  gap: 1.6rem; align-items: stretch;
}
.pricing-card {
  min-height: 520px; padding: 2rem; border-color: #3a3a3a; border-radius: 22px;
  background: #090909; box-shadow: none;
}
.pricing-card:hover { transform: translateY(-4px); border-color: #656565; box-shadow: none; }
.pricing-card[data-tone="completo"],
.pricing-card[data-tone="premium"] {
  display: grid; grid-template-columns: minmax(220px,.86fr) minmax(280px,1.14fr);
  grid-template-rows: auto auto auto 1fr auto; column-gap: 2rem; align-items: start;
  background: #1b1b1b;
}
.pricing-card[data-tone="completo"] .pricing-dot,
.pricing-card[data-tone="premium"] .pricing-dot { grid-column: 1; grid-row: 1; }
.pricing-card[data-tone="completo"] .pricing-kicker,
.pricing-card[data-tone="premium"] .pricing-kicker { grid-column: 1; grid-row: 2; }
.pricing-card[data-tone="completo"] h3,
.pricing-card[data-tone="premium"] h3 { grid-column: 1; grid-row: 3; }
.pricing-card[data-tone="completo"] .pricing-price,
.pricing-card[data-tone="premium"] .pricing-price { grid-column: 1; grid-row: 4; align-self: start; }
.pricing-card[data-tone="completo"] ul,
.pricing-card[data-tone="premium"] ul {
  grid-column: 2; grid-row: 1 / 6; align-self: stretch; margin: 0; padding: 1.6rem;
  border: 1px solid rgba(255,255,255,.055); border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.09)),
    radial-gradient(circle at 80% 100%, rgba(255,255,255,.16), transparent 45%);
}
.pricing-card[data-tone="completo"] ul::before,
.pricing-card[data-tone="premium"] ul::before {
  content: "Inclui:"; display: block; margin-bottom: .65rem; color: #fff;
  font-size: .78rem; font-weight: 600;
}
.pricing-card[data-tone="completo"] .pricing-cta,
.pricing-card[data-tone="premium"] .pricing-cta { grid-column: 1; grid-row: 5; width: max-content; min-width: 190px; }
.pricing-card.featured {
  grid-column: 1 / -1; min-height: 500px; border-color: #3a3a3a;
  background: #1b1b1b;
}
.pricing-card.featured::after {
  content: ""; position: absolute; right: 2rem; bottom: 2rem; width: 43%; height: 42%;
  border-radius: 50%; background: rgba(255,255,255,.08); filter: blur(48px);
  pointer-events: none;
}
.pricing-badge { top: 2rem; right: calc(50% + 1rem); border-color: #454545; color: #fff; background: #111; }
.pricing-dot { display: none; }
.pricing-kicker { color: #fff; font-size: .95rem; letter-spacing: 0; text-transform: none; }
.pricing-card h3 { font-family: var(--sans); font-size: 1.15rem; font-weight: 400; }
.pricing-card h3 span { display: inline; margin-left: .2rem; font-size: .72rem; text-transform: none; }
.pricing-price { margin: 1.25rem 0 2.2rem; font-family: var(--sans); font-size: clamp(3.2rem,4.6vw,5rem); font-weight: 300; letter-spacing: -.055em; }
.pricing-price > span { color: #d4af37; font-size: .8rem; }
.pricing-card li { color: rgba(255,255,255,.88); }
.pricing-card li::before {
  content: "●"; top: .22rem; width: 13px; height: 13px; border-radius: 50%;
  color: #d4af37; font-size: .45rem; text-align: center; line-height: 13px;
  background: rgba(255,255,255,.84);
}
.pricing-cta { width: max-content; min-width: 190px; padding: 1rem 1.35rem; }
.pricing-notes { margin-top: 1.6rem; border-color: #333; background: #101010; }
@media(max-width:1024px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { grid-column: auto; }
}
@media(max-width:700px) {
  .pricing-heading { margin-bottom: 3rem; text-align: center; }
  .pricing-heading h2 { font-size: clamp(2.8rem,14vw,4.5rem); }
  .pricing-card[data-tone="completo"], .pricing-card[data-tone="premium"] {
    display: flex; min-height: auto;
  }
  .pricing-card[data-tone="completo"] ul, .pricing-card[data-tone="premium"] ul {
    width: 100%; margin-bottom: 2rem; padding: 1.25rem;
  }
  .pricing-badge { top: 1.25rem; right: 1.25rem; }
}
/* Escala compacta para la sección de paquetes */
.pricing-section.section-pad { padding-top: 5rem; padding-bottom: 5rem; }
.pricing-heading { max-width: 650px; margin-bottom: 3rem; }
.pricing-heading h2 {
  max-width: 580px;
  margin: 1.15rem auto 1.25rem;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  line-height: 1;
}
.pricing-heading > p:last-child { max-width: 540px; font-size: .84rem; line-height: 1.6; }
.pricing-grid {
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: minmax(250px,.82fr) minmax(440px,1.55fr);
  gap: 1rem;
}
.pricing-card {
  min-height: 430px;
  padding: 1.5rem;
  border-radius: 17px;
}
.pricing-card[data-tone="completo"],
.pricing-card[data-tone="premium"] {
  grid-template-columns: minmax(190px,.84fr) minmax(240px,1.16fr);
  column-gap: 1.25rem;
}
.pricing-card.featured { min-height: 420px; }
.pricing-card[data-tone="completo"] ul,
.pricing-card[data-tone="premium"] ul {
  padding: 1.2rem;
  border-radius: 15px;
}
.pricing-kicker { margin-bottom: .65rem; font-size: .78rem; }
.pricing-card h3 { font-size: 1rem; }
.pricing-card h3 span { font-size: .66rem; }
.pricing-price {
  margin: 1rem 0 1.45rem;
  font-size: clamp(2.35rem, 3.5vw, 3.45rem);
}
.pricing-card ul { gap: .55rem; margin-bottom: 1.4rem; }
.pricing-card li { font-size: .75rem; line-height: 1.35; }
.pricing-cta { min-width: 168px; padding: .78rem 1rem; font-size: .69rem; }
.pricing-badge { top: 1.35rem; right: calc(50% + .6rem); font-size: .54rem; }
.pricing-notes { max-width: 1040px; margin: 1rem auto 0; padding: 1.15rem 1.35rem; }
@media(max-width:1024px) {
  .pricing-grid { max-width: 720px; grid-template-columns: 1fr; }
  .pricing-card, .pricing-card.featured { min-height: auto; }
  .pricing-notes { max-width: 720px; }
}
@media(max-width:700px) {
  .pricing-section.section-pad { padding-top: 4rem; padding-bottom: 4rem; }
  .pricing-heading { margin-bottom: 2rem; }
  .pricing-heading h2 { font-size: clamp(2.1rem, 10vw, 3rem); }
  .pricing-card, .pricing-card.featured { padding: 1.25rem; }
}
/* ═══════════ GALERIA CIRCULAR INFINITA ═══════════ */
.circular-gallery-section{position:relative;overflow:hidden;padding-bottom:0;background:#080808;color:#fff}
.circular-gallery-heading{position:relative;z-index:3;text-align:center}
.circular-gallery-heading .label{color:#d4af37}
.circular-gallery-heading h2{margin:.55rem 0 .8rem;color:#fff}
.circular-gallery-heading .section-intro{margin:0 auto;color:rgba(255,255,255,.62)}
.circular-gallery-shell{position:relative;height:600px;margin-top:2rem;overflow:hidden;cursor:grab;touch-action:pan-y;user-select:none;outline:none}
.circular-gallery-shell.is-dragging{cursor:grabbing}
.circular-gallery-shell::before{content:"";position:absolute;z-index:0;left:50%;bottom:-54%;width:min(1320px,116vw);aspect-ratio:2/1;transform:translateX(-50%);border:1px solid rgba(212,175,55,.32);border-radius:50% 50% 0 0/100% 100% 0 0;background:radial-gradient(ellipse at 50% 0%,rgba(212,175,55,.13),transparent 58%),linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.008));box-shadow:0 -30px 90px rgba(212,175,55,.08),inset 0 20px 60px rgba(255,255,255,.025)}
.circular-gallery-shell::after{content:"";position:absolute;z-index:5;inset:0;pointer-events:none;background:linear-gradient(90deg,#080808 0%,transparent 12%,transparent 88%,#080808 100%)}
.circular-gallery-track{position:absolute;z-index:2;top:35px;left:0;display:flex;align-items:flex-start;gap:clamp(18px,2.2vw,34px);width:max-content;will-change:transform}
.circular-gallery-item{flex:0 0 clamp(190px,17vw,270px);width:clamp(190px,17vw,270px);margin:0;transform-origin:50% 115%;transition:opacity .12s linear;will-change:transform,opacity}
.circular-gallery-item img{display:block;width:100%;aspect-ratio:3/4;object-fit:cover;border:1px solid rgba(255,255,255,.18);border-radius:5%;box-shadow:0 22px 45px rgba(0,0,0,.48);pointer-events:none}
.circular-gallery-item figcaption{margin-top:.8rem;color:#fff;font-family:var(--sans);font-size:.75rem;font-weight:700;letter-spacing:.12em;text-align:center;text-transform:uppercase}
.circular-gallery-hint{position:absolute;z-index:6;left:50%;bottom:1.5rem;transform:translateX(-50%);margin:0;color:rgba(255,255,255,.48);font-size:.64rem;letter-spacing:.13em;text-transform:uppercase;pointer-events:none}
.circular-gallery-hint span{color:#d4af37;font-size:1rem}
@media(max-width:768px){.circular-gallery-shell{height:520px;margin-top:1.25rem}.circular-gallery-track{top:28px;gap:16px}.circular-gallery-item{flex-basis:clamp(170px,52vw,220px);width:clamp(170px,52vw,220px)}.circular-gallery-shell::before{bottom:-25%;width:165vw}}
@media(prefers-reduced-motion:reduce){.circular-gallery-item{transition:none}}
/* ═══════════ FAQ EDITORIAL EM FUNDO BRANCO ═══════════ */
.faq-section {
  background: #fff;
  color: #0a0a0a;
  border-top: 1px solid #ececec;
}
.faq-heading {
  display: grid;
  grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr);
  gap: clamp(3rem,8vw,8rem);
  align-items: end;
  margin-bottom: 4.5rem;
}
.faq-heading-title .label {
  display: inline-flex;
  margin: 0 0 1.7rem;
  padding: .42rem .9rem;
  border: 1px solid #cfcfcf;
  border-radius: 999px;
  color: #111;
  font-size: .68rem;
  letter-spacing: .02em;
  text-transform: none;
}
.faq-heading-title h2 {
  max-width: 700px;
  margin: 0;
  color: #090909;
  font-family: var(--sans);
  font-size: clamp(3rem,6vw,5.8rem);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.065em;
}
.faq-heading-aside { padding-bottom: .35rem; }
.faq-heading-aside p {
  max-width: 430px;
  margin: 0 0 1.6rem;
  color: #474747;
  font-size: .9rem;
  line-height: 1.55;
}
.faq-heading-aside a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 200px;
  padding: .95rem 1.25rem;
  border: 1px solid #d4d4d4;
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
  font-size: .76rem;
  font-weight: 600;
  transition: background .25s,color .25s,transform .25s;
}
.faq-heading-aside a:hover { background: #d4af37; color: #080808; transform: translateY(-2px); }
.faq-heading-aside a span { margin-left: 2rem; font-size: 1rem; }
.faq-list {
  display: grid;
  gap: .75rem;
  max-width: none;
  margin: 0 auto;
  padding-left: clamp(0px,4vw,72px);
  padding-right: clamp(0px,4vw,72px);
}
.faq-item {
  overflow: hidden;
  margin: 0;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  background: #f7f7f7;
  transition: border-color .25s,background .25s,border-radius .25s;
}
.faq-item[open] { border-radius: 28px; border-color: #bdbdbd; background: #f3f3f3; }
.faq-item summary {
  min-height: 66px;
  padding: 1.25rem 4.5rem 1.25rem 1.8rem;
  border: 0;
  color: #111;
  font-family: var(--sans);
  font-size: clamp(.92rem,1.4vw,1.12rem);
  font-weight: 500;
}
.faq-item summary::after {
  content: "+";
  right: 1.7rem;
  width: auto;
  height: auto;
  color: #111;
  background: none;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: #b28b14; }
.faq-item:hover summary { color: #111; }
.faq-item p {
  max-width: 860px;
  margin: 0;
  padding: 0 4.5rem 1.6rem 1.8rem;
  color: #555;
  font-size: .85rem;
  line-height: 1.7;
}
@media(max-width:768px) {
  .faq-heading { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.7rem; }
  .faq-heading-title h2 { font-size: clamp(2.65rem,13vw,4rem); }
  .faq-heading-aside { padding: 0; }
  .faq-heading-aside p { margin-bottom: 1.2rem; }
  .faq-list { padding: 0; }
  .faq-item summary { min-height: 58px; padding: 1rem 3.5rem 1rem 1.25rem; font-size: .86rem; }
  .faq-item summary::after { right: 1.25rem; }
  .faq-item p { padding: 0 3rem 1.25rem 1.25rem; font-size: .79rem; }
}
/* Escala compacta del FAQ */
.faq-section.section-pad { padding-top: 5rem; padding-bottom: 5rem; }
.faq-heading {
  max-width: 1080px;
  margin: 0 auto 2.75rem;
  grid-template-columns: minmax(0,1.15fr) minmax(270px,.65fr);
  gap: clamp(2rem,6vw,5rem);
}
.faq-heading-title .label {
  margin-bottom: 1.1rem;
  padding: .32rem .72rem;
  font-size: .6rem;
}
.faq-heading-title h2 {
  max-width: 530px;
  font-size: clamp(2.25rem,4.2vw,3.9rem);
  line-height: .96;
}
.faq-heading-aside p {
  max-width: 360px;
  margin-bottom: 1.15rem;
  font-size: .78rem;
  line-height: 1.5;
}
.faq-heading-aside a {
  min-width: 170px;
  padding: .72rem 1rem;
  font-size: .68rem;
}
.faq-heading-aside a span { margin-left: 1.25rem; }
.faq-list {
  max-width: 1040px;
  gap: .55rem;
  padding-left: 0;
  padding-right: 0;
}
.faq-item { border-radius: 999px; }
.faq-item[open] { border-radius: 20px; }
.faq-item summary {
  min-height: 52px;
  padding: .85rem 3.6rem .85rem 1.35rem;
  font-size: clamp(.78rem,1.05vw,.92rem);
}
.faq-item summary::after {
  right: 1.35rem;
  font-size: 1.4rem;
}
.faq-item p {
  max-width: 760px;
  padding: 0 3.6rem 1.15rem 1.35rem;
  font-size: .76rem;
  line-height: 1.6;
}
@media(max-width:768px) {
  .faq-section.section-pad { padding-top: 4rem; padding-bottom: 4rem; }
  .faq-heading { grid-template-columns: 1fr; gap: 1.15rem; margin-bottom: 2rem; }
  .faq-heading-title h2 { font-size: clamp(2.1rem,10vw,2.9rem); }
  .faq-heading-aside p { font-size: .75rem; }
  .faq-item summary { min-height: 48px; padding: .78rem 3rem .78rem 1rem; font-size: .76rem; }
  .faq-item summary::after { right: 1rem; font-size: 1.25rem; }
  .faq-item p { padding: 0 2.8rem 1rem 1rem; font-size: .72rem; }
}
/* Acordeones FAQ en formato reducido */
.faq-list {
  max-width: 790px;
  gap: .42rem;
}
.faq-item { border-radius: 14px; }
.faq-item[open] { border-radius: 14px; }
.faq-item summary {
  min-height: 42px;
  padding: .62rem 3rem .62rem 1rem;
  font-size: .72rem;
  line-height: 1.3;
}
.faq-item summary::after {
  right: 1rem;
  font-size: 1.15rem;
}
.faq-item p {
  max-width: 650px;
  padding: 0 3rem .85rem 1rem;
  font-size: .69rem;
  line-height: 1.5;
}
@media(max-width:768px) {
  .faq-list { max-width: 100%; }
  .faq-item summary {
    min-height: 40px;
    padding: .58rem 2.6rem .58rem .9rem;
    font-size: .7rem;
  }
  .faq-item summary::after { right: .9rem; font-size: 1.05rem; }
  .faq-item p { padding: 0 2.5rem .8rem .9rem; font-size: .67rem; }
}
/* ═══════════ RESEÑAS EDITORIAIS EM FUNDO BRANCO ═══════════ */
.reviews-showcase{background:#fff;color:#0a0a0a;border-top:1px solid #ececec}
.reviews-showcase>.container{max-width:1120px}
.reviews-heading{display:grid;grid-template-columns:1.15fr .75fr;gap:clamp(2rem,7vw,7rem);align-items:end;margin-bottom:2.8rem}
.reviews-heading .label{display:inline-flex;margin:0 0 1.15rem;padding:.32rem .72rem;border:1px solid #cfcfcf;border-radius:999px;color:#111;font-size:.6rem;letter-spacing:.02em;text-transform:none}
.reviews-heading h2{margin:0;color:#090909;font-family:var(--sans);font-size:clamp(2.35rem,4.5vw,4.2rem);font-weight:400;line-height:.95;letter-spacing:-.06em}
.reviews-heading>p{max-width:390px;margin:0 0 .3rem;color:#555;font-size:.8rem;line-height:1.55}
.reviews-layout{display:grid;grid-template-columns:1.55fr .78fr;gap:1.25rem;align-items:stretch}
.review-feature{display:grid;grid-template-columns:1.05fr .9fr;gap:1.25rem;min-height:390px;padding:1.15rem;border:1px solid #d8d8d8;border-radius:18px;background:#f4f4f4}
.review-feature-photo{overflow:hidden;border-radius:14px;background:#ddd}
.review-feature-photo img{width:100%;height:100%;min-height:350px;object-fit:cover;pointer-events:none}
.review-feature-copy{display:flex;flex-direction:column;padding:.25rem .3rem .25rem 0}
.review-disclaimer{display:inline-flex;width:max-content;padding:.28rem .58rem;border:1px solid #d1d1d1;border-radius:999px;color:#666;font-size:.55rem;letter-spacing:.08em;text-transform:uppercase}
.review-person{display:flex;align-items:center;gap:.7rem;margin:1.35rem 0}
.review-person>img{width:42px;height:42px;border:1px solid #bbb;border-radius:50%;object-fit:cover}
.review-person strong,.review-person small{display:block}
.review-person strong{font-size:.86rem;color:#111}
.review-person small{margin-top:.15rem;color:#666;font-size:.66rem}
.review-feature blockquote{margin:.4rem 0 1.5rem;color:#404040;font-size:.88rem;line-height:1.6}
.review-stars{margin-top:auto;color:#d4a72c;font-size:1rem;letter-spacing:.13em}
.review-summary{display:flex;flex-direction:column;min-height:390px;padding:1.6rem;border:1px solid #d8d8d8;border-radius:18px;background:#fafafa}
.review-score{margin:1.5rem 0 1.7rem;color:#090909;font-family:var(--sans);font-size:clamp(3rem,5vw,4.5rem);font-weight:300;line-height:1;letter-spacing:-.06em}
.review-score span{font-size:1.65rem;letter-spacing:-.03em}
.review-avatars{display:flex;margin-bottom:.8rem}
.review-avatars img{width:34px;height:34px;margin-right:-8px;border:2px solid #fff;border-radius:50%;object-fit:cover}
.review-summary .review-stars{margin:0 0 .7rem}
.review-summary>p{margin:0;color:#555;font-size:.72rem;line-height:1.5}
.review-summary>a{display:flex;align-items:center;justify-content:space-between;margin-top:auto;padding-top:1rem;border-top:1px solid #ddd;color:#111;font-size:.72rem;font-weight:600}
.review-summary>a:hover{color:#a47d10}
@media(max-width:900px){.reviews-layout{grid-template-columns:1fr}.review-summary{min-height:250px}.reviews-heading{gap:2.5rem}}
@media(max-width:680px){.reviews-showcase.section-pad{padding-top:4rem;padding-bottom:4rem}.reviews-heading{grid-template-columns:1fr;gap:1rem;margin-bottom:2rem}.reviews-heading h2{font-size:clamp(2.2rem,11vw,3rem)}.review-feature{grid-template-columns:1fr;min-height:0}.review-feature-photo img{height:auto;min-height:0;aspect-ratio:3/4}.review-feature-copy{padding:.2rem}.review-summary{min-height:230px;padding:1.25rem}}
/* ═══════════ FOOTER EDITORIAL JH ═══════════ */
.site-footer{position:relative;overflow:hidden;padding:5rem 0 1.6rem;background:#080808;color:#fff;border-top:1px solid #282828}
.site-footer::before,.site-footer::after{display:none}
.site-footer>.container{max-width:1120px}
.footer-hero{display:grid;grid-template-columns:1.15fr .75fr;gap:clamp(3rem,8vw,8rem);align-items:start;padding-bottom:4.5rem}
.footer-hero h2{max-width:610px;margin:0;color:#fff;font-family:var(--sans);font-size:clamp(2.5rem,4.8vw,4.4rem);font-weight:400;line-height:.96;letter-spacing:-.06em}
.footer-hero-action{padding-top:.3rem}
.footer-hero-action p{max-width:410px;margin:0 0 1.8rem;color:rgba(255,255,255,.7);font-size:.82rem;line-height:1.55}
.footer-hero-action>a{display:inline-flex;align-items:center;justify-content:space-between;min-width:210px;padding:.9rem 1.2rem;border-radius:999px;background:#fff;color:#090909;font-size:.73rem;font-weight:600;transition:background .25s,transform .25s}
.footer-hero-action>a:hover{background:#d4af37;transform:translateY(-2px)}
.footer-hero-action>a span{margin-left:1.7rem;font-size:1rem}
.footer-links{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));max-width:700px;gap:3.5rem;padding-bottom:3.5rem}
.footer-link-group{display:flex;flex-direction:column;align-items:flex-start;gap:.55rem}
.footer-link-group h3{margin:0 0 .45rem;color:#fff;font-family:var(--sans);font-size:.74rem;font-weight:700}
.footer-link-group a,.footer-link-group span{color:rgba(255,255,255,.74);font-size:.72rem;line-height:1.4}
.footer-link-group a:hover{color:#d4af37}
.site-footer .footer-bottom{display:grid;grid-template-columns:1fr auto auto;gap:1.5rem;align-items:center;margin:0;padding:1.25rem 0 0;border-top:1px solid rgba(255,255,255,.1);color:rgba(255,255,255,.42);font-size:.64rem}
.site-footer .footer-credit{color:rgba(255,255,255,.42);text-align:right}
.site-footer .footer-credit:hover{color:#fff}
@media(max-width:768px){.site-footer{padding-top:4rem}.footer-hero{grid-template-columns:1fr;gap:1.5rem;padding-bottom:3rem}.footer-hero h2{font-size:clamp(2.3rem,11vw,3.2rem)}.footer-hero-action p{margin-bottom:1.25rem}.footer-links{grid-template-columns:1fr 1fr;max-width:none;gap:2.2rem 1.5rem;padding-bottom:2.6rem}.footer-contact{grid-column:1/-1}.site-footer .footer-bottom{grid-template-columns:1fr;gap:.45rem}.site-footer .footer-credit{text-align:left}}
@media(max-width:420px){.footer-links{grid-template-columns:1fr}.footer-contact{grid-column:auto}}
/* Escala compacta do footer */
.site-footer { padding-top: 4rem; padding-bottom: 1.25rem; }
.site-footer > .container { max-width: 1040px; }
.footer-hero { gap: clamp(2rem,6vw,5rem); padding-bottom: 3.25rem; }
.footer-hero h2 {
  max-width: 500px;
  font-size: clamp(2rem,3.6vw,3.25rem);
  line-height: 1;
}
.footer-hero-action p {
  max-width: 350px;
  margin-bottom: 1.3rem;
  font-size: .74rem;
  line-height: 1.5;
}
.footer-hero-action > a {
  min-width: 180px;
  padding: .72rem 1rem;
  font-size: .66rem;
}
.footer-hero-action > a span { margin-left: 1.25rem; font-size: .88rem; }
.footer-links { max-width: 620px; gap: 2.5rem; padding-bottom: 2.6rem; }
.footer-link-group { gap: .42rem; }
.footer-link-group h3 { margin-bottom: .3rem; font-size: .66rem; }
.footer-link-group a, .footer-link-group span { font-size: .64rem; }
.site-footer .footer-bottom { gap: 1rem; padding-top: 1rem; font-size: .58rem; }
@media(max-width:768px) {
  .site-footer { padding-top: 3.25rem; }
  .footer-hero { padding-bottom: 2.5rem; }
  .footer-hero h2 { font-size: clamp(1.9rem,9vw,2.55rem); }
  .footer-links { padding-bottom: 2.15rem; }
}
/* Cabeçalho compacto */
#header { padding: .72rem 0; }
#header.scrolled { padding: .55rem 0; }
#header .header-inner { gap: 1.15rem; }
#header .header-brand .logo-light,
#header.scrolled .header-brand .logo-light {
  width: 112px;
  height: auto;
}
nav.header-nav { gap: 1rem; }
nav.header-nav a {
  font-size: .64rem;
  letter-spacing: .025em;
}
#header .header-cta {
  padding: .52rem .9rem;
  font-size: .61rem;
}
.mobile-nav { gap: 1.05rem; }
.mobile-nav a { font-size: clamp(1.3rem,4vw,1.85rem); }
.mobile-nav .mobile-cta { padding: .65rem 1.35rem; font-size: .67rem; }
@media(max-width:768px) {
  #header { padding: .6rem 0; }
  #header.scrolled { padding: .48rem 0; }
  #header .header-brand .logo-light,
  #header.scrolled .header-brand .logo-light { width: 104px; }
  .hamburger { width: 24px; gap: 4px; }
}