/* =========================================================
   OKO POKE — Styles
   Paleta: Sky #9FD3E6 · Ocean #5FAFC7 · Coral #FF8A5B · Sun #FFD166
   Light + Dark mode · CSS-only tropical animations
   ========================================================= */

:root {
  /* Brand palette (constante em ambos os temas) */
  --sky:        #9FD3E6;
  --ocean:      #5FAFC7;
  --ocean-dark: #3d8fa8;
  --coral:      #FF8A5B;
  --coral-dark: #e36a3f;
  --sun:        #FFD166;
  --sun-dark:   #e5b548;
  --green:      #3fb58f;

  /* Tokens semânticos — LIGHT (default) */
  --bg:         #fdfcf8;
  --bg-soft:    #f6f1e8;
  --surface:    #ffffff;
  --surface-2:  #fafafa;
  --sky-soft:   #e8f6fb;
  --sun-soft:   #fff4d6;
  --coral-soft: #ffe7dc;
  --green-soft: #e0f3ec;

  --text:       #0f2230;
  --text-muted: #33475a;
  --text-subtle:#657788;
  --text-faint: #b0bcc6;
  --border:     #e4ebf0;
  --divider:    #e4ebf0;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 34, 48, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 34, 48, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 34, 48, 0.14);
  --shadow-coral: 0 14px 30px rgba(255, 138, 91, 0.38);
  --shadow-ocean: 0 14px 30px rgba(95, 175, 199, 0.38);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Transitions */
  --t: 0.3s cubic-bezier(.2,.8,.2,1);
  --t-slow: 0.6s cubic-bezier(.2,.8,.2,1);

  /* Font */
  --ff-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --ff-display: 'Fraunces', Georgia, serif;

  /* Layout */
  --container: 1200px;
  --nav-h: 76px;
}

/* DARK tokens — paleta mais quente/natural (sunset na praia) */
[data-theme="dark"] {
  --bg:         #12211e;   /* moss deep */
  --bg-soft:    #1a2d28;
  --surface:    #1f3531;
  --surface-2:  #294540;
  --sky-soft:   #1d3a3c;
  --sun-soft:   #3c2e1a;
  --coral-soft: #3a2018;
  --green-soft: #1b3830;

  --text:       #f3f0e8;
  --text-muted: #d3cfc3;
  --text-subtle:#9aa69d;
  --text-faint: #5d6d67;
  --border:     #2a4540;
  --divider:    #223a35;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-coral: 0 14px 30px rgba(255, 138, 91, 0.35);
  --shadow-ocean: 0 14px 30px rgba(95, 175, 199, 0.35);
}

/* Respeita preferência do sistema se usuário ainda não escolheu manual */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --bg:         #12211e;
    --bg-soft:    #1a2d28;
    --surface:    #1f3531;
    --surface-2:  #294540;
    --sky-soft:   #1d3a3c;
    --sun-soft:   #3c2e1a;
    --coral-soft: #3a2018;
    --green-soft: #1b3830;

    --text:       #f3f0e8;
    --text-muted: #d3cfc3;
    --text-subtle:#9aa69d;
    --text-faint: #5d6d67;
    --border:     #2a4540;
    --divider:    #223a35;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
  }
}

/* ========== SPLASH / ABERTURA ========== */
body.is-loading { overflow: hidden; }

.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(80% 60% at 50% 30%, #ffffff 0%, transparent 60%),
    linear-gradient(135deg, #e8f6fb 0%, #fff4d6 60%, #ffe7dc 100%);
  animation: splashOut 0.8s ease 2.6s forwards;
}

@keyframes splashOut {
  from { opacity: 1; visibility: visible; }
  to   { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* Ripples concêntricas (gota d'água) */
.splash-ripple {
  position: absolute;
  top: 50%; left: 50%;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 2px solid #5FAFC7;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  animation: rippleOut 2.4s ease-out 0.1s infinite;
}
.splash-ripple-2 {
  border-color: #FF8A5B;
  animation-delay: 0.6s;
}
.splash-ripple-3 {
  border-color: #FFD166;
  animation-delay: 1.1s;
}
@keyframes rippleOut {
  0% { transform: translate(-50%, -50%) scale(0.2); opacity: 0.9; }
  80% { opacity: 0.2; }
  100% { transform: translate(-50%, -50%) scale(2.8); opacity: 0; }
}

.splash-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.splash-logo-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  animation: logoPop 0.9s cubic-bezier(.2, 1.3, .5, 1) 0.15s both;
}

.splash-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.55) 0%, rgba(255, 138, 91, 0.25) 40%, transparent 70%);
  filter: blur(20px);
  animation: glowPulse 2.4s ease-in-out infinite;
}

.splash-logo {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 50%;
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.7),
    0 24px 60px rgba(95, 175, 199, 0.35);
  object-fit: cover;
  z-index: 1;
}

