/* ═══════════════════════════════════════════════════════════════
   VIVA LA VITTA — Casa de Repouso
   Direção de arte: acolhimento · calor humano · confiança
   Paleta: escuras terrosas + dourado + sálvia
   ═══════════════════════════════════════════════════════════════ */

/* ─────────── Design Tokens ─────────── */
:root {
  /* Cores base */
  --bg-ink:        #16130F;
  --bg-ink-2:      #1C1812;
  --bg-ink-3:      #241E16;
  --bg-paper:      #F5EFE6;
  --bg-paper-2:    #EDE6D4;
  --bg-cream:      #FBF7EE;

  /* Dourado principal */
  --gold:          #D4A853;
  --gold-light:    #E8C67A;
  --gold-dark:     #B8893A;
  --gold-grad:     linear-gradient(135deg, #E8C67A 0%, #D4A853 45%, #B8893A 100%);

  /* Sálvia / verde casa */
  --sage:          #8FA98C;
  --sage-dark:     #5F7A5C;
  --sage-deep:     #3E513B;

  /* Terracota / coral quente */
  --terra:         #C66B4A;

  /* Textos */
  --text-light:    #F5EFE6;
  --text-muted:    #A89A80;
  --text-body:     rgba(245, 239, 230, 0.78);

  /* Tipografia */
  --font-display:  'Fraunces', Georgia, serif;
  --font-body:     'Manrope', 'Segoe UI', sans-serif;

  /* Layout */
  --container:     1200px;
  --radius-sm:     10px;
  --radius-md:     18px;
  --radius-lg:     28px;
  --radius-xl:     36px;

  /* Sombras */
  --shadow-gold:   0 20px 60px -15px rgba(212, 168, 83, 0.25);
  --shadow-card:   0 10px 40px rgba(0, 0, 0, 0.18);
  --shadow-deep:   0 30px 80px rgba(0, 0, 0, 0.35);

  /* Transições */
  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-ink);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

::selection {
  background: var(--gold);
  color: var(--bg-ink);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-ink);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-dark), var(--gold));
  border-radius: 8px;
  border: 2px solid var(--bg-ink);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

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

/* ─────────── Tipografia utilitária ─────────── */
.section {
  padding: 140px 0;
}

.section--dark {
  background: var(--bg-ink-2);
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.section-label::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 0.08em;
}

.section-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.75;
}

.section-heading {
  margin-bottom: 80px;
}

.section-heading--light .section-sub {
  color: var(--text-muted);
}

/* ─────────── Botões ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn svg {
  transition: transform 0.4s var(--ease-out);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--gold {
  background: var(--gold-grad);
  color: var(--bg-ink);
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}

.btn--gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 168, 83, 0.4);
}

.btn--gold:hover::before {
  transform: translateX(120%);
}

.btn--ghost {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(245, 239, 230, 0.25);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 168, 83, 0.06);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--gold);
}

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

.btn--sm {
  padding: 11px 22px;
  font-size: 13.5px;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 15.5px;
}

.btn--xl {
  padding: 22px 52px;
  font-size: 16.5px;
}

/* ─────────── Preloader ─────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.preloader__mark {
  filter: drop-shadow(0 0 24px rgba(212, 168, 83, 0.35));
}

.preloader__text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  animation: preloaderPulse 1.6s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.preloader__bar {
  width: 160px;
  height: 3px;
  background: rgba(212, 168, 83, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

.preloader__bar i {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--gold-grad);
  border-radius: 3px;
  animation: preloaderBar 1.8s var(--ease-out) forwards;
}

@keyframes preloaderBar {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ─────────── Cursor Glow ─────────── */
.cursor-glow {
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.07) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  will-change: transform;
}

/* ─────────── Navbar ─────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.5s var(--ease-out);
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(22, 19, 15, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.12);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-ink);
  box-shadow: 0 4px 18px rgba(212, 168, 83, 0.35);
  transition: transform 0.4s var(--ease-spring);
}

.navbar__brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.06);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-text em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: var(--gold-grad);
  transition: width 0.4s var(--ease-out);
}

.nav-link:hover {
  color: var(--text-light);
}

.nav-link:hover::after {
  width: 100%;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.navbar__burger span {
  width: 26px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.4s var(--ease-out);
}

.navbar__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__burger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(22, 19, 15, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.mobile-menu nav a:not(.mobile-menu__cta) {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  padding: 10px 24px;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.5s var(--ease-out);
}

.mobile-menu nav a:hover {
  color: var(--gold);
}

.mobile-menu.open nav a:not(.mobile-menu__cta) {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open nav a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open nav a:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.open nav a:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu.open nav a:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.open nav a:nth-child(5) { transition-delay: 0.32s; }

.mobile-menu__cta {
  margin-top: 20px;
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.5s var(--ease-out);
}

.mobile-menu.open .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.38s;
}

/* ─────────── Rating Stars ─────────── */
.rating-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 15px;
  text-shadow: 0 0 12px rgba(212, 168, 83, 0.3);
}

