/* ===================================================================
   ALTO DOS CARVALHOS × BUFFET SIMONE CARVALHO — LANDING PAGE
   Tema: claro, elegante, com detalhes dourados.
   =================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul[class], ol[class] { list-style: none; margin: 0; padding: 0; }
img, picture { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Design tokens ---------- */
:root {
  --cream: #faf6ee;
  --cream-deep: #f2e9d8;
  --paper: #fffdf8;
  --ink: #2a231c;
  --ink-soft: #6b5f52;
  --ink-faint: #9a8d7c;
  --gold: #ad8a4e;
  --gold-light: #d9bd87;
  --gold-pale: #efe1c3;
  --gold-deep: #8a6b34;
  --white: #ffffff;
  --line: rgba(42, 35, 28, 0.12);
  --shadow-soft: 0 20px 50px -25px rgba(42, 35, 28, 0.35);
  --shadow-card: 0 12px 30px -15px rgba(42, 35, 28, 0.25);
  --gradient-gold: linear-gradient(135deg, #c9a961 0%, #ad8a4e 45%, #7a5e2c 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(20, 16, 10, 0.15) 0%, rgba(20, 16, 10, 0.55) 65%, rgba(20, 16, 10, 0.82) 100%);
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --container: 1220px;
  --radius: 4px;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: 0.005em;
}

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

@media (min-width: 640px) { .container { padding-inline: 40px; } }
@media (min-width: 1024px) { .container { padding-inline: 56px; } }

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  z-index: 999;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ---------- Typography helpers ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.kicker--center { justify-content: center; }
.kicker--light { color: var(--gold-light); }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title {
  font-size: clamp(2rem, 1.6rem + 1.8vw, 3.1rem);
  margin-top: 14px;
}
.section-lede {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.eyebrow-divider {
  width: 64px;
  height: 2px;
  background: var(--gradient-gold);
  margin: 18px auto 0;
}
.section-head:not(.section-head--center) .eyebrow-divider { margin-inline: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease, border-color .35s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--gold {
  background: var(--gradient-gold);
  color: var(--white);
  text-shadow: 0 1px 2px rgba(20, 15, 5, 0.35);
  box-shadow: var(--shadow-card);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(138, 107, 52, 0.55); }

.btn--outline {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-3px); }

.btn--outline-light {
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
}
.btn--outline-light:hover { border-color: var(--gold-light); background: rgba(255,255,255,0.12); transform: translateY(-3px); }

.btn--sm { padding: 12px 24px; font-size: 12px; }
.btn--block { width: 100%; }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: translateY(0) scale(0.98); }
[data-reveal="fade"].is-visible { transform: scale(1); }
[data-reveal-delay="1"] { transition-delay: 0.12s; }
[data-reveal-delay="2"] { transition-delay: 0.24s; }
[data-reveal-delay="3"] { transition-delay: 0.36s; }
[data-reveal-delay="4"] { transition-delay: 0.48s; }

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: 26px;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.site-header.is-scrolled {
  padding-block: 14px;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -18px rgba(42,35,28,0.4);
  border-bottom-color: var(--line);
}

.logo { display: flex; align-items: center; }
.logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter .4s ease, opacity .3s ease;
}
.logo:hover .logo-img { opacity: 0.82; }
.site-header.is-scrolled .logo-img { filter: none; }