@keyframes logoPop {
  0%   { transform: scale(0.2) rotate(-25deg); opacity: 0; }
  60%  { transform: scale(1.08) rotate(4deg);  opacity: 1; }
  100% { transform: scale(1)    rotate(0deg);  opacity: 1; }
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1);   opacity: 0.7; }
  50%      { transform: scale(1.1); opacity: 1; }
}

.splash-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #0f2230;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
  animation: fadeUp 0.7s ease 0.6s both;
}
.splash-brand em {
  font-style: italic;
  color: #FF8A5B;
  margin-left: 2px;
}

.splash-tag {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 0.98rem;
  color: #5a6b78;
  margin: 0 0 22px;
  letter-spacing: 0.03em;
  animation: fadeUp 0.7s ease 0.85s both;
}

@keyframes fadeUp {
  from { transform: translateY(14px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.splash-dots {
  display: inline-flex;
  gap: 10px;
  animation: fadeUp 0.5s ease 1.1s both;
}
.splash-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #FF8A5B;
  animation: dotPulse 1.2s ease-in-out infinite;
}
.splash-dots span:nth-child(2) { background: #5FAFC7; animation-delay: 0.18s; }
.splash-dots span:nth-child(3) { background: #FFD166; animation-delay: 0.36s; }
@keyframes dotPulse {
  0%, 100% { transform: scale(0.6); opacity: 0.35; }
  50%      { transform: scale(1.2); opacity: 1; }
}

/* Ondas animadas no rodapé do splash (como maré subindo) */
.splash-wave-svg {
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%;
  height: 140px;
  pointer-events: none;
  animation: fadeUp 0.8s ease 0.4s both;
}
.splash-wave-path-1 {
  fill: rgba(95, 175, 199, 0.45);
  animation: waveSlide 6s ease-in-out infinite alternate;
}
.splash-wave-path-2 {
  fill: rgba(159, 211, 230, 0.7);
  animation: waveSlide 8s ease-in-out infinite alternate-reverse;
}
@keyframes waveSlide {
  from { transform: translateX(-30px); }
  to   { transform: translateX(30px); }
}

/* Remoção do splash após a animação */
.splash.gone { display: none; }

/* Dark mode: mantém a vibe clara (sunrise), apenas suaviza */
[data-theme="dark"] .splash {
  background:
    radial-gradient(80% 60% at 50% 30%, #f3f0e8 0%, transparent 60%),
    linear-gradient(135deg, #d9efe6 0%, #fff1d9 60%, #ffdac9 100%);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .splash {
    background:
      radial-gradient(80% 60% at 50% 30%, #f3f0e8 0%, transparent 60%),
      linear-gradient(135deg, #d9efe6 0%, #fff1d9 60%, #ffdac9 100%);
  }
}

/* Reduced motion: encurta o splash */
@media (prefers-reduced-motion: reduce) {
  .splash {
    animation: splashOut 0.3s ease 0.4s forwards;
  }
  .splash-ripple,
  .splash-glow,
  .splash-wave-path-1,
  .splash-wave-path-2 { animation: none; }
  .splash-logo-wrap,
  .splash-brand,
  .splash-tag,
  .splash-dots { animation-duration: 0.2s !important; animation-delay: 0s !important; }
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background var(--t), color var(--t);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--text-muted); }

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

.section {
  padding: clamp(70px, 10vw, 120px) 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head p { color: var(--text-subtle); font-size: 1.05rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-dark);
  background: var(--coral-soft);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
[data-theme="dark"] .eyebrow { color: var(--coral); }
@media (prefers-color-scheme: dark) { :root:not([data-theme]) .eyebrow { color: var(--coral); } }

.eyebrow-white {
  color: var(--surface);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}

.highlight {
  color: var(--ocean-dark);
  position: relative;
  white-space: nowrap;
}
[data-theme="dark"] .highlight { color: var(--ocean); }
@media (prefers-color-scheme: dark) { :root:not([data-theme]) .highlight { color: var(--ocean); } }
.highlight::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 10px;
  background: var(--sky);
  z-index: -1;
  border-radius: 999px;
  transform: skewX(-6deg);
  opacity: 0.85;
}
.highlight-coral {
  color: var(--coral);
  position: relative;
  white-space: nowrap;
}
.highlight-coral::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 10px;
  background: var(--sun);
  z-index: -1;
  border-radius: 999px;
  transform: skewX(-6deg);
  opacity: 0.9;
}
[data-theme="dark"] .highlight::after,
[data-theme="dark"] .highlight-coral::after { opacity: 0.75; }
.highlight-sun { color: var(--sun); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.lead { font-size: 1.1rem; color: var(--text-muted); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn-sm { padding: 10px 18px; font-size: 0.86rem; }
.btn-lg { padding: 16px 30px; font-size: 1rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff;
  box-shadow: var(--shadow-coral);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 138, 91, 0.48);
}

.btn-outline {
  border: 2px solid var(--ocean);
  color: var(--ocean-dark);
  background: transparent;
  padding: 11px 22px;
}
[data-theme="dark"] .btn-outline { color: var(--ocean); }
@media (prefers-color-scheme: dark) { :root:not([data-theme]) .btn-outline { color: var(--ocean); } }
.btn-outline.btn-lg { padding: 14px 28px; }
.btn-outline:hover {
  background: var(--ocean);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-ocean);
}

.btn-white {
  background: #fff;
  color: var(--coral-dark);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-ghost-white {
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 14px 28px;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.14);
  border-color: #fff;
  transform: translateY(-3px);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background var(--t), box-shadow var(--t), border-color var(--t);
  height: var(--nav-h);
  will-change: background;
}
.navbar.scrolled {
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}
/* Fallback: se o navegador não suporta backdrop-filter, usa fundo sólido */
@supports not (backdrop-filter: blur(10px)) {
  .navbar { background: var(--bg); }
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.brand-logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform var(--t);
  background: var(--bg-soft);
}
.brand:hover .brand-logo { transform: rotate(-10deg) scale(1.08); }
.brand-text em {
  font-style: italic;
  color: var(--coral);
  font-weight: 700;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color var(--t);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -4px;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width var(--t), left var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--coral); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; left: 0; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Theme toggle */
.theme-toggle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  display: grid;
  place-items: center;
  position: relative;
  transition: all var(--t);
  flex-shrink: 0;
}
.theme-toggle:hover {
  transform: rotate(-20deg) scale(1.08);
  background: var(--coral-soft);
  color: var(--coral);
  border-color: var(--coral);
}
.theme-toggle .icon-sun, .theme-toggle .icon-moon {
  position: absolute;
  font-size: 1rem;
  transition: opacity var(--t), transform var(--t);
}
.theme-toggle .icon-sun  { opacity: 0; transform: rotate(180deg); }
.theme-toggle .icon-moon { opacity: 1; transform: rotate(0deg); }
[data-theme="dark"] .theme-toggle .icon-sun  { opacity: 1; transform: rotate(0deg); }
[data-theme="dark"] .theme-toggle .icon-moon { opacity: 0; transform: rotate(-180deg); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .theme-toggle .icon-sun  { opacity: 1; transform: rotate(0deg); }
  :root:not([data-theme]) .theme-toggle .icon-moon { opacity: 0; transform: rotate(-180deg); }
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 40px) 0 140px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--sky-soft) 0%, var(--bg) 100%);
}
/* Dark mode: hero com vibe pôr-do-sol na praia — quente, natural, orgânico */
[data-theme="dark"] .hero {
  background:
    radial-gradient(70% 80% at 85% 120%, rgba(255, 138, 91, 0.22), transparent 60%),
    radial-gradient(60% 70% at 10% -10%, rgba(95, 175, 199, 0.18), transparent 60%),
    radial-gradient(40% 50% at 50% 100%, rgba(255, 209, 102, 0.1), transparent 70%),
    linear-gradient(180deg, #0f2024 0%, #13231f 55%, #1a2d24 100%);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .hero {
    background:
      radial-gradient(70% 80% at 85% 120%, rgba(255, 138, 91, 0.22), transparent 60%),
      radial-gradient(60% 70% at 10% -10%, rgba(95, 175, 199, 0.18), transparent 60%),
      radial-gradient(40% 50% at 50% 100%, rgba(255, 209, 102, 0.1), transparent 70%),
      linear-gradient(180deg, #0f2024 0%, #13231f 55%, #1a2d24 100%);
  }
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
  transform: translateZ(0);
}
.blob-1 {
  width: 480px; height: 480px;
  background: var(--sky);
  top: -100px; left: -160px;
  opacity: 0.55;
  animation: blobDrift1 18s ease-in-out infinite alternate;
}
.blob-2 {
  width: 520px; height: 520px;
  background: var(--sun);
  bottom: -180px; right: -180px;
  opacity: 0.35;
  animation: blobDrift2 22s ease-in-out infinite alternate;
}
.blob-3 {
  width: 320px; height: 320px;
  background: var(--coral);
  top: 40%; left: 50%;
  opacity: 0.18;
  animation: blobDrift3 26s ease-in-out infinite alternate;
}
/* Dark mode: blobs mais orgânicos/quentes + opacidade suave */
[data-theme="dark"] .blob-1 {
  background: var(--ocean);
  opacity: 0.22;
  filter: blur(110px);
}
[data-theme="dark"] .blob-2 {
  background: var(--coral);
  opacity: 0.28;
  filter: blur(120px);
}
[data-theme="dark"] .blob-3 {
  background: var(--sun);
  opacity: 0.18;
  filter: blur(100px);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .blob-1 {
    background: var(--ocean); opacity: 0.22; filter: blur(110px);
  }
  :root:not([data-theme]) .blob-2 {
    background: var(--coral); opacity: 0.28; filter: blur(120px);
  }
  :root:not([data-theme]) .blob-3 {
    background: var(--sun); opacity: 0.18; filter: blur(100px);
  }
}
@keyframes blobDrift1 {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(60px, 40px) scale(1.1); }
}
@keyframes blobDrift2 {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(-80px, -50px) scale(0.95); }
}
@keyframes blobDrift3 {
  from { transform: translate(-50%, -50%) scale(1); }
  to { transform: translate(-40%, -60%) scale(1.15); }
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--ocean) 35%, transparent) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
  mask-image: radial-gradient(circle at 50% 60%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 60%, #000 40%, transparent 80%);
  animation: dotDrift 60s linear infinite;
}
/* No dark mode, some o grid "tech" — fica só a brisa dos blobs */
[data-theme="dark"] .hero-dots { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .hero-dots { display: none; }
}
@keyframes dotDrift {
  from { background-position: 0 0; }
  to { background-position: 280px 280px; }
}