/* ─────────── Hero ─────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

.hero__orb--1 {
  width: 520px;
  height: 520px;
  top: -140px;
  right: -80px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.14) 0%, transparent 70%);
  animation: orbFloat 14s ease-in-out infinite alternate;
}

.hero__orb--2 {
  width: 420px;
  height: 420px;
  bottom: 20px;
  left: -120px;
  background: radial-gradient(circle, rgba(95, 122, 92, 0.12) 0%, transparent 70%);
  animation: orbFloat 18s ease-in-out infinite alternate-reverse;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.1); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.25);
  backdrop-filter: blur(8px);
  margin-bottom: 32px;
}

.hero__badge-text {
  font-size: 13.5px;
  color: var(--text-muted);
}

.hero__badge-text strong {
  color: var(--gold-light);
  font-size: 15px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.2rem, 6.5vw, 5.6rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.hero__line {
  display: block;
}

.hero__line--italic {
  font-style: italic;
  font-weight: 400;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-left: 0.5em;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-body);
  max-width: 520px;
  margin-bottom: 42px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.hero__meta svg {
  color: var(--gold);
}

/* Hero Visual */
.hero__visual {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero__frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transform: rotate(1.5deg);
  transition: transform 0.6s var(--ease-out);
  box-shadow: var(--shadow-deep);
}

.hero__visual:hover .hero__frame {
  transform: rotate(0.5deg) scale(1.01);
}

.hero__art {
  width: 100%;
  height: auto;
}

/* Float cards */
.hero__float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 16px;
  background: rgba(245, 239, 230, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 239, 230, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  animation: floatCard 5s ease-in-out infinite;
  z-index: 3;
  white-space: nowrap;
}

.hero__float-card--1 {
  top: 14%;
  left: -8%;
}

.hero__float-card--2 {
  bottom: 9%;
  right: -6%;
  animation-delay: 2.5s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(var(--tilt, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--tilt, 0deg)); }
}

.hero__float-card--1 { --tilt: -3deg; }
.hero__float-card--2 { --tilt: 3deg; }

.float-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-ink);
  flex-shrink: 0;
}

.hero__float-card p {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.hero__float-card strong {
  font-size: 13.5px;
  font-weight: 700;
}

.hero__float-card span {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* Marquee */
.hero__marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(212, 168, 83, 0.12);
  border-bottom: 1px solid rgba(212, 168, 83, 0.12);
  background: rgba(22, 19, 15, 0.6);
  backdrop-filter: blur(8px);
  padding: 18px 0;
  overflow: hidden;
  z-index: 2;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.marquee__track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-body);
  white-space: nowrap;
}

.marquee__track i {
  color: var(--gold);
  font-size: 0.9rem;
  font-style: normal;
}

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

/* ─────────── Manifesto ─────────── */
.manifesto {
  background: var(--bg-ink);
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 120px;
  background: linear-gradient(rgba(212, 168, 83, 0.4), transparent);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.manifesto__label .section-label {
  position: sticky;
  top: 120px;
}

.manifesto__body {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.6;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.manifesto__drop {
  letter-spacing: -0.01em;
}

.drop-cap {
  float: left;
  font-size: 5.4em;
  line-height: 0.85;
  padding-right: 0.12em;
  font-style: italic;
  font-weight: 500;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.manifesto__body em {
  font-style: italic;
  color: var(--gold-light);
}

.manifesto__text {
  color: var(--text-body);
  font-size: 0.82em;
  line-height: 1.75;
  font-family: var(--font-body);
  font-weight: 400;
}

.manifesto__text strong {
  color: var(--gold-light);
  font-weight: 700;
}

.manifesto__sig {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sig-line {
  width: 60px;
  height: 1.5px;
  background: var(--gold-grad);
}

.manifesto__sig p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ─────────── Stats ─────────── */
.stats {
  background: var(--bg-ink-2);
  border-top: 1px solid rgba(212, 168, 83, 0.08);
  border-bottom: 1px solid rgba(212, 168, 83, 0.08);
  padding: 90px 0;
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 168, 83, 0.05) 0%, transparent 60%);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.stat {
  text-align: center;
  padding: 30px 16px;
  border-radius: var(--radius-md);
  transition: transform 0.5s var(--ease-out);
}

.stat:hover {
  transform: translateY(-6px);
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.stat__label {
  display: block;
  font-size: 13.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 8px;
}

.stat__stars {
  color: var(--gold);
  opacity: 0.5;
  font-size: 13px;
  letter-spacing: 3px;
}

/* ─────────── Depoimentos ─────────── */
.depoimentos {
  background: var(--bg-ink);
  position: relative;
}

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 70px;
}

.depoimento {
  position: relative;
  padding: 48px 36px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--bg-ink-3), var(--bg-ink));
  border: 1px solid rgba(212, 168, 83, 0.1);
  transition: all 0.5s var(--ease-out);
  will-change: transform;
}

.depoimento:hover {
  border-color: rgba(212, 168, 83, 0.35);
  box-shadow: var(--shadow-gold);
  transform: translateY(-8px);
}

.depoimento__quote-mark {
  position: absolute;
  top: 16px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: rgba(212, 168, 83, 0.12);
}

.depoimento__stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 15px;
  margin-bottom: 20px;
}