.main-nav { display: none; }
@media (min-width: 960px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
  }
  .main-nav a {
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    position: relative;
    padding-bottom: 4px;
    transition: color .4s ease;
  }
  .site-header:not(.is-scrolled) .main-nav a { color: var(--white); }
  .main-nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 1px;
    background: var(--gold);
    transition: right 0.35s cubic-bezier(0.22,1,0.36,1);
  }
  .main-nav a:hover::after,
  .main-nav a:focus-visible::after { right: 0; }
  .main-nav a:hover { color: var(--gold-deep); }
  .site-header:not(.is-scrolled) .main-nav a:hover { color: var(--gold-light); }
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn { display: none; }
@media (min-width: 960px) { .header-actions .btn { display: inline-flex; } }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 6px 0;
}
@media (min-width: 960px) { .nav-toggle { display: none; } }
.nav-toggle span {
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  transition: transform .35s ease, opacity .35s ease, background .35s ease;
}
.site-header:not(.is-scrolled) .nav-toggle span { background: var(--white); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.site-header.menu-open .nav-toggle span { background: var(--ink) !important; }

/* Mobile menu */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 40px 60px;
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mobile-nav .btn { margin-top: 32px; }
.mobile-social { display: flex; gap: 20px; margin-top: 36px; }
.mobile-social a { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.mobile-social svg { width: 18px; height: 18px; color: var(--gold-deep); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 160px 90px;
}
.hero-kicker {
  color: var(--gold-light);
}
.hero-title {
  margin-top: 22px;
  font-size: clamp(2.6rem, 2rem + 3.2vw, 5rem);
  max-width: 15ch;
  color: var(--white);
  text-wrap: balance;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  margin-top: 24px;
  max-width: 46ch;
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(255,255,255,0.86);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }

.hero-scroll {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
}
@media (min-width: 780px) { .hero-scroll { display: flex; } }
.hero-scroll span { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-scroll .line { width: 1px; height: 48px; background: rgba(255,255,255,0.4); position: relative; overflow: hidden; }
.hero-scroll .line::after {
  content: '';
  position: absolute; left: 0; top: -100%;
  width: 100%; height: 100%;
  background: var(--gold-light);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

/* ===================================================================
   STATS STRIP
   =================================================================== */
.stats {
  background: var(--ink);
  color: var(--white);
  padding-block: 56px;
  position: relative;
  z-index: 3;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
@media (min-width: 780px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 1.7rem + 1.4vw, 3rem);
  color: var(--gold-light);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-label {
  margin-top: 8px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
}

/* ===================================================================
   SOBRE / DIFERENCIAIS
   =================================================================== */
.about { padding-block: 130px; background: var(--cream); overflow: hidden; }
.about-grid {
  display: grid;
  gap: 60px;
  align-items: center;
}
@media (min-width: 960px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }

.about-collage { position: relative; }
.about-collage .img-a, .about-collage .img-b {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-collage .img-a { aspect-ratio: 4/5; }
.about-collage .img-b {
  position: absolute;
  width: 46%;
  aspect-ratio: 1/1;
  right: -6%;
  bottom: -10%;
  border: 6px solid var(--cream);
}
.about-collage .img-a img, .about-collage .img-b img { width: 100%; height: 100%; object-fit: cover; }
.about-collage .frame-deco {
  position: absolute;
  inset: 18px -18px auto auto;
  width: 60%; aspect-ratio: 4/5;
  border: 1px solid var(--gold);
  z-index: -1;
  top: -22px; left: -22px;
}

.about-copy .section-lede { color: var(--ink-soft); }
.feature-list { margin-top: 34px; display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold-pale);
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 18px; height: 18px; color: var(--gold-deep); }
.feature-text strong { display: block; font-family: var(--font-serif); font-size: 1.05rem; font-weight: 500; margin-bottom: 2px; }
.feature-text span { color: var(--ink-soft); font-size: 0.95rem; }

/* ===================================================================
   ESPAÇO — CARDS
   =================================================================== */
.spaces { padding-block: 130px; background: var(--paper); }
.spaces-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 20px;
}
@media (min-width: 700px) { .spaces-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .spaces-grid { grid-template-columns: repeat(4, 1fr); } }

.space-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-card);
}
.space-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.space-card:hover img { transform: scale(1.08); }
.space-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,10,0) 35%, rgba(20,16,10,0.85) 100%);
}
.space-card-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 22px;
  z-index: 2;
  color: var(--white);
}
.space-card-num { font-size: 11px; letter-spacing: 0.2em; color: var(--gold-light); }
.space-card-body h3 { font-size: 1.25rem; margin-top: 8px; color: var(--white); }
.space-card-body p { margin-top: 8px; font-size: 0.88rem; color: rgba(255,255,255,0.78); font-weight: 300; }

/* ===================================================================
   GASTRONOMIA
   =================================================================== */