/* Partículas flutuantes — bokeh suave (não LEDs) */
.particle {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--sun);
  opacity: 0.45;
  filter: blur(6px);
  will-change: transform;
  transform: translateZ(0);
}
.p1 { top: 20%; left: 30%; animation: floatP 9s ease-in-out infinite; background: var(--coral); }
.p2 { top: 60%; left: 15%; animation: floatP 11s ease-in-out infinite -3s; }
.p3 { top: 35%; left: 70%; animation: floatP 13s ease-in-out infinite -1s; background: var(--ocean); width: 12px; height: 12px; }
.p4 { top: 75%; left: 80%; animation: floatP 10s ease-in-out infinite -5s; width: 10px; height: 10px; background: var(--coral); }
.p5 { top: 15%; left: 85%; animation: floatP 12s ease-in-out infinite -7s; background: var(--sun); }
@keyframes floatP {
  0%, 100% { transform: translate(0, 0); opacity: 0.45; }
  50% { transform: translate(20px, -40px); opacity: 0.9; }
}
/* Dark: particles viram bokeh gorduchos e quentes */
[data-theme="dark"] .particle {
  filter: blur(12px);
  opacity: 0.6;
  width: 24px; height: 24px;
}
[data-theme="dark"] .p1 { background: var(--coral); }
[data-theme="dark"] .p2 { background: var(--sun); }
[data-theme="dark"] .p3 { background: var(--coral); }
[data-theme="dark"] .p4 { background: var(--sun); }
[data-theme="dark"] .p5 { background: var(--coral); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .particle {
    filter: blur(12px);
    opacity: 0.6;
    width: 24px; height: 24px;
  }
  :root:not([data-theme]) .p1,
  :root:not([data-theme]) .p3,
  :root:not([data-theme]) .p5 { background: var(--coral); }
  :root:not([data-theme]) .p2,
  :root:not([data-theme]) .p4 { background: var(--sun); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero-title { margin-bottom: 20px; }
.hero-sub {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-sub strong { color: var(--coral); font-weight: 700; }
.hero-sub em { color: var(--ocean-dark); font-style: normal; font-weight: 600; }
[data-theme="dark"] .hero-sub em { color: var(--ocean); }
@media (prefers-color-scheme: dark) { :root:not([data-theme]) .hero-sub em { color: var(--ocean); } }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--border);
}
.meta-item strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.55rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1;
}
.meta-item strong i { color: var(--sun-dark); font-size: 0.85em; }
.meta-item span {
  font-size: 0.78rem;
  color: var(--text-subtle);
  display: block;
  margin-top: 5px;
  letter-spacing: 0.02em;
}
.meta-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero image */
.hero-image {
  position: relative;
  max-width: 520px;
  justify-self: end;
  width: 100%;
}
.hero-image-frame {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 50% 46% 48% 52% / 50% 52% 48% 50%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 34, 48, 0.22);
  background: linear-gradient(135deg, var(--sky), var(--sun-soft));
  animation: blob 14s ease-in-out infinite;
  border: 6px solid var(--surface);
}
/* No dark mode: remove a borda "plástica" e deixa um glow suave ao redor */
[data-theme="dark"] .hero-image-frame {
  border-color: transparent;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(255, 138, 91, 0.18);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .hero-image-frame {
    border-color: transparent;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.04) inset,
      0 40px 80px rgba(0, 0, 0, 0.55),
      0 0 60px rgba(255, 138, 91, 0.18);
  }
}
.hero-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.hero-image:hover .hero-image-frame img { transform: scale(1.06); }
@keyframes blob {
  0%, 100% { border-radius: 50% 46% 48% 52% / 50% 52% 48% 50%; }
  33% { border-radius: 46% 54% 50% 50% / 52% 48% 52% 48%; }
  66% { border-radius: 52% 48% 52% 48% / 48% 50% 50% 52%; }
}

