/* ==========================================================================
   Sonho Espaço de Festas — Landing Page
   Design system: preto / dourado / branco / cinza-claro — premium, mobile-first
   ========================================================================== */

:root {
  --black: #0a0a0b;
  --black-soft: #17161a;
  --black-elev: #201f24;

  --gold-light: #ecd9a0;
  --gold: #c9a227;
  --gold-dark: #8a6a1f;
  --gold-gradient: linear-gradient(135deg, #f1e0ab 0%, #c9a227 48%, #8a6a1f 100%);

  --white: #ffffff;
  --gray-50: #f7f6f3;
  --gray-100: #efece5;
  --gray-300: #cfcabf;
  --gray-500: #8d8878;
  --gray-700: #55514a;

  --text-on-light: #1a1815;
  --text-muted: #5c584d;
  --text-on-dark: #f3f1ea;
  --text-on-dark-muted: #b9b6ab;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 10px 30px rgba(201, 162, 39, 0.25);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-on-light);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; margin: 0; line-height: 1.15; }
p { margin: 0; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
@media (min-width: 900px) { .container { padding: 0 40px; } }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--black); padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
section[data-theme="dark"] .eyebrow { color: var(--gold-light); }

.section-title {
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
  color: var(--text-on-light);
  max-width: 720px;
}
section[data-theme="dark"] .section-title { color: var(--text-on-dark); }

.section-lede {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--text-muted);
  max-width: 620px;
  margin-top: 16px;
  line-height: 1.7;
}
section[data-theme="dark"] .section-lede { color: var(--text-on-dark-muted); }

.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-title,
.section-head.center .section-lede { margin-left: auto; margin-right: auto; }

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color .35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn-primary {
  background: var(--gold-gradient);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(201,162,39,0.35); }
.btn-ghost-dark {
  background: transparent; color: var(--text-on-dark); border-color: rgba(243,241,234,0.35);
}
.btn-ghost-dark:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }
.btn-ghost-light {
  background: transparent; color: var(--text-on-light); border-color: rgba(26,24,21,0.2);
}
.btn-ghost-light:hover { border-color: var(--gold-dark); color: var(--gold-dark); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: none; }
[data-reveal-group] > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 22px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow .4s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.is-scrolled { padding: 12px 0; background: rgba(10,10,11,0.86); backdrop-filter: blur(14px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 64px; width: auto; transition: height .4s var(--ease); }
.site-header.is-scrolled .brand img { height: 50px; }
@media (min-width: 980px) {
  .brand img { height: 74px; }
  .site-header.is-scrolled .brand img { height: 56px; }
}

.nav-links { display: none; }
@media (min-width: 980px) {
  .nav-links { display: flex; gap: 34px; }
  .nav-links a {
    font-size: 0.88rem; font-weight: 500; color: var(--text-on-dark-muted);
    position: relative; padding-bottom: 4px; transition: color .3s;
  }
  .nav-links a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--gold);
    transition: right .35s var(--ease);
  }
  .nav-links a:hover { color: var(--text-on-dark); }
  .nav-links a:hover::after { right: 0; }
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn-primary { padding: 12px 22px; font-size: 0.85rem; }
.nav-toggle {
  display: inline-flex; background: none; border: 1px solid rgba(243,241,234,0.3); border-radius: 10px;
  width: 42px; height: 42px; align-items: center; justify-content: center; color: var(--text-on-dark);
}
@media (min-width: 980px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-nav {
  position: fixed; inset: 0; z-index: 99; background: var(--black);
  display: flex; flex-direction: column; justify-content: center; padding: 40px;
  transform: translateY(-100%); transition: transform .5s var(--ease);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 22px; }
.mobile-nav a { font-family: var(--font-display); font-size: 1.7rem; color: var(--text-on-dark); }
.mobile-nav .btn { margin-top: 30px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  background: var(--black); color: var(--text-on-dark); overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video, .hero__image {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
}
.hero__image { background-size: cover; background-position: center 25%; opacity: 1; transition: opacity .6s; }
.hero__video { opacity: 0; transition: opacity 1s var(--ease); }
.hero__video.is-active { opacity: 1; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.35) 30%, rgba(10,10,11,0.75) 78%, rgba(10,10,11,0.94) 100%);
}
.hero__content { position: relative; z-index: 2; width: 100%; padding: 160px 0 90px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-light); margin-bottom: 22px;
}
.hero__eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold-light); }
.hero h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  max-width: 15ch;
  color: var(--white);
}
.hero h1 .word { display: inline-block; overflow: hidden; }
.hero h1 .word span { display: inline-block; }
.hero__tagline {
  margin-top: 26px; font-size: clamp(1.02rem, 1.6vw, 1.25rem); color: var(--text-on-dark-muted);
  max-width: 56ch; line-height: 1.7;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 56px; }