.gastronomy {
  position: relative;
  padding-block: 140px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.gastronomy::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(173, 138, 78, 0.28), transparent 55%);
  pointer-events: none;
}
.gastronomy-grid {
  display: grid;
  gap: 60px;
  position: relative;
  z-index: 1;
}
@media (min-width: 960px) { .gastronomy-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; } }
.gastronomy-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.6);
}
.gastronomy-media img { width: 100%; height: 100%; object-fit: cover; }
.gastronomy .section-head { }
.gastronomy .section-title { color: var(--white); }
.gastronomy .section-lede { color: rgba(255,255,255,0.72); }

.gastronomy-signature {
  margin-top: 36px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.gastronomy-signature p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold-light);
  line-height: 1.4;
}
.gastronomy-signature span { display: block; margin-top: 14px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

.gastro-strip {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
@media (min-width: 700px) { .gastro-strip { grid-template-columns: repeat(4, 1fr); } }
.gastro-strip figure { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; }
.gastro-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(0.22,1,0.36,1), filter .5s ease; filter: grayscale(0.15); }
.gastro-strip figure:hover img { transform: scale(1.1); filter: grayscale(0); }

/* ===================================================================
   TIPOS DE EVENTO
   =================================================================== */
.events { padding-block: 130px; background: var(--cream); }
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 20px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 700px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .events-grid { grid-template-columns: repeat(5, 1fr); } }

.event-card {
  background: var(--paper);
  padding: 40px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: background .4s ease, transform .4s ease;
  position: relative;
}
.event-card:hover { background: var(--white); box-shadow: var(--shadow-card); transform: translateY(-4px); z-index: 2; }
.event-card-icon { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--gold-pale); }
.event-card-icon svg { width: 20px; height: 20px; color: var(--gold-deep); }
.event-card h3 { font-size: 1.15rem; }
.event-card p { font-size: 0.9rem; color: var(--ink-soft); flex-grow: 1; }
.event-card a { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); display: inline-flex; align-items: center; gap: 8px; }
.event-card a svg { width: 14px; height: 14px; transition: transform .3s ease; }
.event-card a:hover svg { transform: translateX(4px); }

/* ===================================================================
   GALERIA
   =================================================================== */
.gallery { padding-block: 130px; background: var(--paper); }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; margin-bottom: 36px; }
.filter-btn {
  padding: 9px 20px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 30px;
  color: var(--ink-soft);
  transition: all .3s ease;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.filter-btn.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  grid-auto-flow: dense;
}
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
}
.gallery-item.tall { aspect-ratio: 1/1.35; }
@media (min-width: 700px) { .gallery-item.tall { grid-row: span 2; aspect-ratio: 1/2.2; } }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(0.22,1,0.36,1); }
.gallery-item:hover img { transform: scale(1.09); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(20,16,10,0);
  transition: background .4s ease;
}
.gallery-item:hover::after { background: rgba(20,16,10,0.25); }
.gallery-item .zoom-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .4s ease;
}
.gallery-item:hover .zoom-icon { opacity: 1; }
.gallery-item .zoom-icon svg { width: 30px; height: 30px; color: var(--white); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 12, 8, 0.95);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 84vh; border-radius: 4px; box-shadow: 0 40px 80px rgba(0,0,0,0.6); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: var(--white);
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s ease, background .3s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { border-color: var(--gold-light); background: rgba(255,255,255,0.08); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox svg { width: 18px; height: 18px; }

/* ===================================================================
   DEPOIMENTOS
   =================================================================== */
.testimonials {
  padding-block: 130px;
  background: var(--cream-deep);
  position: relative;
}
.testimonial-track-wrap { max-width: 780px; margin-inline: auto; text-align: center; position: relative; }
.testimonial-quote-icon { color: var(--gold-light); width: 44px; height: 44px; margin-inline: auto; }
.testimonial-track { position: relative; min-height: 220px; margin-top: 20px; }
.testimonial-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}
.testimonial-slide.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.testimonial-slide p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.9rem);
  color: var(--ink);
  line-height: 1.45;
}
.testimonial-slide footer { margin-top: 22px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.testimonial-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: background .3s ease, transform .3s ease; }
.testimonial-dots button.is-active { background: var(--gold); transform: scale(1.3); }