.hero-badge {
  position: absolute;
  background: var(--surface);
  padding: 12px 18px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  border: 2px solid var(--sun-soft);
}
.badge-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.badge-icon-green { background: var(--green-soft); color: var(--green); }
.badge-icon-sun   { background: var(--sun-soft); color: var(--sun-dark); }
.hero-badge strong { display: block; color: var(--text); line-height: 1.2; }
.hero-badge small { color: var(--text-subtle); font-size: 0.78rem; }
.hero-badge { top: 8%; left: -6%; }
.hero-badge-2 { top: auto; left: auto; bottom: 10%; right: -4%; border-color: var(--coral-soft); }

.float { animation: float 4.5s ease-in-out infinite; }
.float-delay { animation: float 4.5s ease-in-out infinite 2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Wave divider bottom of hero */
.section-wave {
  position: absolute;
  left: 0; right: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  line-height: 0;
}
.section-wave-bottom {
  bottom: -1px;
  height: 120px;
}
.section-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}
.section-wave-bottom svg {
  animation: waveShift 16s ease-in-out infinite alternate;
  transform-origin: center;
}
.section-wave-bottom svg path {
  fill: var(--bg);
  transition: fill var(--t);
}
@keyframes waveShift {
  from { transform: translateX(-30px) scaleY(1); }
  to   { transform: translateX(30px)  scaleY(1.1); }
}

