@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #052e16;
  --ink-2: #0a3d24;
  --ivory: #f0fdf4;
  --paper: #e7faec;
  --champagne: #bbf7d0;
  --gold: #16a34a;
  --gold-deep: #047857;
  --amber: #22c55e;
  --teal: #0ea5e9;
  --green-wa: #25d366;
  --text: #14532d;
  --muted: #4b6055;
  --white: #ffffff;
  --line: rgba(5, 46, 22, 0.1);
  --shadow: 0 28px 70px rgba(5, 46, 22, 0.22);
  --shadow-soft: 0 12px 30px rgba(5, 46, 22, 0.08);
  --radius: 10px;
  --radius-lg: 18px;
  --max: 1200px;
}

/* Parceiros grid */
.partners-section { background: var(--ivory); padding: 80px max(24px, calc((100vw - var(--max)) / 2)); border-top: 1px solid var(--line); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  align-items: center;
  margin-top: 32px;
}
.partner-logo {
  display: grid;
  place-items: center;
  height: 90px;
  padding: 14px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(5, 46, 22, 0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.partner-logo:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(5, 46, 22, 0.12); }
.partner-logo img { max-width: 100%; max-height: 60px; object-fit: contain; filter: saturate(1); }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--ivory);
  overflow-x: hidden;
  line-height: 1.55;
}
body.menu-open, body.lightbox-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link, .sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 16px; left: 16px; z-index: 9999;
  width: auto; height: auto; padding: 12px 16px;
  background: var(--white); color: var(--ink); clip: auto;
  border: 1px solid var(--line);
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 16px; left: 50%;
  z-index: 1000;
  width: min(calc(100% - 32px), 1240px);
  min-height: 66px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  color: var(--white);
  background: rgba(10, 10, 15, 0.65);
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transition: background .2s ease, transform .2s ease;
}
.site-header.is-scrolled {
  background: rgba(10, 10, 15, 0.92);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  text-decoration: none;
}
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1rem; line-height: 1.1; font-weight: 800; color: var(--white); }
.brand small {
  margin-top: 2px; color: rgba(253, 230, 138, 0.85);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color .18s ease, background .18s ease;
}
.site-nav a:hover, .site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}
.site-nav .nav-cta {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--amber));
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.4);
  font-weight: 800;
}
.site-nav .nav-cta:hover { background: linear-gradient(135deg, var(--amber), var(--gold-deep)); color: var(--white); }

.menu-button {
  display: none;
  width: 46px; height: 46px;
  flex: 0 0 46px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  cursor: pointer;
}
.menu-line {
  display: block; width: 20px; height: 2px;
  margin: 3px auto;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.menu-button.is-open .menu-line:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-button.is-open .menu-line:nth-child(2) { opacity: 0; }
.menu-button.is-open .menu-line:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: 40px;
  padding: 128px max(24px, calc((100vw - var(--max)) / 2)) 80px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media {
  background-image: url("../images/gallery-01.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: saturate(0.85) contrast(1.15) brightness(0.6);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10,10,15,0.95) 0%, rgba(10,10,15,0.75) 46%, rgba(10,10,15,0.3) 100%),
    linear-gradient(180deg, rgba(10,10,15,0.7) 0%, rgba(10,10,15,0.18) 50%, rgba(10,10,15,0.9) 100%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 3px);
}
.hero-content, .hero-stage { position: relative; z-index: 1; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1, .section h2, .contact-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 5vw + 1rem, 5.2rem);
  line-height: 0.96;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--gold); }
.hero-kicker {
  margin: 22px 0 0;
  color: var(--champagne);
  font-size: 1.3rem;
  font-weight: 700;
}
.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}
.hero-meta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  padding: 8px 14px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--champagne);
}
.hero-meta::before { content: "📍"; font-size: 1rem; }

.hero-actions, .contact-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 30px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); outline: none; }
.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--amber));
  box-shadow: 0 16px 34px rgba(245, 158, 11, 0.35);
}
.button-primary:hover { box-shadow: 0 20px 40px rgba(245, 158, 11, 0.5); }
.button-wa {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-wa), #128c7e);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.35);
}
.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
}
.button-ghost.dark {
  color: var(--ink);
  border-color: rgba(10,10,15,0.18);
  background: rgba(10,10,15,0.04);
}

.hero-stage {
  display: grid;
  gap: 18px;
  perspective: 1000px;
  justify-items: end;
}
.cinema-frame {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  background: var(--ink-2);
}
.cinema-frame img { width: 100%; height: 100%; object-fit: cover; }
.cinema-frame::before {
  content: "";
  position: absolute; inset: 12px;
  border: 1px solid rgba(253, 230, 138, 0.34);
  border-radius: calc(var(--radius-lg) - 2px);
  pointer-events: none;
}
.frame-caption {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  padding: 12px 16px;
  background: rgba(10,10,15,0.7);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}