.hero__meta div { display: flex; flex-direction: column; gap: 4px; }
.hero__meta strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-light); }
.hero__meta span { font-size: 0.78rem; color: var(--text-on-dark-muted); letter-spacing: 0.03em; }

.scroll-cue {
  position: absolute; right: 28px; bottom: 28px; z-index: 2;
  display: none; align-items: center; gap: 10px; color: var(--text-on-dark-muted); font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase; writing-mode: vertical-rl;
}
@media (min-width: 700px) { .scroll-cue { display: flex; } }
.scroll-cue .line { width: 1px; height: 46px; background: linear-gradient(var(--gold-light), transparent); animation: scrollcue 2.4s ease-in-out infinite; }
@keyframes scrollcue { 0%,100% { transform: scaleY(1); opacity: .6 } 50% { transform: scaleY(.5); opacity: 1 } }

/* ==========================================================================
   Prova Social
   ========================================================================== */
.social-proof { background: var(--gray-50); padding: 80px 0; }
.proof-grid { display: grid; gap: 40px; grid-template-columns: 1fr; max-width: 760px; }

.stat-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-top: 8px; }
@media (min-width: 560px) { .stat-row { grid-template-columns: repeat(3,1fr); } }
.stat-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-md);
  padding: 22px 18px; text-align: left;
}
.stat-card strong { display: block; font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.1rem); color: var(--gold-dark); }
.stat-card span { font-size: 0.82rem; color: var(--text-muted); }

.rating-card {
  background: var(--black); color: var(--text-on-dark); border-radius: var(--radius-lg);
  padding: 34px; position: relative; overflow: hidden;
}
.rating-card::after {
  content: ""; position: absolute; inset: 0; background: var(--gold-gradient); opacity: .06;
}
.rating-stars { display: flex; gap: 4px; margin-bottom: 14px; }
.rating-stars svg { width: 20px; height: 20px; fill: var(--gold-light); }
.rating-placeholder {
  border: 1px dashed rgba(236,217,160,0.45); border-radius: var(--radius-sm);
  padding: 14px 16px; font-size: 0.85rem; color: var(--text-on-dark-muted); margin-top: 6px;
}
.review-list { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.review-list li { display: flex; gap: 12px; font-size: 0.92rem; color: var(--text-on-dark-muted); line-height: 1.6; }
.review-list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; fill: var(--gold-light); }
.review-source { margin-top: 22px; font-size: 0.8rem; color: var(--text-on-dark-muted); }
.review-source a { color: var(--gold-light); border-bottom: 1px solid rgba(236,217,160,0.4); }

.badge-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600;
  color: var(--text-on-light); background: var(--white); border: 1px solid var(--gray-100);
  padding: 9px 16px; border-radius: 100px;
}
.badge svg { width: 15px; height: 15px; fill: var(--gold-dark); }

/* ==========================================================================
   Sobre
   ========================================================================== */