.scroll-cue {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid var(--ocean);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  z-index: 2;
}
.scroll-cue span {
  display: block;
  width: 4px; height: 8px;
  background: var(--coral);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(14px); opacity: 0.3; }
}

/* ========== HISTÓRIA ========== */
.historia {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.historia-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.historia-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
}
.orb-1 {
  width: 420px; height: 420px;
  background: var(--ocean);
  top: -10%; right: -10%;
  animation: blobDrift2 20s ease-in-out infinite alternate;
}
.orb-2 {
  width: 380px; height: 380px;
  background: var(--sun);
  bottom: -15%; left: -5%;
  animation: blobDrift1 24s ease-in-out infinite alternate;
}
[data-theme="dark"] .historia-orb { opacity: 0.18; }

.historia-inner { position: relative; z-index: 1; }

.historia-media {
  position: relative;
  max-width: 520px;
}
.historia-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-soft);
}
.historia-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.historia-frame:hover img { transform: scale(1.04); }
.historia-accent {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, transparent 60%, rgba(255, 138, 91, 0.18) 100%);
  pointer-events: none;
}
.historia-chip {
  position: absolute;
  top: 20px; right: -20px;
  background: var(--sun);
  color: var(--text);
  padding: 12px 18px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(255, 209, 102, 0.5);
  font-size: 0.85rem;
  z-index: 3;
  animation: chipFloat 5s ease-in-out infinite;
}
.historia-chip i {
  width: 30px; height: 30px;
  background: rgba(0,0,0,0.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.historia-chip strong { display: block; font-family: var(--ff-display); line-height: 1.1; }
.historia-chip small { color: var(--text-muted); font-size: 0.72rem; display: block; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-8px) rotate(-2deg); }
}

.historia-signature {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--surface);
  padding: 14px 20px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  z-index: 3;
  border-left: 4px solid var(--coral);
}
.historia-signature strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--text);
}
.historia-signature span {
  font-size: 0.8rem;
  color: var(--text-subtle);
}

.historia-text .lead { margin-bottom: 16px; }
.historia-text strong { color: var(--text); font-weight: 700; }
.historia-text em { color: var(--coral); font-style: italic; font-weight: 600; }

.historia-quote {
  position: relative;
  background: linear-gradient(135deg, var(--coral-soft), var(--sun-soft));
  border-left: 4px solid var(--coral);
  padding: 26px 28px 26px 52px;
  margin: 28px 0;
  border-radius: var(--r-md);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.55;
}
.historia-quote .quote-mark {
  position: absolute;
  top: -10px; left: 14px;
  font-size: 4rem;
  color: var(--coral);
  line-height: 1;
  font-family: var(--ff-display);
}
.historia-quote strong { color: var(--coral-dark); }
[data-theme="dark"] .historia-quote strong { color: var(--coral); }
.historia-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-subtle);
  font-style: normal;
  font-family: var(--ff-sans);
  font-weight: 500;
}

.historia-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.historia-link {
  color: var(--coral);
  font-weight: 700;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--t);
}
.historia-link:hover { gap: 12px; }