.depoimento blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 32px;
}

.depoimento__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 239, 230, 0.08);
}

.author__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--avatar-bg, var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bg-ink);
  flex-shrink: 0;
}

.depoimento__author div:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.depoimento__author strong {
  font-size: 14px;
  font-weight: 700;
}

.depoimento__author span {
  font-size: 12px;
  color: var(--text-muted);
}

.depoimentos__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(212, 168, 83, 0.08), rgba(212, 168, 83, 0.02));
  border: 1px solid rgba(212, 168, 83, 0.16);
}

.google-stamp {
  display: flex;
  align-items: center;
  gap: 14px;
}

.google-stamp__stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 3px;
}

.google-stamp p {
  font-size: 15px;
  color: var(--text-muted);
}

.google-stamp strong {
  color: var(--gold-light);
  font-size: 19px;
  font-family: var(--font-display);
}

/* ─────────── Diferenciais ─────────── */
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.diferencial {
  padding: 42px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--bg-ink-3), var(--bg-ink));
  border: 1px solid rgba(212, 168, 83, 0.08);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.diferencial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-out);
  transform-origin: left;
}

.diferencial:hover::before {
  transform: scaleX(1);
}

.diferencial:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: var(--shadow-gold);
}

.diferencial__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 26px;
  transition: all 0.5s var(--ease-spring);
}

.diferencial:hover .diferencial__icon {
  background: var(--gold-grad);
  color: var(--bg-ink);
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 8px 24px rgba(212, 168, 83, 0.35);
}

.diferencial h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.diferencial p {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ─────────── Estrutura ─────────── */
.estrutura__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.estrutura__visual {
  position: relative;
  will-change: transform;
  transform-style: preserve-3d;
}

.estrutura__art {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-deep);
}

.estrutura__visual::before {
  content: '';
  position: absolute;
  inset: -20px -20px -20px -20px;
  border: 1px dashed rgba(212, 168, 83, 0.18);
  border-radius: calc(var(--radius-xl) + 12px);
  pointer-events: none;
}

.estrutura__content .section-title {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
}

.estrutura__content > p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

.estrutura__list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.estrutura__list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.list-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.4s var(--ease-out);
}

.estrutura__list li:hover .list-icon {
  background: var(--gold-grad);
  color: var(--bg-ink);
  transform: scale(1.08);
}

.estrutura__list strong {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.estrutura__list p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─────────── Galeria ─────────── */
.galeria__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(320px, auto);
  gap: 32px;
}

.galeria__item--wide {
  grid-column: span 1;
}

.galeria__item:first-child,
.galeria__item:last-child {
  grid-column: span 2;
}

.galeria__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 320px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  will-change: transform;
}

.galeria__frame svg,
.galeria__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.galeria__item:hover .galeria__frame svg,
.galeria__item:hover .galeria__frame img {
  transform: scale(1.06);
}

.galeria__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 19, 15, 0.8) 0%, transparent 50%);
  opacity: 0.85;
  transition: opacity 0.5s;
}

.galeria__item:hover .galeria__frame::after {
  opacity: 0.6;
}

.galeria__frame figcaption {
  position: absolute;
  bottom: 24px;
  left: 28px;
  right: 28px;
  z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-light);
  transform: translateY(8px);
  opacity: 0.9;
  transition: all 0.5s var(--ease-out);
}