.about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; gap: 48px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 960px) { .about-grid { grid-template-columns: 0.95fr 1.05fr; gap: 80px; } }
.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.about-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about-media .tag {
  position: absolute; left: 20px; bottom: 20px; background: rgba(10,10,11,0.78); backdrop-filter: blur(6px);
  color: var(--gold-light); padding: 12px 18px; border-radius: var(--radius-sm); font-size: 0.82rem; font-family: var(--font-display);
}
.about-copy p { color: var(--text-muted); line-height: 1.85; font-size: 1.02rem; margin-top: 20px; }
.about-copy p:first-of-type { margin-top: 24px; }
.mission-box {
  margin-top: 32px; padding: 26px 28px; border-radius: var(--radius-md);
  background: var(--gray-50); border-left: 3px solid var(--gold);
}
.mission-box p { margin: 0; font-family: var(--font-display); font-size: 1.15rem; color: var(--text-on-light); line-height: 1.55; }

/* ==========================================================================
   Conheça o espaço
   ========================================================================== */
.spaces { padding: 100px 0; background: var(--gray-50); }
.spaces-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 640px) { .spaces-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1040px) { .spaces-grid { grid-template-columns: repeat(3,1fr); } }

.space-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--gray-100); transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex; flex-direction: column;
}
.space-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.space-card__media { aspect-ratio: 4/3; overflow: hidden; }
.space-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.space-card:hover .space-card__media img { transform: scale(1.06); }
.space-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.space-card__body h3 { font-size: 1.2rem; color: var(--text-on-light); }
.space-card__body p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }
.space-card__benefit {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--gray-100);
  display: flex; gap: 8px; align-items: flex-start; font-size: 0.86rem; color: var(--gold-dark); font-weight: 600;
}
.space-card__benefit svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; fill: var(--gold-dark); }

/* ==========================================================================
   Galeria
   ========================================================================== */
.gallery { padding: 100px 0; background: var(--black); color: var(--text-on-dark); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; } }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; aspect-ratio: 1/1; }
@media (min-width: 720px) { .gallery-item { aspect-ratio: auto; } }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent 45%);
  opacity: 0; transition: opacity .4s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item span {
  position: absolute; left: 14px; bottom: 12px; font-size: 0.8rem; opacity: 0; transform: translateY(8px);
  transition: all .4s; color: var(--text-on-dark);
}
.gallery-item:hover span { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(6,6,7,0.96);
  display: flex; align-items: center; justify-content: center; padding: 30px;
  opacity: 0; pointer-events: none; transition: opacity .35s;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(90vw, 1100px); max-height: 82vh; border-radius: 10px; object-fit: contain; }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav.prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-nav svg, .lightbox-close svg { width: 20px; height: 20px; }

/* ==========================================================================
   Eventos realizados
   ========================================================================== */
.events { padding: 100px 0; background: var(--white); }
.events-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 600px) { .events-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px) { .events-grid { grid-template-columns: repeat(4,1fr); } }
.event-card {
  padding: 30px 24px; border-radius: var(--radius-md); background: var(--gray-50);
  border: 1px solid var(--gray-100); transition: all .4s var(--ease);
}
.event-card:hover { background: var(--black); transform: translateY(-4px); }
.event-card:hover h3, .event-card:hover p { color: var(--text-on-dark); }
.event-card:hover h3 { color: var(--gold-light); }
.event-card__icon {
  width: 46px; height: 46px; border-radius: 50%; background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.event-card__icon svg { width: 22px; height: 22px; stroke: var(--black); }
.event-card h3 { font-size: 1.08rem; margin-bottom: 10px; transition: color .4s; }
.event-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; transition: color .4s; }

/* ==========================================================================
   Por que escolher
   ========================================================================== */