/* ========== SOBRE ========== */
.sobre { background: var(--bg-soft); }
.sobre-images {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
}
.sobre-img {
  position: absolute;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  transition: transform var(--t-slow);
}
.sobre-img-1 {
  top: 0; left: 0;
  width: 75%; height: 80%;
  z-index: 1;
}
.sobre-img-2 {
  bottom: 0; right: 0;
  width: 55%; height: 50%;
  z-index: 2;
  border: 8px solid var(--bg-soft);
}
.sobre-images:hover .sobre-img-1 { transform: translate(-8px, -8px) rotate(-2deg); }
.sobre-images:hover .sobre-img-2 { transform: translate(8px, 8px) rotate(3deg); }

.sobre-sticker {
  position: absolute;
  top: -20px; right: 20px;
  background: var(--sun);
  color: var(--text);
  padding: 12px;
  border-radius: 50%;
  width: 104px; height: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.84rem;
  line-height: 1.1;
  box-shadow: 0 14px 30px rgba(255, 209, 102, 0.55);
  transform: rotate(-10deg);
  z-index: 3;
  animation: wobble 6s ease-in-out infinite;
  border: 3px solid var(--surface);
}
.sobre-sticker i { font-size: 1.2rem; margin-bottom: 2px; color: var(--coral-dark); }
@keyframes wobble {
  0%, 100% { transform: rotate(-10deg); }
  50% { transform: rotate(-4deg); }
}

.sobre-list { margin: 24px 0 32px; }
.sobre-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-muted);
  font-weight: 500;
}
.sobre-list i {
  width: 38px; height: 38px;
  background: var(--sky-soft);
  color: var(--ocean-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
[data-theme="dark"] .sobre-list i { color: var(--ocean); }
@media (prefers-color-scheme: dark) { :root:not([data-theme]) .sobre-list i { color: var(--ocean); } }
.sobre-list li:nth-child(odd) i {
  background: var(--coral-soft);
  color: var(--coral-dark);
}
[data-theme="dark"] .sobre-list li:nth-child(odd) i { color: var(--coral); }
@media (prefers-color-scheme: dark) { :root:not([data-theme]) .sobre-list li:nth-child(odd) i { color: var(--coral); } }
.sobre-list li:nth-child(3) i {
  background: var(--sun-soft);
  color: var(--sun-dark);
}

/* ========== CARDÁPIO ========== */
.cardapio {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--sky-soft) 100%);
  position: relative;
  overflow: hidden;
}
.cardapio::before {
  content: "";
  position: absolute;
  top: 10%; right: -80px;
  width: 300px; height: 300px;
  background: var(--sun);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.22;
  animation: blobDrift1 30s ease-in-out infinite alternate;
}
.menu-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.88rem;
  border: 2px solid transparent;
  transition: all var(--t);
  box-shadow: var(--shadow-sm);
}
.filter-btn:hover {
  border-color: var(--sky);
  color: var(--ocean-dark);
  transform: translateY(-2px);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff;
  box-shadow: var(--shadow-coral);
  border-color: transparent;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.menu-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  display: flex;
  flex-direction: column;
  color: inherit;
  position: relative;
  border: 1px solid var(--border);
}
.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.menu-card.hide { display: none; }

/* Colapso inicial: mostra só os 12 primeiros (sem filtro ativo) */
.menu-grid.is-collapsed .menu-card:nth-of-type(n+13) { display: none; }
.menu-grid.is-collapsed .menu-card.hide { display: none; }

/* Botão Ver mais */
.menu-expand {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.btn-expand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--coral-dark);
  border: 2px solid var(--coral);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all var(--t);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
[data-theme="dark"] .btn-expand { color: var(--coral); }
.btn-expand:hover {
  background: var(--coral);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-coral);
}
.btn-expand i {
  transition: transform var(--t);
}
.btn-expand:hover i { transform: translateY(2px); }
.btn-expand .count {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--coral-soft);
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 700;
}
[data-theme="dark"] .btn-expand .count {
  background: color-mix(in srgb, var(--coral) 25%, transparent);
  color: var(--coral);
}
.btn-expand:hover .count {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.menu-card-feature {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--coral-soft), var(--sun-soft));
  border: 2px dashed var(--coral);
}
.menu-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--sky-soft);
}
.menu-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.menu-card:hover .menu-img img { transform: scale(1.08); }
.menu-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ocean);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
}
.menu-tag-coral { background: var(--coral); }
.menu-tag-sun   { background: var(--sun); color: var(--text); }
.menu-tag-green { background: var(--green); }

.menu-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.menu-body h3 { margin: 0 0 8px; font-size: 1.18rem; }
.menu-body p {
  font-size: 0.92rem;
  color: var(--text-subtle);
  margin: 0 0 16px;
  flex: 1;
}
.menu-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--coral);
  transition: gap var(--t);
}
.menu-link i { font-size: 0.82em; transition: transform var(--t); }
.menu-card:hover .menu-link { gap: 10px; }
.menu-card:hover .menu-link i { transform: translateX(3px); }