.galeria__item:hover .galeria__frame figcaption {
  transform: translateY(0);
  opacity: 1;
}

/* ─────────── Localização ─────────── */
.localizacao__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: stretch;
}

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

.local-info__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--bg-ink-3), var(--bg-ink));
  border: 1px solid rgba(212, 168, 83, 0.08);
  transition: all 0.4s var(--ease-out);
}

.local-info__item:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateX(6px);
}

.local-info__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.local-info__item strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.local-info__item p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-light);
}

.local-info__item a:hover {
  color: var(--gold);
}

.localizacao__cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.localizacao__map {
  position: relative;
  min-height: 480px;
  will-change: transform;
  transform-style: preserve-3d;
}

.map-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 168, 83, 0.18);
  box-shadow: var(--shadow-deep);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.2) contrast(1.05);
  transition: filter 0.5s;
}

.map-frame:hover iframe {
  filter: grayscale(0) contrast(1);
}

.map-pin {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.map-pin__heart {
  width: 64px;
  height: 64px;
  border-radius: 50% 50% 50% 0;
  background: var(--gold-grad);
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--bg-ink);
  box-shadow: var(--shadow-gold);
  animation: pinBounce 2.4s ease-in-out infinite;
}

.map-pin__heart::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50% 50% 50% 0;
  border: 2px solid rgba(212, 168, 83, 0.4);
  animation: pinRing 2.4s ease-out infinite;
}

@keyframes pinBounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-10px); }
}

@keyframes pinRing {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ─────────── CTA Final ─────────── */
.cta-final {
  position: relative;
  padding: 160px 0;
  background: var(--bg-ink-2);
  overflow: hidden;
  text-align: center;
}

.cta-final__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-final .section-label {
  align-self: center;
}

.cta-final__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 65%);
  z-index: -1;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
}

.cta-final__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}