/* ===================================================================
   FAQ
   =================================================================== */
.faq { padding-block: 130px; background: var(--cream-deep); }
.faq-list { max-width: 780px; margin: 20px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--ink);
}
.faq-question svg {
  width: 18px; height: 18px;
  color: var(--gold-deep);
  flex-shrink: 0;
  transition: transform .4s cubic-bezier(0.22,1,0.36,1);
}
.faq-item.is-open .faq-question svg { transform: rotate(135deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(0.22,1,0.36,1);
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer > p {
  overflow: hidden;
  padding: 0 26px 22px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  min-height: 0;
}
.faq-answer > p { grid-row: 1; }
.faq-answer a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ===================================================================
   CTA BANNER
   =================================================================== */
.cta-banner {
  position: relative;
  padding-block: 100px;
  background: var(--gradient-gold);
  overflow: hidden;
}
.cta-banner-inner { position: relative; z-index: 1; text-align: center; }
.cta-banner .kicker { color: var(--white); text-shadow: 0 1px 2px rgba(20, 15, 5, 0.3); }
.cta-banner .kicker::before { background: var(--white); }
.cta-banner h2 { color: var(--white); text-shadow: 0 1px 3px rgba(20, 15, 5, 0.3); font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.9rem); margin-top: 14px; max-width: 20ch; margin-inline: auto; }
.cta-banner p { margin-top: 16px; color: rgba(255,255,255,0.92); text-shadow: 0 1px 2px rgba(20, 15, 5, 0.25); max-width: 48ch; margin-inline: auto; }
.cta-banner .btn { margin-top: 32px; }
.cta-banner .btn--gold { background: #2a2013; color: var(--gold-light); }
.cta-banner .btn--gold:hover { background: #1a1309; }

/* ===================================================================
   CONTATO
   =================================================================== */
.contact { padding-block: 130px; background: var(--paper); }
.contact-grid { display: grid; gap: 60px; margin-top: 20px; align-items: start; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 70px; } }

.contact-info-list { display: flex; flex-direction: column; gap: 26px; margin-top: 34px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .feature-icon { border-color: var(--gold-pale); }
.contact-info-item strong { display: block; font-family: var(--font-serif); font-size: 1.02rem; margin-bottom: 3px; }
.contact-info-item span, .contact-info-item a { color: var(--ink-soft); font-size: 0.94rem; }
.contact-info-item a:hover { color: var(--gold-deep); }

.contact-map { margin-top: 34px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.35) sepia(0.12); }

.contact-social { display: flex; gap: 14px; margin-top: 30px; }
.contact-social a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s ease, transform .3s ease;
}
.contact-social a:hover { border-color: var(--gold); transform: translateY(-3px); }
.contact-social svg { width: 18px; height: 18px; color: var(--gold-deep); }

.contact-form {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 560px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-top: 22px; }
.field:first-child { margin-top: 0; }
.field label { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 2px;
  background: transparent;
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color .3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 90px; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.form-note { font-size: 0.82rem; color: var(--ink-faint); }
.form-success {
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--gold-deep);
  display: none;
}
.form-success.is-visible { display: block; }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.75); padding-block: 80px 30px; }
.footer-grid {
  display: grid;
  gap: 46px;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr; } }
.footer-brand .logo-img { height: 40px; }
.footer-brand p { margin-top: 18px; font-size: 0.9rem; color: rgba(255,255,255,0.55); max-width: 34ch; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; font-family: var(--font-serif); font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color .3s ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; }
.footer-social svg { width: 16px; height: 16px; }
.footer-social a:hover { border-color: var(--gold-light); }
.footer-bottom {
  margin-top: 64px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a:hover { color: var(--gold-light); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ===================================================================
   FLOATING ELEMENTS
   =================================================================== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.4);
  transition: transform .3s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; color: var(--white); }
.whatsapp-float .ping {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; opacity: 0.6;
  animation: ping 2.4s cubic-bezier(0,0,0.2,1) infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.9); opacity: 0; } }

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 90;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 16px; height: 16px; }

/* Utility */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