.menu-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.menu-note {
  font-size: 0.82rem;
  color: var(--text-subtle);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ========== DIFERENCIAIS ========== */
.diferenciais {
  background: linear-gradient(180deg, var(--sky-soft) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.dif-wave {
  position: absolute;
  top: 0; left: 0; right: 0;
  width: 100%; height: 140px;
  opacity: 0.35;
  pointer-events: none;
}
.dif-wave path {
  fill: var(--sky);
  animation: waveDrift 12s ease-in-out infinite alternate;
}
@keyframes waveDrift {
  from { transform: translateX(0); }
  to   { transform: translateX(-40px); }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}
.feature {
  background: var(--surface);
  padding: 36px 28px;
  border-radius: var(--r-lg);
  text-align: center;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  border: 1px solid var(--border);
}
.feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-icon {
  width: 72px; height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--coral-soft), var(--sun-soft));
  color: var(--coral-dark);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  margin: 0 auto 20px;
  transition: transform var(--t-slow), background var(--t-slow);
}
[data-theme="dark"] .feature-icon { color: var(--coral); }
@media (prefers-color-scheme: dark) { :root:not([data-theme]) .feature-icon { color: var(--coral); } }
.feature:nth-child(2) .feature-icon,
.feature:nth-child(5) .feature-icon {
  background: linear-gradient(135deg, var(--sky), var(--sky-soft));
  color: var(--ocean-dark);
}
[data-theme="dark"] .feature:nth-child(2) .feature-icon,
[data-theme="dark"] .feature:nth-child(5) .feature-icon { color: var(--ocean); }
.feature:nth-child(3) .feature-icon,
.feature:nth-child(6) .feature-icon {
  background: linear-gradient(135deg, var(--sun), var(--sun-soft));
  color: var(--sun-dark);
}
.feature:hover .feature-icon { transform: scale(1.1) rotate(-6deg); }
.feature h3 { margin-bottom: 10px; }
.feature p { font-size: 0.94rem; color: var(--text-subtle); margin: 0; }

/* ========== AVALIAÇÕES ========== */
.avaliacoes { background: var(--bg); }
.reviews-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}
.rating-big {
  background: linear-gradient(135deg, var(--sun), var(--coral));
  color: #fff;
  padding: 30px 40px;
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--shadow-coral);
  min-width: 210px;
}
.rating-number {
  font-family: var(--ff-display);
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
}
.rating-stars { font-size: 1.1rem; letter-spacing: 2px; margin: 8px 0 4px; }
.rating-label { font-size: 0.85rem; opacity: 0.95; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  position: relative;
}
.review::before {
  content: "\201C";
  position: absolute;
  top: 10px; right: 24px;
  font-size: 4rem;
  font-family: var(--ff-display);
  color: var(--sky);
  line-height: 1;
  opacity: 0.6;
}
.review:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral-soft);
}
.review-stars { color: var(--sun-dark); letter-spacing: 2px; margin-bottom: 14px; }
.review p {
  font-size: 0.98rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 22px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-family: var(--ff-display);
}
.avatar-1 { background: linear-gradient(135deg, var(--coral), var(--sun)); }
.avatar-2 { background: linear-gradient(135deg, var(--ocean), var(--sky)); }
.avatar-3 { background: linear-gradient(135deg, var(--sun), var(--coral-dark)); }
.avatar-4 { background: linear-gradient(135deg, var(--ocean-dark), var(--coral)); }
.review-author strong { display: block; font-size: 0.95rem; color: var(--text); }
.review-author small { font-size: 0.78rem; color: var(--text-subtle); }

/* ========== GALERIA ========== */
.galeria { background: var(--bg-soft); }
.galeria .ig-link { color: var(--coral); font-weight: 600; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: block;
  background: var(--sky-soft);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 138, 91, 0.88), rgba(95, 175, 199, 0.82));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2.2rem;
  opacity: 0;
  transition: opacity var(--t);
}
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }

/* ========== LOCALIZAÇÃO ========== */
.localizacao { background: var(--bg); }
.info-list { margin: 24px 0 32px; }
.info-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--border);
}
.info-list li:last-child { border-bottom: none; }
.info-list li > i {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--sky-soft);
  color: var(--ocean-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}