.frame-caption span { display: block; color: rgba(255,255,255,0.72); font-size: 0.78rem; }
.frame-caption strong { display: block; margin-top: 4px; color: var(--white); font-size: 1rem; }
.hero-stat {
  width: min(100%, 330px);
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.92), rgba(194, 65, 12, 0.85));
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 42px rgba(0,0,0,0.25);
  color: var(--white);
}
.hero-stat strong { display: block; margin-bottom: 6px; font-size: 1.55rem; }
.hero-stat span { color: rgba(255,255,255,0.9); font-size: 0.88rem; line-height: 1.4; }

/* ---------- INTRO BAND ---------- */
.intro-band {
  display: grid; gap: 14px; place-items: center;
  padding: 48px 24px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--champagne), #fef3c7 58%, #d1fae5);
  text-align: center;
}
.quote-mark {
  max-width: 900px; margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem; line-height: 1.4;
}
.intro-band span { color: rgba(10, 10, 15, 0.65); font-weight: 700; }

/* ---------- SECTIONS ---------- */
.section { padding: 92px max(24px, calc((100vw - var(--max)) / 2)); }
.section-light {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.7), rgba(250,246,238,0.94)),
    var(--paper);
}
.section-dark { color: var(--white); background: var(--ink); }
.section-dark h2, .section-dark p { color: var(--white); }

.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section h2, .contact-section h2 {
  color: var(--ink);
  font-size: clamp(2rem, 3.3vw + 1rem, 3.15rem);
  line-height: 1.05;
  text-wrap: balance;
}
.section-heading p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

/* ---------- SERVICES (essence-grid pattern) ---------- */
.essence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  perspective: 1000px;
}
.essence-card, .value-card, .event-card {
  position: relative;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.85);
  box-shadow: 0 20px 48px rgba(10,10,15,0.06);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .25s ease, box-shadow .25s ease;
}
.essence-card::before, .event-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(245,158,11,0.18), transparent 42%, rgba(20,184,166,0.12));
  opacity: 0;
  transition: opacity .25s ease;
}
.essence-card:hover, .event-card:hover { box-shadow: 0 30px 60px rgba(10,10,15,0.12); }
.essence-card:hover::before, .event-card:hover::before { opacity: 1; }
.card-icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  margin-bottom: 22px;
  font-size: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.35);
}
.essence-card h3, .event-card h3, .value-card h3 {
  position: relative;
  margin: 0 0 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.essence-card p, .event-card p, .value-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- BEFORE / AFTER SLIDER ---------- */
.juxtapose-section { padding: 0; }
.juxtapose-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 40px;
  align-items: center;
  padding: 92px max(24px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(110deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--white);
}
.juxtapose-wrapper .eyebrow { color: var(--gold); }
.juxtapose-wrapper h2 { color: var(--white); }
.juxtapose-wrapper p { color: rgba(255,255,255,0.7); margin-top: 14px; line-height: 1.7; }
.juxtapose {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: var(--ink-2);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,158,11,0.18);
  touch-action: none;
}
.juxtapose img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.juxtapose .after-wrap {
  position: absolute; inset: 0;
  width: 50%;
  overflow: hidden;
  pointer-events: none;
}
.juxtapose .after-wrap img {
  width: 200%; max-width: none;
  left: 0;
}
.juxtapose .handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--white);
  transform: translateX(-50%);
  box-shadow: 0 0 14px rgba(0,0,0,0.5);
  pointer-events: none;
}
.juxtapose .handle::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 52px; height: 52px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.juxtapose .handle::after {
  content: "‹›";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -2px;
}
.juxtapose .label {
  position: absolute;
  bottom: 14px;
  padding: 6px 14px;
  background: rgba(10,10,15,0.78);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
}
.juxtapose .label-before { left: 14px; }
.juxtapose .label-after { right: 14px; }

