/* =========================================================
   Carianos Eventos — Design System
   Mobile-first, sofisticado, neutro moderno
   ========================================================= */

:root {
  /* Cores */
  --bg: #FAF9F7;
  --bg-2: #F2EFEA;
  --surface: #FFFFFF;
  --ink: #1B1A17;
  --ink-2: #3A3733;
  --muted: #8A847C;
  --line: #E7E2DA;
  --gold: #B89968;
  --gold-2: #9C7E51;
  --accent: #2A2925;

  /* Tipografia */
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Tamanhos */
  --container: 1200px;
  --radius: 4px;
  --radius-lg: 14px;

  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(27,26,23,.04), 0 2px 8px rgba(27,26,23,.04);
  --shadow-md: 0 6px 24px rgba(27,26,23,.08);
  --shadow-lg: 0 30px 60px -20px rgba(27,26,23,.18);

  /* Animações */
  --ease: cubic-bezier(.2,.8,.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section { padding: 7rem 0; }
}

.grid-2 {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
}

/* Tipografia */
.eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }

.lead {
  font-size: 1.075rem;
  color: var(--ink-2);
  margin: 0 0 1rem;
  max-width: 52ch;
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-head .section-title { margin-left: auto; margin-right: auto; }

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.75rem;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all .35s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-sm { padding: .65rem 1.25rem; font-size: .75rem; }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-block { width: 100%; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all .4s var(--ease);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(250,249,247,.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  padding: .65rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--ink);
}
.brand-mark {
  width: 38px; height: 38px;
  flex: 0 0 38px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  border-radius: 50%;
  letter-spacing: .02em;
  line-height: 1;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: .02em;
}
.brand-sub {
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .2rem;
}

/* Nav desktop */
.nav-desktop { display: none; }
@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
    gap: 2rem;
  }
  .nav-desktop a {
    font-size: .85rem;
    color: var(--ink-2);
    position: relative;
    padding: .25rem 0;
    transition: color .25s;
  }
  .nav-desktop a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transform-origin: right;
    transition: transform .35s var(--ease);
  }
  .nav-desktop a:hover { color: var(--ink); }
  .nav-desktop a:hover::after { transform: scaleX(1); transform-origin: left; }
}

.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

/* Nav mobile toggle */
.nav-toggle {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  gap: 4px;
  border-radius: 50%;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: all .35s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
@media (min-width: 900px) { .nav-toggle { display: none; } }

/* Nav mobile panel */
.nav-mobile {
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.nav-mobile.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--ink);
}
.nav-mobile a.btn { font-family: var(--font-sans); font-size: .875rem; margin-top: 1rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--bg);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(27,26,23,.10) 0%, rgba(27,26,23,.05) 40%, rgba(27,26,23,.35) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 7rem 1.25rem 5rem;
  max-width: 900px;
}

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

/* =========================================================
   LIQUID GLASS (iOS-style)
   ========================================================= */
.glass {
  position: relative;
  border-radius: 28px;
  background: rgba(20, 18, 15, 0.18);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 -1px 0 rgba(255, 255, 255, 0.05) inset,
    0 20px 40px -18px rgba(0, 0, 0, 0.35);
  isolation: isolate;
  overflow: hidden;
}
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 120% 60% at 50% 0%, rgba(255,255,255,0.14), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.22) 100%);
  pointer-events: none;
  z-index: -1;
}
.glass-shine {
  position: absolute;
  top: 1px; left: 18%; right: 18%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.45) 50%,
    transparent 100%
  );
  pointer-events: none;
  border-radius: 1px;
}

.glass-hero {
  padding: 2rem 1.75rem 2.25rem;
  max-width: 680px;
}
@media (min-width: 768px) {
  .glass-hero { padding: 2.75rem 3rem 3rem; }
}

.glass-stats {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  margin-top: 1.75rem;
  border-radius: 999px;
}
.glass-stats > div:not(.glass-divider) {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.glass-stats strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .02em;
}
.glass-stats span {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(250,249,247,.85);
  margin-top: .15rem;
}
.glass-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.35), transparent);
}

/* Botão "glass" (substitui ghost dentro do hero) */
.btn-glass {
  background: rgba(255,255,255,0.14);
  color: var(--bg);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 8px 22px -10px rgba(0,0,0,0.4);
  transition: all .35s var(--ease);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  border-color: rgba(255,255,255,0.95);
  transform: translateY(-1px);
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -.015em;
  margin: 0 0 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-sub {
  font-size: 1.125rem;
  max-width: 540px;
  color: rgba(250,249,247,.85);
  margin: 0 0 2.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}
.hero-cta .btn-ghost {
  border-color: rgba(250,249,247,.35);
  color: var(--bg);
}
.hero-cta .btn-ghost:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px; height: 40px;
  border: 1px solid rgba(250,249,247,.35);
  border-radius: 12px;
  display: grid; place-items: start center;
  padding-top: 6px;
}
.hero-scroll span {
  width: 2px; height: 8px;
  background: var(--gold);
  border-radius: 1px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* =========================================================
   SOBRE
   ========================================================= */
.sobre {
  background: var(--bg);
  text-align: center;
}
.sobre .container > div {
  max-width: 720px;
  margin: 0 auto;
}
.sobre .lead { margin-left: auto; margin-right: auto; }
.sobre-image {
  position: relative;
}
.floating-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--surface);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: .15rem;
  border: 1px solid var(--line);
}
.floating-card strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.floating-card span {
  font-size: .8rem;
  color: var(--muted);
}