[data-theme="dark"] .info-list li > i { color: var(--ocean); }
@media (prefers-color-scheme: dark) { :root:not([data-theme]) .info-list li > i { color: var(--ocean); } }
.info-list li:nth-child(2) > i { background: var(--sun-soft); color: var(--sun-dark); }
.info-list li:nth-child(3) > i { background: var(--coral-soft); color: var(--coral-dark); }
[data-theme="dark"] .info-list li:nth-child(3) > i { color: var(--coral); }
.info-list li:nth-child(4) > i { background: var(--green-soft); color: var(--green); }
.info-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
  font-family: var(--ff-display);
  font-size: 1.05rem;
}
.info-list span, .info-list a { color: var(--text-subtle); }
.info-list a { color: var(--coral-dark); font-weight: 600; }
[data-theme="dark"] .info-list a { color: var(--coral); }

.local-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--sky-soft);
  min-height: 460px;
}
.map-wrap iframe {
  display: block;
  filter: saturate(0.95);
}
[data-theme="dark"] .map-wrap iframe {
  filter: invert(0.92) hue-rotate(180deg) saturate(0.85);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .map-wrap iframe {
    filter: invert(0.92) hue-rotate(180deg) saturate(0.85);
  }
}

/* ========== CTA FINAL ========== */
.cta-final {
  background:
    linear-gradient(135deg, rgba(95, 175, 199, 0.88), rgba(255, 138, 91, 0.85)),
    url('img/cover.webp');
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed removido — causa tremor em scroll
     com GPUs lentas (repaint a cada frame do scroll). */
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 209, 102, 0.28), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(159, 211, 230, 0.22), transparent 50%);
}
.cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-content h2 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  margin-bottom: 18px;
}
.cta-content p {
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ========== FOOTER ========== */
.footer {
  background: #0a1217;
  color: rgba(255,255,255,0.75);
  padding-top: 70px;
}
[data-theme="dark"] .footer { background: #060d11; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.brand-footer { color: #fff; margin-bottom: 16px; }
.brand-footer .brand-text em { color: var(--sun); }
.brand-footer img { border: 2px solid var(--sun); }
.footer-about { font-size: 0.92rem; color: rgba(255,255,255,0.6); max-width: 340px; }
.footer-links li {
  padding: 6px 0;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--coral); }
.footer-links i { color: var(--coral); width: 16px; }

.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: grid;
  place-items: center;
  transition: all var(--t);
}
.socials a:hover {
  background: var(--coral);
  transform: translateY(-3px);
}

.newsletter {
  display: flex;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-pill);
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.1);
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  min-width: 0;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter button {
  background: var(--coral);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background var(--t);
  flex-shrink: 0;
}
.newsletter button:hover { background: var(--sun); color: var(--text); }
.footer-newsletter-text { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom small { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ========== WHATSAPP FLOAT ========== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
  z-index: 99;
  transition: transform var(--t);
}
.wa-float:hover { transform: scale(1.1); }
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  animation: pulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #0a1217;
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t);
}
.wa-tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #0a1217;
  border-right: 0;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { justify-self: center; max-width: 440px; margin-top: 20px; }
  .hero-badge { left: 0%; }
  .hero-badge-2 { right: 0%; }
  .grid-2 { grid-template-columns: 1fr; }
  .reviews-top { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu-card-feature { grid-column: span 1; }
  .historia-media { margin: 0 auto; }
  .historia-chip { right: 0; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 6px;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform var(--t-slow);
    margin: 0;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 40px); padding-bottom: 100px; }
  .hero-meta { flex-wrap: wrap; gap: 18px; }
  .meta-divider { display: none; }
  .scroll-cue { bottom: 110px; }

  .sobre-images { margin: 0 auto 20px; }
  .sobre-sticker { width: 82px; height: 82px; font-size: 0.74rem; }

  /* Chip do Festival: hangs above the frame on mobile (não cobre o rosto) */
  .historia-chip {
    top: -18px;
    right: 10px;
    font-size: 0.72rem;
    padding: 7px 12px;
    gap: 8px;
  }
  .historia-chip i { width: 22px; height: 22px; font-size: 0.68rem; }
  .historia-chip strong { font-size: 0.84rem; }
  .historia-chip small { font-size: 0.66rem; }
  .historia-signature { bottom: 12px; left: 12px; padding: 10px 14px; }
  .historia-signature strong { font-size: 0.95rem; }

  .cta-final { background-attachment: scroll; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }

  .wa-float { width: 54px; height: 54px; font-size: 1.6rem; bottom: 18px; right: 18px; }
  .wa-tooltip { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-badge { padding: 10px 14px; font-size: 0.8rem; }
  .hero-badge .badge-icon { width: 30px; height: 30px; font-size: 0.85rem; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
  .local-actions { flex-direction: column; align-items: stretch; }
  .local-actions .btn { width: 100%; }
  .menu-filters { gap: 6px; }
  .filter-btn { padding: 7px 16px; font-size: 0.82rem; }
  .historia-quote { padding: 22px 20px 22px 40px; font-size: 1rem; }
  .historia-quote .quote-mark { font-size: 3rem; }
}