/* ---------- GOOGLE REVIEWS BAND ---------- */
.reviews-band {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 60px max(24px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(135deg, var(--paper), var(--ivory));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reviews-band img { max-width: 380px; margin: 0 auto; }
.reviews-band .quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.review-quote {
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(10,10,15,0.05);
  border-left: 4px solid var(--gold);
}
.review-quote .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.review-quote p {
  margin: 8px 0;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.55;
}
.review-quote .author {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

/* ---------- FOUNDER / ABOUT SECTION ---------- */
.founder-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
  padding: 92px max(24px, calc((100vw - var(--max)) / 2));
}
.founder-image { position: relative; max-width: 480px; }
.founder-image::before {
  content: "";
  position: absolute; inset: -16px 16px 16px -16px;
  z-index: 0;
  border: 1px solid rgba(245,158,11,0.45);
  border-radius: var(--radius-lg);
}
.founder-image img {
  position: relative; z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.founder-copy p { color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.founder-copy .roles {
  margin: 16px 0 24px;
  color: var(--gold-deep);
  font-weight: 800;
}

/* ---------- VALUES (4 cards) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.value-card { background: var(--white); }

/* ---------- FAQ ---------- */
.faq-section { padding: 92px max(24px, calc((100vw - var(--max)) / 2)); background: var(--paper); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq-item[open] { box-shadow: 0 12px 30px rgba(10,10,15,0.08); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.02rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer {
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- GALLERY ---------- */
.gallery-section { background: var(--ink); padding: 92px max(24px, calc((100vw - var(--max)) / 2)); }
.gallery-section h2 { color: var(--white); }
.gallery-section .eyebrow { color: var(--gold); }
.gallery-section .section-heading p { color: rgba(255,255,255,0.7); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  width: 100%; height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink-2);
  cursor: zoom-in;
  box-shadow: 0 16px 44px rgba(0,0,0,0.22);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .42s ease, filter .42s ease;
}
.gallery-item::after {
  content: "Ver foto";
  position: absolute;
  right: 14px; bottom: 14px;
  padding: 6px 12px;
  background: rgba(10,10,15,0.7);
  color: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.84rem; font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
}
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.08); filter: saturate(1.08); }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; transform: translateY(0); }

/* ---------- CONTACT ---------- */
.contact-section {
  padding: 96px 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.88), rgba(10, 10, 15, 0.96) 52%, rgba(20, 184, 166, 0.78)),
    var(--ink);
  text-align: center;
}
.contact-inner { width: min(100%, 920px); margin: 0 auto; }
.contact-section h2, .contact-section p { color: var(--white); }
.contact-section p { max-width: 680px; margin: 16px auto 0; opacity: 0.86; }
.contact-actions { justify-content: center; }
.phone { margin-top: 24px; font-weight: 800; font-size: 1.1rem; }

/* ---------- FOOTER ---------- */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px max(24px, calc((100vw - var(--max)) / 2));
  color: rgba(255,255,255,0.7);
  background: #050507;
  font-size: 0.92rem;
}
.site-footer strong { color: var(--white); }
.site-footer p { margin: 4px 0 0; }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.footer-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color .18s ease;
}
.footer-links a:hover { color: var(--gold); }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  background: var(--green-wa);
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 18px 38px rgba(37,211,102,0.42);
  transition: transform .18s ease, box-shadow .18s ease;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid rgba(37, 211, 102, 0.6);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(.92); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.whatsapp-float:hover, .whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.05);
  outline: none;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px 20px 28px;
  background: rgba(4,4,8,0.92);
  backdrop-filter: blur(12px);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 22px; right: 22px;
  min-height: 44px;
  padding: 0 16px;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
}

/* ---------- REVEAL ANIMATION ---------- */
body.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
body.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .site-nav {
    position: fixed;
    top: 92px;
    left: 16px; right: 16px;
    display: grid;
    justify-content: stretch;
    gap: 6px;
    padding: 14px;
    background: rgba(10,10,15,0.96);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-nav a { justify-content: center; }
  .menu-button { display: grid; }

  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 124px; }
  .hero-stage { justify-items: start; }
  .cinema-frame { width: min(100%, 340px); }

  .essence-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .juxtapose-wrapper, .founder-section, .reviews-band {
    grid-template-columns: 1fr;
  }
  .reviews-band .quote-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), 1240px);
    padding-left: 12px;
  }
  .brand small { display: none; }
  .brand strong { font-size: 0.9rem; }

  .hero { padding: 116px 18px 50px; }
  .hero-actions, .contact-actions { display: grid; }
  .button { width: 100%; }

  .quote-mark { font-size: 1.2rem; }

  .section, .contact-section, .faq-section, .juxtapose-wrapper, .founder-section, .gallery-section { padding-left: 18px; padding-right: 18px; }
  .section, .faq-section, .juxtapose-wrapper, .founder-section, .gallery-section { padding-top: 64px; padding-bottom: 64px; }

  .essence-grid, .values-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 280px; }
  .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }

  .site-footer { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .whatsapp-float::before { display: none; }
}