.cta-final__title em {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-final__text {
  font-size: 1.125rem;
  color: var(--text-body);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 44px;
}

.cta-final__actions {
  margin-bottom: 36px;
}

.cta-final__rating {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-final__rating p {
  font-size: 14px;
  color: var(--text-muted);
}

.cta-final__rating strong {
  color: var(--gold-light);
}

/* ─────────── Footer ─────────── */
.footer {
  background: var(--bg-ink);
  border-top: 1px solid rgba(212, 168, 83, 0.1);
  padding: 90px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 70px;
}

.footer__brand p {
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer__nav,
.footer__contact,
.footer__rating {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav > strong,
.footer__contact > strong,
.footer__rating > strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 700;
}

.footer__nav a {
  font-size: 14px;
  color: var(--text-body);
  transition: color 0.3s;
  width: fit-content;
}

.footer__nav a:hover {
  color: var(--gold-light);
}

.footer__contact p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

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

.google-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.google-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold);
}

.google-score {
  font-size: 13.5px;
  color: var(--text-muted);
}

.google-score strong {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.footer__rating .btn {
  max-width: 200px;
  margin-top: 8px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 36px;
  border-top: 1px solid rgba(245, 239, 230, 0.06);
}

.footer__bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__made span {
  color: var(--terra);
}

/* ─────────── WhatsApp Float ─────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  color: white;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.4s var(--ease-spring);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2.2s ease-out infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ─────────── Back to Top ─────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bg-ink-3);
  border: 1px solid rgba(212, 168, 83, 0.25);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-out);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-grad);
  color: var(--bg-ink);
  transform: translateY(-4px);
}

/* ─────────── Reveal Animations ─────────── */
.reveal-up,
.reveal-scale,
.reveal-card {
  opacity: 0;
  will-change: transform, opacity;
}

.reveal-up.visible {
  animation: revealUp 0.9s var(--ease-out) forwards;
}

.reveal-scale.visible {
  animation: revealScale 1.1s var(--ease-out) forwards;
}

.reveal-card.visible {
  animation: revealCard 0.9s var(--ease-out) forwards;
}

@keyframes revealUp {
  0% {
    opacity: 0;
    transform: translateY(48px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealScale {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes revealCard {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Stagger delays for grids */
.depoimentos__grid .reveal-card:nth-child(1) { animation-delay: 0s; }
.depoimentos__grid .reveal-card:nth-child(2) { animation-delay: 0.12s; }
.depoimentos__grid .reveal-card:nth-child(3) { animation-delay: 0.24s; }

.diferenciais__grid .reveal-card:nth-child(1) { animation-delay: 0s; }
.diferenciais__grid .reveal-card:nth-child(2) { animation-delay: 0.08s; }
.diferenciais__grid .reveal-card:nth-child(3) { animation-delay: 0.16s; }
.diferenciais__grid .reveal-card:nth-child(4) { animation-delay: 0.24s; }
.diferenciais__grid .reveal-card:nth-child(5) { animation-delay: 0.32s; }
.diferenciais__grid .reveal-card:nth-child(6) { animation-delay: 0.4s; }

.galeria__grid .reveal-card:nth-child(1) { animation-delay: 0s; }
.galeria__grid .reveal-card:nth-child(2) { animation-delay: 0.1s; }
.galeria__grid .reveal-card:nth-child(3) { animation-delay: 0.2s; }
.galeria__grid .reveal-card:nth-child(4) { animation-delay: 0.3s; }

/* Hero initial load stagger */
.hero__copy .reveal-up:nth-child(1) { animation-delay: 0.15s; }
.hero__copy .reveal-up:nth-child(2) { animation-delay: 0.25s; }
.hero__copy .reveal-up:nth-child(3) { animation-delay: 0.35s; }
.hero__copy .reveal-up:nth-child(4) { animation-delay: 0.45s; }
.hero__copy .reveal-up:nth-child(5) { animation-delay: 0.55s; }

.hero__visual.reveal-scale { animation-delay: 0.35s; }

/* ─────────── Responsive ─────────── */

/* Desktop large */
@media (max-width: 1200px) {
  .hero__inner {
    gap: 40px;
  }

  .container {
    padding: 0 32px;
  }
}

/* Tablet landscape */
@media (max-width: 1024px) {
  .section {
    padding: 110px 0;
  }

  .navbar__nav {
    display: none;
  }

  .navbar__burger {
    display: flex;
  }

  .hero {
    padding-top: 140px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero__visual {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .hero__float-card--1 {
    left: -2%;
  }

  .hero__float-card--2 {
    right: -2%;
  }

  .manifesto__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .manifesto__label .section-label {
    position: static;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .depoimentos__grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }

  .diferenciais__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .estrutura__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .estrutura__visual {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .galeria__grid {
    grid-auto-rows: minmax(280px, auto);
  }

  .localizacao__grid {
    grid-template-columns: 1fr;
  }

  .localizacao__map {
    min-height: 420px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .section {
    padding: 90px 0;
  }

  .container {
    padding: 0 24px;
  }

  .hero__title {
    font-size: clamp(2.6rem, 9vw, 3.6rem);
  }

  .section-title {
    font-size: clamp(2.1rem, 7vw, 3rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__meta {
    gap: 16px;
  }

  .btn--xl {
    padding: 19px 40px;
    font-size: 15px;
    width: 100%;
  }

  .cta-final {
    padding: 110px 0;
  }

  .cta-final__title {
    font-size: clamp(2.3rem, 8vw, 3.2rem);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .depoimentos__cta {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .google-stamp {
    flex-direction: column;
    gap: 6px;
  }

  .diferenciais__grid {
    grid-template-columns: 1fr;
  }

  .galeria__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(260px, auto);
  }

  .galeria__item--wide,
  .galeria__item:first-child,
  .galeria__item:last-child {
    grid-column: span 1;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
  }

  .hero__float-card {
    padding: 10px 14px;
  }

  .hero__float-card strong {
    font-size: 12px;
  }

  .hero__float-card span {
    font-size: 10.5px;
  }

  .float-card__icon {
    width: 34px;
    height: 34px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .brand-text em {
    font-size: 0.6rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
  }

  .navbar__cta {
    display: none;
  }

  .hero {
    padding-top: 120px;
  }

  .hero__badge {
    flex-wrap: wrap;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero__float-card--1 {
    left: 0;
  }

  .hero__float-card--2 {
    right: 0;
  }

  .manifesto__body {
    font-size: 1.15rem;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat__value {
    font-size: 2.2rem;
  }

  .stat__label {
    font-size: 11.5px;
  }

  .depoimento {
    padding: 36px 24px 28px;
  }

  .estrutura__list li {
    gap: 14px;
  }

  .list-icon {
    width: 40px;
    height: 40px;
  }

  .local-info__item {
    padding: 18px;
  }

  .localizacao__cta .btn {
    width: 100%;
  }

  .cta-final__rating {
    flex-direction: column;
    gap: 6px;
  }
}

/* ─────────── Reduced Motion ─────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-up,
  .reveal-scale,
  .reveal-card {
    opacity: 1;
    transform: none;
  }
}