.why { padding: 100px 0; background: var(--gray-50); }
.why-list { display: flex; flex-direction: column; }
.why-item {
  display: grid; grid-template-columns: 60px 1fr; gap: 20px;
  padding: 32px 0; border-top: 1px solid var(--gray-300);
}
.why-item:last-child { border-bottom: 1px solid var(--gray-300); }
@media (min-width: 760px) { .why-item { grid-template-columns: 90px 1fr; gap: 36px; padding: 40px 0; } }
.why-item__num { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); }
.why-item h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--text-on-light); }
.why-item p { color: var(--text-muted); line-height: 1.75; max-width: 62ch; }

/* ==========================================================================
   Como funciona
   ========================================================================== */
.how { padding: 100px 0; background: var(--black); color: var(--text-on-dark); }
.how-steps { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 20px; }
@media (min-width: 900px) { .how-steps { grid-template-columns: repeat(5,1fr); gap: 24px; } }
.how-step { position: relative; padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.12); }
@media (min-width: 900px) { .how-step { border-top: none; padding: 0; } }
.how-step__num {
  font-family: var(--font-display); font-size: 2.4rem; color: transparent;
  -webkit-text-stroke: 1px var(--gold-light);
}
.how-step h3 { margin-top: 14px; font-size: 1.05rem; color: var(--white); }
.how-step p { margin-top: 8px; font-size: 0.88rem; color: var(--text-on-dark-muted); line-height: 1.6; }
.how-step__connector { display: none; }
@media (min-width: 900px) {
  .how-step:not(:last-child)::after {
    content: ""; position: absolute; top: 22px; left: calc(100% + 4px); width: calc(24px - 4px); height: 1px;
    background: linear-gradient(90deg, var(--gold-light), transparent);
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: 100px 0; background: var(--white); }
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--gray-300); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: none; text-align: left; padding: 26px 4px;
  font-family: var(--font-display); font-size: 1.08rem; color: var(--text-on-light);
}
.faq-q .plus { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--gold-dark); transition: transform .35s var(--ease);
}
.faq-q .plus::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq-item.is-open .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a p { padding: 0 4px 26px; color: var(--text-muted); line-height: 1.75; max-width: 68ch; }
.faq-a .fill-note { color: var(--gold-dark); font-style: italic; }

/* ==========================================================================
   CTA final
   ========================================================================== */
.cta-final {
  position: relative; padding: 130px 0; background: var(--black); color: var(--text-on-dark);
  overflow: hidden; text-align: center;
}
.cta-final::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 20%, rgba(201,162,39,0.18), transparent 70%);
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); max-width: 18ch; margin: 0 auto; color: var(--white); }
.cta-final p { margin: 22px auto 0; max-width: 58ch; color: var(--text-on-dark-muted); font-size: 1.05rem; line-height: 1.7; }
.cta-final .hero__ctas { justify-content: center; margin-top: 42px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--black-soft); color: var(--text-on-dark-muted); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 42px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; } }
.footer-brand img { height: 46px; }
.footer-brand p { margin-top: 18px; font-size: 0.9rem; line-height: 1.7; max-width: 34ch; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.footer-social a:hover { border-color: var(--gold-light); color: var(--gold-light); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; font-size: 0.9rem; }
.footer-col address { font-style: normal; line-height: 1.7; font-size: 0.9rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 60px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: 0.78rem;
}

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: flex; align-items: center; gap: 10px;
  background: #1fae5a; color: #fff; padding: 14px 16px; border-radius: 100px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
  transition: transform .35s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); }
.wa-float svg { width: 24px; height: 24px; flex-shrink: 0; }
.wa-float span { font-size: 0.85rem; font-weight: 600; max-width: 0; overflow: hidden; white-space: nowrap; transition: max-width .5s var(--ease); }
@media (min-width: 760px) { .wa-float:hover span, .wa-float.is-greeting span { max-width: 200px; } }
.wa-float .pulse {
  position: absolute; inset: 0; border-radius: 100px; border: 2px solid #1fae5a; animation: wapulse 2.6s ease-out infinite;
}
@keyframes wapulse { 0% { opacity: .6; transform: scale(1);} 100% { opacity: 0; transform: scale(1.35);} }

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