/* =========================================================
   ESPAÇO / FEATURES
   ========================================================= */
.espaco {
  background: var(--bg-2);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}
.features-grid-3 {
  max-width: 1100px;
  margin: 0 auto;
}

.feature {
  background: var(--surface);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--bg-2);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.feature:hover .feature-icon {
  background: var(--gold);
  color: #fff;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 .5rem;
}
.feature p {
  margin: 0;
  font-size: .95rem;
  color: var(--ink-2);
}

/* =========================================================
   GALERIA
   ========================================================= */
.galeria { background: var(--bg); }

.gallery-grid-compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .gallery-grid-compact {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
.gallery-grid-compact .gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
}
.gallery-grid-compact .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery-grid-compact .gallery-item:hover img { transform: scale(1.04); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
  }
  .gallery-large { grid-column: span 2; grid-row: span 2; }
  .gallery-tall { grid-row: span 2; }
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  position: relative;
  aspect-ratio: 4/3;
}
@media (min-width: 960px) {
  .gallery-item { aspect-ratio: auto; height: 100%; }
}
.gallery-item .img-placeholder { height: 100%; }
.gallery-item .img-placeholder img,
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }

/* =========================================================
   EVENTOS
   ========================================================= */
.eventos { background: var(--bg-2); }

.eventos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .eventos-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

.evento-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.evento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.evento-card .img-placeholder {
  aspect-ratio: 16/10;
  border-radius: 0;
}
.evento-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-2);
}
.evento-card .img-placeholder img,
.evento-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.evento-card:hover img { transform: scale(1.04); }

.evento-content {
  padding: 1.5rem 1.75rem 1.75rem;
}
.evento-card-text {
  display: flex;
  align-items: center;
  min-height: 180px;
  background:
    linear-gradient(135deg, var(--surface) 0%, var(--bg-2) 100%);
}
.evento-card-text .evento-content {
  padding: 2rem 1.75rem;
  width: 100%;
}
.evento-card-text::before {
  content: '';
  display: block;
  width: 4px;
  align-self: stretch;
  background: var(--gold);
  margin: 1.75rem 0;
  border-radius: 2px;
}
.evento-content h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  margin: 0 0 .5rem;
}
.evento-content p {
  margin: 0;
  color: var(--ink-2);
  font-size: .95rem;
}

/* =========================================================
   DEPOIMENTOS
   ========================================================= */
.depoimentos { background: var(--bg); }

.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .depoimentos-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

.depoimento {
  background: var(--bg-2);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 0;
  position: relative;
}
.depoimento::before {
  content: '\201C';
  position: absolute;
  top: .25rem; left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  opacity: .35;
}
.depoimento blockquote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.5;
  margin: 0 0 1.5rem;
  color: var(--ink);
  font-style: italic;
}
.depoimento figcaption {
  font-size: .9rem;
}
.depoimento figcaption strong { color: var(--ink); }

/* =========================================================
   CONTATO
   ========================================================= */
.contato {
  background: var(--bg-2);
}
.contato-grid { align-items: start; }

.contato-info {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contato-info li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .95rem;
  color: var(--ink-2);
}
.contato-info svg {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.contato-info a:hover { color: var(--gold); }

.form-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
@media (min-width: 768px) {
  .form-card { padding: 2.5rem; }
}
.field { display: flex; flex-direction: column; gap: .35rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}
.field label {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  padding: .85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .25s, background .25s;
  width: 100%;
  font-family: inherit;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface);
}
.field textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}
.form-note a { color: var(--gold); font-weight: 500; }
.form-note a:hover { text-decoration: underline; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--bg);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 3.5rem 1.25rem;
  text-align: center;
}
@media (min-width: 800px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.footer-brand .brand-mark {
  background: var(--bg);
  color: var(--ink);
}
.footer-brand strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  display: block;
}
.footer-brand span {
  display: block;
  font-size: .8rem;
  color: rgba(250,249,247,.6);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: .85rem;
  color: rgba(250,249,247,.7);
  transition: color .25s;
}
.footer-links a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(250,249,247,.18);
  border-radius: 50%;
  color: rgba(250,249,247,.85);
  transition: all .3s var(--ease);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(250,249,247,.1);
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom small {
  color: rgba(250,249,247,.5);
  font-size: .8rem;
  letter-spacing: .05em;
}

/* =========================================================
   PLACEHOLDER (substituível por imagens reais)
   ========================================================= */
.img-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
  background:
    linear-gradient(135deg, var(--bg-2) 0%, var(--line) 100%);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--muted);
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 22px,
      rgba(184,153,104,.08) 22px,
      rgba(184,153,104,.08) 23px
    );
}
.img-placeholder span {
  position: relative;
  background: rgba(255,255,255,.65);
  padding: .5rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.img-placeholder-tall { aspect-ratio: 4/5; min-height: 380px; }

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  z-index: 90;
  transition: transform .3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-img { animation: none; }
  .hero-scroll span { animation: none; }
}

/* Selection */
::selection { background: var(--gold); color: #fff; }
