/* ===================================================
   CONFETTI STORE | style.css (Brand Refresh)
   =================================================== */

/* ---------- FONTS ---------- */
@font-face {
  font-family: 'Balloons';
  src: url('fonts/balloons.ttf?v=2') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: block;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body { overflow-x: hidden; width: 100%; max-width: 100vw; }

:root {
  /* === PALETA CONFETTI STORE | tema claro (mint/verde) === */
  --accent:       #B0E0CA;
  --accent-dark:  #7BBDA5;
  --accent-light: #CEEFE0;
  --accent-deep:  #3D7A65;
  --surface-pale: #E8FCF3;
  --surface:      #ffffff;
  --confetti-extra: #B0E0CA;

  --pink:         #F594BF;
  --pink-dark:    #e0609a;
  --pink-light:   #F5D4DF;
  --orange:       #E3B27A;
  --gold:         #FFD166;

  --charcoal:     #1C2B24;
  --text:         #2e4a3d;
  --text-muted:   #6b8f80;
  --white:        #ffffff;

  --shadow-sm:    0 2px 12px hsla(158, 35%, 30%, .10);
  --shadow-md:    0 8px 32px hsla(158, 35%, 30%, .14);
  --shadow-lg:    0 20px 60px hsla(158, 35%, 30%, .18);

  --hero-g1: #111714;
  --hero-g2: #0d1210;
  --hero-g3: #080c0a;
  --hero-ov1: hsla(160,45%,10%,.30);
  --hero-ov2: hsla(160,45%,08%,.60);
  --hero-ov3: hsla(160,45%,08%,.82);
  --hero-glow: hsla(158,40%,30%,.4);

  --placeholder-g2:     hsl(158,40%,88%);
  --placeholder-border: hsla(158,40%,55%,.35);

  --watermark:     hsla(158,40%,70%,.07);
  --stats-border:  hsla(158,35%,60%,.25);
  --card-border:   hsla(158,35%,75%,.25);
  --galeria-ov:    hsla(158,45%,20%,.55);

  --aval-g1: hsl(160, 42%, 18%);
  --aval-g2: hsl(160, 35%, 12%);
  --quote-color:        hsla(158,40%,80%,.05);
  --review-hover-border: hsla(158,50%,70%,.3);
  --score-border:        hsla(158,50%,70%,.25);

  --footer-bg:     hsl(160, 35%, 14%);
  --mobile-nav-bg: hsla(160,45%,10%,.97);
  --navbar-scrolled-bg: hsla(0,0%,100%,.93);

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    28px;
  --transition:   .3s cubic-bezier(.4,0,.2,1);

  --ff-logo:      'Amatic SC', cursive;
  --ff-balloons:  'Balloons', 'Amatic SC', cursive;
  --ff-head:      'Playfair Display', Georgia, serif;
  --ff-body:      'Outfit', system-ui, sans-serif;
}

[data-theme="dark"] {
  /* === PALETA CONFETTI STORE | tema escuro (caramelo/pastel) === */
  --accent:       #E3B778;
  --accent-dark:  #C99850;
  --accent-light: #F3E2C0;
  --accent-deep:  #6B4A30;
  --surface-pale: #F7ECDD;
  --surface:      #EFDCC3;
  --confetti-extra: #7EC8D6;

  --pink:         #D98B4A;
  --pink-dark:    #B8703A;
  --pink-light:   #F3D9B8;
  --orange:       #F0A868;
  --gold:         #F0D383;

  --charcoal:     #3D2B1D;
  --text:         #5C4530;
  --text-muted:   #8A705A;

  --shadow-sm:    0 2px 12px hsla(28, 35%, 30%, .12);
  --shadow-md:    0 8px 32px hsla(28, 35%, 30%, .16);
  --shadow-lg:    0 20px 60px hsla(28, 35%, 30%, .20);

  --hero-g1: #191410;
  --hero-g2: #140f0c;
  --hero-g3: #0d0a08;
  --hero-ov1: hsla(25,45%,10%,.30);
  --hero-ov2: hsla(22,45%,08%,.60);
  --hero-ov3: hsla(20,45%,08%,.82);
  --hero-glow: hsla(28,45%,20%,.45);

  --placeholder-g2:     hsl(28,45%,90%);
  --placeholder-border: hsla(28,45%,55%,.35);

  --watermark:     hsla(28,45%,50%,.08);
  --stats-border:  hsla(28,35%,55%,.3);
  --card-border:   hsla(28,35%,70%,.3);
  --galeria-ov:    hsla(25,45%,20%,.6);

  --aval-g1: hsl(25, 42%, 22%);
  --aval-g2: hsl(22, 38%, 14%);
  --quote-color:        hsla(35,55%,75%,.06);
  --review-hover-border: hsla(30,55%,70%,.35);
  --score-border:        hsla(30,55%,70%,.3);

  --footer-bg:     hsl(24, 35%, 16%);
  --mobile-nav-bg: hsla(24,45%,12%,.97);
  --navbar-scrolled-bg: hsla(35,35%,90%,.95);
}

/* Transição de tema suave focada nos elementos principais (elimina travamentos e engasgos) */
body,
.navbar,
.hero,
.sobre,
.servicos,
.galeria,
.avaliacoes,
.contacto,
footer,
.servico-card,
.review-card,
.score-badge,
.contacto-card,
.stat,
.btn {
  transition: background-color .35s ease,
              color .35s ease,
              border-color .35s ease,
              box-shadow .35s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--surface-pale);
  overflow-x: hidden;
  line-height: 1.65;
}

/* ---------- CONFETTI CANVAS ---------- */
#confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface-pale); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

/* ---------- UTILITIES ---------- */
.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  font-family: var(--ff-logo);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-inline: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 99px;
  font-family: var(--ff-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  border: 0;
}

.btn-primary {
  background: #E56DA3;
  color: var(--white);
  border: 0;
  box-shadow: 0 4px 18px rgba(229, 109, 163, 0.38);
}
.btn-primary:hover {
  background: #d45991;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(229, 109, 163, 0.50);
}

[data-theme="dark"] .btn-primary {
  background: #C0773E;
  color: var(--white);
  border: 0;
  box-shadow: 0 4px 18px rgba(192, 119, 62, 0.40);
}
[data-theme="dark"] .btn-primary:hover {
  background: #ab622b;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192, 119, 62, 0.60), 0 0 18px rgba(227, 183, 120, 0.35);
}

.btn-outline {
  background: hsla(255,100%,100%,.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: var(--white);
  color: #E56DA3;
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229, 109, 163, 0.35);
}
[data-theme="dark"] .btn-outline {
  border-color: rgba(227, 183, 120, 0.5);
}
[data-theme="dark"] .btn-outline:hover {
  background: var(--white);
  color: #C0773E;
  border-color: var(--white);
  box-shadow: 0 8px 24px rgba(192, 119, 62, 0.40);
}

.btn-outline-dark {
  background: transparent;
  color: var(--pink-dark);
  border: 2px solid var(--pink);
}
.btn-outline-dark:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}
[data-theme="dark"] .btn-outline-dark {
  color: var(--accent);
  border-color: var(--accent);
}
[data-theme="dark"] .btn-outline-dark:hover {
  background: var(--accent);
  color: var(--charcoal);
  box-shadow: 0 6px 18px rgba(192, 119, 62, 0.40);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: max(1.25rem, env(safe-area-inset-top)) 0 1.25rem;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: var(--navbar-scrolled-bg);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
  padding: max(.75rem, env(safe-area-inset-top)) 0 .75rem;
}

.nav-container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1rem,5vw,3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* ----- LOGO ----- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .45rem;
  text-decoration: none;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: .85; }

.logo-icon {
  font-size: 1.3rem;
  color: var(--accent);
  animation: spin-slow 8s linear infinite;
  display: inline-block;
  flex-shrink: 0;
}
.navbar.scrolled .logo-icon { color: var(--accent-dark); }

@keyframes spin-slow { to { transform: rotate(360deg); } }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-confetti-word {
  font-family: var(--ff-balloons);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--white);
  transition: color var(--transition);
}
.navbar.scrolled .logo-confetti-word { color: var(--accent-deep); }

.logo-store-word {
  font-family: var(--ff-balloons);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color var(--transition), letter-spacing var(--transition), font-size var(--transition);
  margin-top: 1px;
  padding-left: 1px;
  white-space: nowrap;
}
.logo-store-word.long-text {
  letter-spacing: .28em;
  font-size: .58rem;
}
.navbar.scrolled .logo-store-word { color: var(--text-muted); }

/* ----- NAV LINKS ----- */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a { color: var(--text); }
.navbar.scrolled .nav-links a:hover { color: var(--accent-dark); }

/* ----- MODE SWITCH (segmented pill com cores personalizadas) ----- */
.mode-switch {
  position: relative;
  display: flex;
  align-items: center;
  height: 38px;
  padding: 3px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-shrink: 0;
  gap: 0;
  transition: border-color var(--transition), background var(--transition);
}

.navbar.scrolled .mode-switch {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Indicador deslizante com as cores enviadas: Rosa (#E56DA3) e Caramelo (#C0773E) */
.mode-switch-indicator {
  position: absolute;
  top: 3px;
  bottom: 3px;
  border-radius: 99px;
  background: #E56DA3; /* Rosa vibrante Store */
  box-shadow: 0 2px 14px rgba(229, 109, 163, 0.55);
  transition: left .35s cubic-bezier(.4, 0, .2, 1),
              width .35s cubic-bezier(.4, 0, .2, 1),
              background .35s ease,
              box-shadow .35s ease;
  pointer-events: none;
  z-index: 0;
}

[data-theme="dark"] .mode-switch-indicator {
  background: #C0773E; /* Castanho/Caramelo Party Planner */
  box-shadow: 0 2px 14px rgba(192, 119, 62, 0.55);
}

.navbar.scrolled .mode-switch-indicator {
  background: #E56DA3;
  box-shadow: 0 2px 12px rgba(229, 109, 163, 0.40);
}

[data-theme="dark"] .navbar.scrolled .mode-switch-indicator {
  background: #C0773E;
  box-shadow: 0 2px 12px rgba(192, 119, 62, 0.40);
}

.mode-switch-option {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.15rem;
  height: 100%;
  border-radius: 99px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.70);
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  white-space: nowrap;
  transition: color .25s ease;
}

.mode-switch-option:hover {
  color: #FFFFFF;
}

.mode-switch-option[aria-pressed="true"] {
  color: #FFFFFF !important;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .mode-switch-option {
  color: rgba(45, 45, 45, 0.65);
}

.navbar.scrolled .mode-switch-option:hover {
  color: rgba(45, 45, 45, 0.95);
}

.navbar.scrolled .mode-switch-option[aria-pressed="true"] {
  color: #FFFFFF !important;
}

.mode-text-short {
  display: none;
}

button,
a,
.btn,
.mode-switch-option,
.cookie-btn,
.mobile-drawer-link,
.hamburger,
.legal-tab-btn,
.legal-modal-close,
.lightbox-close {
  touch-action: manipulation;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: #111714;
}

.hero-video-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}

.hero-video-col {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #1a241f;
}

.hero-video-col:nth-child(1) { background-image: url('images/loja-neon-inicio.jpg'); }
.hero-video-col:nth-child(2) { background-image: url('images/baloes-macro-detalhe.jpg'); }
.hero-video-col:nth-child(3) { background-image: url('images/servico-aluguer-pecas.jpg'); }
.hero-video-col:nth-child(4) { background-image: url('images/baloes-disco-50.jpg'); }

.hero-video-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.22) 0%,
    transparent 10%,
    transparent 90%,
    rgba(0, 0, 0, 0.22) 100%
  );
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  z-index: 2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
  transform: translateZ(0);
  /* Cores vibrantes com máxima fluidez e aceleração por hardware (sem blur pesado) */
  filter: brightness(0.94) contrast(1.04) saturate(1.22);
  display: block;
}

.hero-video.is-playing {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Camada mais luminosa para deixar as cores vivas dos vídeos brilharem */
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.10) 65%, transparent 100%),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.32) 0%,
      transparent 35%,
      transparent 65%,
      rgba(0, 0, 0, 0.45) 100%
    );
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-video-col:nth-child(3),
  .hero-video-col:nth-child(4) {
    display: none;
  }
}

@media (max-width: 500px) {
  .hero-video-grid {
    grid-template-columns: 1fr;
  }
  .hero-video-col:nth-child(2) {
    display: none;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-inline: clamp(1rem, 6vw, 4rem);
  padding-top: 50px;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Hero brand logo */
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: .75rem;
  opacity: 1;
}
.hero-brand-confetti {
  font-family: var(--ff-balloons);
  font-size: clamp(4.5rem, 11vw, 9rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: .08em;
  line-height: 1;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.65), 0 2px 8px rgba(0, 0, 0, 0.5);
}
.hero-brand-store {
  font-family: var(--ff-balloons);
  font-size: clamp(.8rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: .7em;
  padding-left: .7em;
  color: rgba(255, 255, 255, .92);
  text-transform: uppercase;
  margin-top: .15rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  transition: letter-spacing var(--transition), font-size var(--transition);
  white-space: nowrap;
}
.hero-brand-store.long-text {
  letter-spacing: .3em;
  padding-left: .3em;
  font-size: clamp(.7rem, 1.6vw, 1rem);
  white-space: nowrap;
}

.hero-tagline {
  font-size: clamp(.7rem, 1.3vw, .85rem);
  letter-spacing: .05em;
  color: rgba(255,255,255,.82);
  margin-top: .6rem;
  font-style: italic;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-eyebrow {
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
  opacity: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(1.2rem, 2.6vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .75rem;
  opacity: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 1px 5px rgba(0, 0, 0, 0.5);
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(.8rem, 1.5vw, .95rem);
  color: rgba(255,255,255,.90);
  margin-bottom: 1.5rem;
  letter-spacing: .03em;
  opacity: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 1;
}

@keyframes heroFloatIn {
  from {
    opacity: 0;
    transform: translateY(6px);
    filter: blur(1.5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Hero bottom curved transition */
.hero-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: clamp(32px, 5vw, 56px);
  z-index: 12;
  pointer-events: none;
}
.hero-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-divider path {
  fill: var(--surface-pale);
  transition: fill var(--transition);
}

/* ============================================================
   SOBRE NÓS
   ============================================================ */
.sobre {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background-color: var(--surface-pale);
  background-image:
    radial-gradient(ellipse 650px 480px at 0% 15%, hsla(333, 71%, 66%, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 550px 550px at 100% 85%, hsla(158, 40%, 65%, 0.12) 0%, transparent 70%),
    radial-gradient(circle 350px at 50% 50%, hsla(43, 100%, 70%, 0.06) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}
.sobre::before {
  content: 'CONFETTI';
  position: absolute;
  top: 50%; left: -2rem;
  transform: translateY(-50%);
  font-family: var(--ff-logo);
  font-size: 12rem;
  font-weight: 700;
  color: var(--watermark);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: .1em;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.sobre-images {
  position: relative;
  height: 520px;
}

.img-main {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.img-main img { width: 100%; height: 100%; object-fit: cover; }

.img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 48%;
  height: 48%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.img-accent img { width: 100%; height: 100%; object-fit: cover; }

.sobre-badge {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 110px;
  z-index: 5;
  text-decoration: none;
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
}
.sobre-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.badge-stars { color: var(--gold); font-size: 1rem; display: block; }
.badge-rating { font-size: 2rem; font-weight: 700; color: var(--charcoal); font-family: var(--ff-logo); line-height: 1.1; margin: .15rem 0; }
.badge-label  { font-size: .65rem; color: var(--text-muted); letter-spacing: .05em; display: block; }

.sobre-text { padding-left: 1rem; }

.sobre-desc {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.sobre-desc strong { color: var(--accent-deep); }

/* ============================================================
   SERVIÇOS
   ============================================================ */
.servicos {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background-color: var(--surface);
  background-image:
    radial-gradient(ellipse 700px 500px at 100% 10%, hsla(333, 71%, 66%, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 650px 500px at 0% 90%, hsla(158, 40%, 65%, 0.10) 0%, transparent 70%),
    radial-gradient(circle 400px at 50% 40%, hsla(43, 100%, 70%, 0.05) 0%, transparent 65%);
  position: relative;
  overflow: hidden;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  max-width: 1240px;
  margin: 0 auto;
}

.servico-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px hsla(158, 35%, 25%, .06);
  border: 1px solid var(--card-border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

/* Linha hairline luminosa no topo do card ao passar o rato */
.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--pink) 50%, var(--gold) 100%);
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: center;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
}

.servico-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 48px -12px hsla(158, 35%, 20%, .18),
              0 0 0 1px hsla(333, 71%, 66%, .35);
  border-color: transparent;
}

.servico-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

/* Envolvente da fotografia */
.servico-img-wrap {
  height: 275px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background-color: var(--surface-pale);
  border-bottom: 1px solid var(--card-border);
}

.servico-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.5s ease;
}

.servico-card:hover .servico-img-wrap img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.03);
}

/* Badge flutuante de vidro sobre a foto */
.servico-badge {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  z-index: 4;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  font-family: var(--ff-logo);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.03em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.35s ease,
              box-shadow 0.35s ease;
  pointer-events: none;
}

.servico-card:hover .servico-badge {
  transform: translateY(-2px) scale(1.04);
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

/* Efeito Sheen (raio de luz subtil a varrer a foto no hover) */
.servico-img-sheen {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.servico-card:hover .servico-img-sheen {
  transform: translateX(120%);
}

/* Corpo do Cartão */
.servico-body {
  padding: 2rem 1.85rem 1.85rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Metadados: Número estilizado + Linha divisória fina + Categoria */
.servico-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.servico-num {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
}

.servico-meta-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--card-border) 0%, transparent 100%);
}

.servico-category {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
}

.servico-body h3 {
  font-family: var(--ff-logo);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.servico-card:hover .servico-body h3 {
  color: var(--accent-deep);
}

.servico-body p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.85rem;
  flex: 1;
}

/* Botão interativo no rodapé do cartão */
.servico-footer {
  margin-top: auto;
}

.servico-btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1.15rem 0.75rem 1.35rem;
  border-radius: 99px;
  background: var(--surface-pale);
  border: 1px solid var(--card-border);
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.servico-btn-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.35s ease,
              color 0.35s ease;
}

.servico-card:hover .servico-btn-link,
.servico-btn-link:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

.servico-card:hover .servico-btn-circle,
.servico-btn-link:hover .servico-btn-circle {
  transform: translateX(4px);
  background: var(--accent);
  color: var(--charcoal);
}

[data-theme="dark"] .servico-badge {
  background: rgba(45, 32, 22, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
  color: #F3E2C0;
}

[data-theme="dark"] .servico-card:hover .servico-badge {
  background: #3D2B1D;
  color: #ffffff;
}

[data-theme="dark"] .servico-card:hover .servico-body h3 {
  color: var(--accent-dark);
}

[data-theme="dark"] .servico-card:hover {
  box-shadow: 0 22px 48px -12px hsla(28, 35%, 15%, .28),
              0 0 0 1px hsla(28, 65%, 65%, .40);
}

/* ============================================================
   GALERIA
   ============================================================ */
.galeria {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background-color: var(--surface-pale);
  background-image:
    radial-gradient(ellipse 650px 500px at 10% 20%, hsla(158, 40%, 65%, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 600px 500px at 90% 80%, hsla(333, 71%, 66%, 0.08) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 1rem;
}

.galeria-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.galeria-item .img-placeholder,
.galeria-item img,
.galeria-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.galeria-item:hover .img-placeholder,
.galeria-item:hover img,
.galeria-item:hover video { transform: scale(1.05); }

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

/* Badge de Reel Instagram */
.reel-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.3s ease, background 0.3s ease;
}
.reel-badge svg {
  flex-shrink: 0;
  fill: currentColor;
}
.galeria-item:hover .reel-badge {
  transform: scale(1.05);
  background: rgba(18, 18, 18, 0.88);
}

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: var(--galeria-ov);
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: var(--ff-logo);
  z-index: 5;
}
.galeria-item:hover .galeria-overlay { opacity: 1; }

.galeria-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   LIGHTBOX MODAL (FOTOS & REELS)
   ============================================================ */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 14, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-content {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: modalZoomIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalZoomIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 76vh;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  object-fit: contain;
  outline: none;
}
.lightbox-caption {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  font-weight: 500;
  font-family: var(--ff-body);
  text-align: center;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  z-index: 100000;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

/* ============================================================
   AVALIAÇÕES
   ============================================================ */
.avaliacoes {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background-color: var(--aval-g2);
  background-image:
    radial-gradient(ellipse 650px 450px at 85% 15%, hsla(333, 71%, 66%, 0.16) 0%, transparent 70%),
    radial-gradient(ellipse 550px 550px at 15% 85%, hsla(158, 45%, 65%, 0.14) 0%, transparent 70%),
    linear-gradient(135deg, var(--aval-g1) 0%, var(--aval-g2) 100%);
  position: relative;
  overflow: hidden;
}
.avaliacoes::before {
  content: '"';
  position: absolute;
  top: -4rem; left: 1rem;
  font-size: 22rem;
  color: var(--quote-color);
  font-family: var(--ff-head);
  line-height: 1;
  pointer-events: none;
}

.avaliacoes .section-eyebrow { color: var(--accent); }
.avaliacoes .section-title   { color: var(--white); }

.reviews-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1rem 0 3.5rem;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-track,
.avaliacoes-grid {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: reviewsMarquee 42s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .reviews-track:hover,
  .avaliacoes-grid:hover {
    animation-play-state: paused;
  }
}

.review-card {
  width: clamp(300px, 82vw, 380px);
  min-height: 250px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: hsla(255,100%,100%,.06);
  border: 1px solid hsla(255,100%,100%,.12);
  border-radius: var(--radius-md);
  padding: 2rem;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  cursor: default;
}
.review-card:hover {
  transform: translateY(-4px);
  background: hsla(255,100%,100%,.10);
  border-color: var(--review-hover-border);
}

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

.review-stars { color: var(--gold); font-size: 1.35rem; margin-bottom: 1rem; letter-spacing: .1em; text-shadow: 0 0 8px hsla(45,100%,60%,.5); }
.review-text {
  font-size: .95rem;
  line-height: 1.75;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: .85rem; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--ff-logo);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
img.review-avatar {
  object-fit: cover;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.review-name   { font-weight: 600; color: var(--white); font-size: .9rem; }
.review-source { font-size: .72rem; color: rgba(255,255,255,.45); }

.avaliacoes-score { display: flex; justify-content: center; }
.score-badge {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: hsla(255,100%,100%,.07);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--score-border);
  border-radius: 99px;
  padding: 1rem 2rem;
}
.score-num {
  font-family: var(--ff-logo);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.score-stars  { color: var(--gold); font-size: 1.4rem; letter-spacing: .1em; text-shadow: 0 0 10px hsla(45,100%,60%,.5); }
.score-label  { font-size: .75rem; color: rgba(255,255,255,.55); margin-top: .25rem; }

/* ============================================================
   CONTACTO
   ============================================================ */
.contacto {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background-color: var(--surface);
  background-image:
    radial-gradient(ellipse 700px 500px at 5% 20%, hsla(333, 71%, 66%, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 650px 500px at 95% 85%, hsla(158, 40%, 65%, 0.10) 0%, transparent 70%),
    radial-gradient(circle 350px at 50% 50%, hsla(43, 100%, 70%, 0.05) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

/* ── Skeleton loaders ── */
.skeleton-card { pointer-events: none; }
.skeleton-line {
  height: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg,
    hsla(255,100%,100%,.06) 25%,
    hsla(255,100%,100%,.14) 50%,
    hsla(255,100%,100%,.06) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  margin-bottom: 1rem;
}
.skeleton-line.short { width: 60%; }
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: stretch;
}

.contacto-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contacto-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contacto-card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.contacto-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.contacto-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-pale);
  border: 1px solid var(--card-border);
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.contacto-card:hover .contacto-card-icon {
  background: var(--accent);
  color: var(--charcoal);
  border-color: var(--accent);
}
.contacto-card-body {
  flex: 1;
  min-width: 0;
}
.contacto-card-title {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}
.contacto-card-text {
  font-family: var(--ff-body);
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: block;
}
.contacto-card-link {
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}
.contacto-card-link:hover {
  color: var(--pink-dark);
}
.contacto-tariff-note {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  opacity: 0.85;
  margin-top: 0.25rem;
  line-height: 1.35;
}
.contacto-phones-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.25rem;
}
.contacto-phone-row {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.contacto-phone-row .contacto-card-link {
  font-weight: 600;
  font-size: 1.02rem;
}
.contacto-phone-row .contacto-tariff-note {
  margin-top: 0;
  display: inline-block;
}
.contact-hours-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  flex-wrap: wrap;
}
.contact-hours-header .contacto-card-title {
  margin-bottom: 0;
}
.store-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 1px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  font-family: var(--ff-body);
  line-height: 1.45;
  transition: all 0.3s ease;
}
.store-status-badge.is-open {
  background: hsla(158, 60%, 45%, 0.12);
  color: #0d9668;
  border: 1px solid hsla(158, 60%, 45%, 0.28);
}
.store-status-badge.is-closed {
  background: hsla(350, 70%, 50%, 0.08);
  color: #d92d4f;
  border: 1px solid hsla(350, 70%, 50%, 0.22);
}
.store-status-badge.is-planner {
  background: hsla(37, 72%, 68%, 0.14);
  color: var(--charcoal);
  border: 1px solid hsla(37, 72%, 68%, 0.3);
}
.store-status-badge .status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.store-status-badge.is-open .status-dot {
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: statusPulse 2s infinite;
}
.store-status-badge.is-closed .status-dot {
  background: #d92d4f;
  box-shadow: 0 0 4px rgba(217, 45, 79, 0.4);
}
.store-status-badge.is-planner .status-dot {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

[data-theme="dark"] .store-status-badge.is-open {
  background: hsla(158, 60%, 45%, 0.22);
  color: #34d399;
  border-color: hsla(158, 60%, 45%, 0.45);
}
[data-theme="dark"] .store-status-badge.is-closed {
  background: hsla(350, 70%, 50%, 0.2);
  color: #fb7185;
  border-color: hsla(350, 70%, 50%, 0.4);
}
.contacto-list span,
.contacto-list a { font-size: 1.05rem; color: var(--text); line-height: 1.6; text-decoration: none; }
.contacto-list a:hover { color: var(--pink-dark); }
[data-theme="dark"] .contacto-list a:hover { color: var(--accent); }

.contacto-social {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-top: 0.5rem;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--charcoal);
  border: 2px solid var(--card-border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  position: relative;
}
.social-btn svg {
  display: block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.social-btn:hover {
  transform: translateY(-4px);
}
.social-btn:hover svg {
  transform: scale(1.12);
}
.social-btn:active {
  transform: translateY(-1px) scale(0.96);
}

/* Cores de Marca Específicas nos Hovers */
.social-btn#social-instagram:hover,
.footer-social-btn#footer-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 28px rgba(214, 36, 159, 0.45);
  filter: none;
}
.social-btn#social-facebook:hover,
.footer-social-btn#footer-facebook:hover {
  background: #1877F2;
  color: #ffffff;
  border-color: transparent;
  filter: drop-shadow(0 8px 20px rgba(24, 119, 242, 0.55));
}
.social-btn#social-whatsapp:hover,
.footer-social-btn#footer-whatsapp:hover {
  background: #25D366;
  color: #ffffff;
  border-color: transparent;
  filter: drop-shadow(0 8px 20px rgba(37, 211, 102, 0.55));
}

[data-theme="dark"] .social-btn {
  background: rgba(255, 255, 255, 0.88);
  color: var(--charcoal);
  border: 1.5px solid rgba(138, 112, 90, 0.3);
  filter: drop-shadow(0 4px 10px hsla(28, 35%, 25%, 0.15));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.contacto-map {
  position: relative;
  background: var(--surface);
  border: 3px solid var(--accent);
  border-radius: calc(var(--radius-lg) + 6px);
  padding: 7px;
  box-shadow: var(--shadow-md), 0 0 0 5px var(--surface-pale);
  min-height: 440px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contacto-map:hover {
  border-color: var(--accent-dark);
  box-shadow: var(--shadow-lg), 0 0 0 7px var(--surface-pale);
}
.map-frame-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1;
  min-height: 426px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #e5e3df;
}
[data-theme="dark"] .map-frame-wrapper {
  background: #241a12;
}
.map-frame-wrapper iframe {
  position: absolute;
  top: -210px;
  left: 0;
  width: 100%;
  height: calc(100% + 210px);
  display: block;
  border: 0;
}

/* Badge / Cartão Personalizado sobre o Mapa */
.map-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.15rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 320px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.map-card-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}
[data-theme="dark"] .map-card-badge {
  background: rgba(36, 26, 18, 0.96);
  border-color: rgba(227, 183, 120, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.map-card-badge-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.map-card-badge-tag {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}
.map-card-badge-sparkle {
  color: var(--accent-deep);
  margin-right: 0.25rem;
}
[data-theme="dark"] .map-card-badge-tag {
  color: #ffffff;
}
[data-theme="dark"] .map-card-badge-sparkle {
  color: var(--accent);
}
.map-card-badge-stars {
  font-size: 0.76rem;
  font-weight: 700;
  color: #f59e0b;
  background: hsla(38, 92%, 50%, 0.14);
  border: 1px solid hsla(38, 92%, 50%, 0.25);
  padding: 2px 7px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
}
.map-card-badge-addr {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.45;
  margin: 0;
}
[data-theme="dark"] .map-card-badge-addr {
  color: rgba(255, 255, 255, 0.82);
}
.map-card-btn {
  margin-top: 0.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.52rem 1.05rem;
  border-radius: 99px;
  background: var(--accent);
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.map-card-btn-arrow {
  display: inline-block;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform var(--transition);
}
.map-card-btn:hover {
  background: var(--accent-dark);
  color: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px hsla(158, 40%, 30%, 0.25);
}
.map-card-btn:hover .map-card-btn-arrow {
  transform: translateX(3px);
}
[data-theme="dark"] .map-card-btn:hover {
  box-shadow: 0 4px 12px hsla(28, 45%, 20%, 0.35);
}

@media (max-width: 640px) {
  .contacto-map {
    min-height: 420px;
  }
  .map-frame-wrapper {
    min-height: 400px;
  }
  .map-card-badge {
    top: 14px;
    left: 14px;
    right: 14px;
    max-width: none;
    padding: 0.8rem 1rem;
  }
}

/* ============================================================
   FOOTER (Bombado & Clean)
   ============================================================ */
.footer {
  background: var(--footer-bg);
  position: relative;
  padding: clamp(4.5rem, 8vw, 6.5rem) 0 2.25rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1100px;
  height: 1px;
  background: radial-gradient(ellipse at center, var(--accent) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1.05fr 1.15fr;
  gap: clamp(2rem, 3.5vw, 4rem);
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

/* Coluna 1: Marca */
.footer-brand-header {
  margin-bottom: 1.25rem;
}
.footer-brand-logo {
  font-family: var(--ff-balloons);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  color: var(--accent);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  line-height: 1.2;
}
.footer-brand-logo span {
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}
.footer-brand-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* Status pill com pulso suave */
.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
}
.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: statusPulse 2.5s infinite;
}
@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.85); }
}
.footer-status-pill.is-open .status-indicator {
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}
.footer-status-pill.is-closed .status-indicator {
  background: #e11d48;
  box-shadow: 0 0 8px rgba(225, 29, 72, 0.4);
  animation: none;
}
.footer-status-pill.is-planner .status-indicator {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

/* Redes Sociais no Rodapé */
.footer-social-bar {
  display: flex;
  gap: 0.75rem;
}
.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  will-change: transform;
}
.footer-social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--charcoal);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* Títulos das Colunas */
.footer-heading {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.4rem;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.6rem;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Listas de Navegação e Especialidades */
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-nav-list li {
  font-size: 0.86rem;
  line-height: 1.5;
}
.footer-nav-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}
.footer-nav-list a:hover {
  color: var(--accent);
  transform: translateX(4px);
}
.footer-nav-list span {
  color: rgba(255, 255, 255, 0.75);
  display: inline-block;
}

/* Bloco de Contacto no Rodapé */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.footer-ci-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.footer-ci-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-ci-icon svg {
  display: block;
}
.footer-ci-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer-ci-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}
.footer-ci-val {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}
.footer-ci-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.footer-ci-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.footer-ci-tariff {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.35;
  margin-top: 0.2rem;
}
.footer-phones-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.25rem;
}
.footer-phone-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-phone-row .footer-ci-link {
  font-weight: 600;
  font-size: 0.94rem;
}
.footer-phone-row .footer-ci-tariff {
  margin-top: 0;
  display: inline-block;
}

/* Rodapé Inferior Clean */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.footer-bottom-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer-bottom-copy p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-tagline-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
  font-style: italic;
}
.footer-bottom-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem 1.75rem;
  flex-wrap: wrap;
}
.footer-bottom-link {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}
button.footer-bottom-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  display: inline;
}
.footer-bottom-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
}
.footer-back-to-top:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.footer-back-to-top svg {
  transition: transform 0.25s ease;
}
.footer-back-to-top:hover svg {
  transform: translateY(-2px);
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main   { grid-template-columns: 1.2fr 1fr; gap: 2.5rem; }
}

@media (max-width: 860px) {
  .sobre-grid, .contacto-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-images {
    height: clamp(340px, 68vw, 440px);
    margin-right: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .img-accent {
    right: -1.25rem;
    bottom: -1.75rem;
    width: 48%;
    height: 48%;
    border-width: 4px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 2;
  }
  .sobre-badge {
    display: block !important;
    position: absolute;
    top: 1.75rem;
    right: -1.25rem;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 0.9rem 1.15rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    min-width: 105px;
    z-index: 5;
  }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .galeria-item--tall { grid-row: span 1; }
  .galeria-item--wide { grid-column: span 2; }
  .contacto-map { min-height: 300px; }
}

/* ============================================================
   TABLET & MOBILE NAVIGATION (DRAWER OVERLAY)
   ============================================================ */
.mobile-drawer {
  display: none;
}

@media (max-width: 960px) {
  .nav-links {
    display: none !important;
  }

  .hamburger {
    display: flex;
    z-index: 860;
  }

  .mobile-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.35s ease;
  }

  .mobile-drawer.open {
    pointer-events: auto;
    visibility: visible;
  }

  .mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 10, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .mobile-drawer.open .mobile-drawer-backdrop {
    opacity: 1;
  }

  .mobile-drawer-content {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 10% 12%, rgba(168, 213, 186, 0.15) 0%, transparent 55%),
      radial-gradient(circle at 90% 88%, rgba(212, 163, 115, 0.12) 0%, transparent 60%),
      rgba(15, 23, 18, 0.97);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    display: flex;
    flex-direction: column;
    padding: max(1.15rem, env(safe-area-inset-top)) 1.25rem max(1.35rem, env(safe-area-inset-bottom)) 1.25rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-8px) scale(0.98);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  }

  .mobile-drawer.open .mobile-drawer-content {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  /* Dark mode (Party Planner) */
  [data-theme="dark"] .mobile-drawer-content {
    background:
      radial-gradient(circle at 10% 12%, rgba(212, 163, 115, 0.2) 0%, transparent 55%),
      radial-gradient(circle at 90% 88%, rgba(192, 119, 62, 0.15) 0%, transparent 60%),
      rgba(25, 18, 14, 0.98);
  }

  /* Header */
  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-drawer-brand {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
  }

  .mobile-drawer-brand .logo-icon {
    font-size: 1.15rem;
    color: var(--accent);
  }

  .mobile-drawer-brand .logo-confetti-word {
    font-family: var(--ff-balloons);
    font-size: 1.7rem;
    letter-spacing: 0.05em;
    color: #ffffff;
  }

  .mobile-drawer-brand .logo-store-word {
    font-family: var(--ff-balloons);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    margin-left: 0.35rem;
    text-transform: uppercase;
  }

  .mobile-drawer-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .mobile-drawer-close:active {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(0.92);
  }

  /* Nav Links - Letra Balloons + Subtítulo Elegante */
  .mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.85rem 0;
    margin: auto 0;
    flex: 1;
  }

  .mobile-drawer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }

  .mobile-drawer.open .mobile-drawer-list li {
    opacity: 0;
    animation: drawerItemFade 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .mobile-drawer.open .mobile-drawer-list li:nth-child(1) { animation-delay: 0.05s; }
  .mobile-drawer.open .mobile-drawer-list li:nth-child(2) { animation-delay: 0.09s; }
  .mobile-drawer.open .mobile-drawer-list li:nth-child(3) { animation-delay: 0.13s; }
  .mobile-drawer.open .mobile-drawer-list li:nth-child(4) { animation-delay: 0.17s; }
  .mobile-drawer.open .mobile-drawer-list li:nth-child(5) { animation-delay: 0.21s; }

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

  .mobile-drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.95rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }

  .mobile-drawer-link:hover,
  .mobile-drawer-link:active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateX(4px);
  }

  .mobile-link-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mobile-link-title {
    font-family: var(--ff-balloons);
    font-size: 1.45rem;
    letter-spacing: 0.04em;
    color: #ffffff;
    line-height: 1.15;
    transition: color 0.2s ease;
  }

  .mobile-drawer-link:hover .mobile-link-title,
  .mobile-drawer-link:active .mobile-link-title {
    color: var(--accent);
  }

  .mobile-link-desc {
    font-family: var(--ff-sans);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 400;
  }

  .mobile-link-arrow {
    font-size: 1.35rem;
    color: var(--accent);
    opacity: 0.6;
    transition: transform 0.2s ease, opacity 0.2s ease;
    padding-left: 0.5rem;
  }

  .mobile-drawer-link:hover .mobile-link-arrow,
  .mobile-drawer-link:active .mobile-link-arrow {
    opacity: 1;
    transform: translateX(3px);
  }

  /* Rodapé do Menu Mobile: Telefones, Morada, Redes */
  .mobile-drawer-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    padding-top: 1rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-drawer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
  }

  .mobile-drawer-phones {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--ff-sans);
    font-size: 0.92rem;
    font-weight: 600;
  }

  .mobile-phone-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .mobile-phone-link:hover,
  .mobile-phone-link:active {
    color: var(--accent);
  }

  .mobile-sep {
    color: rgba(255, 255, 255, 0.35);
  }

  .mobile-drawer-addr {
    font-family: var(--ff-sans);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 320px;
    line-height: 1.35;
    text-align: center;
  }

  .mobile-drawer-socials {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.15rem;
  }

  .mobile-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
  }

  .mobile-social-icon:active {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(0.92);
    color: #ffffff;
  }
}

/* ============================================================
   MOBILE LAYOUT ADJUSTMENTS (<= 640px)
   ============================================================ */
@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
    padding-top: 75px;
    padding-bottom: 40px;
  }
  .hero-content {
    padding-top: 15px;
    padding-inline: 1rem;
  }
  .hero-brand-confetti {
    font-size: clamp(2.85rem, 14vw, 5.8rem);
  }
  .hero-title {
    font-size: clamp(1.2rem, 5.2vw, 1.75rem);
    line-height: 1.25;
  }
  .hero-sub {
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 300px;
    gap: 0.75rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.85rem 1.25rem;
  }

  .servicos-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .servico-card { max-width: 440px; margin-inline: auto; width: 100%; }

  .galeria-grid { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
  .galeria-item--tall { grid-row: span 1; }
  .galeria-item--wide { grid-column: span 2; }

  /* Avaliações Marquee no telemóvel: suave, legível e proporcional */
  .reviews-marquee-wrapper {
    padding: 0.5rem 0 2.25rem;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  }
  .reviews-track {
    gap: 1rem;
  }
  .review-card {
    width: clamp(260px, 78vw, 310px);
    min-height: 205px;
    padding: 1.25rem 1.35rem;
  }
  .review-stars {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
  }
  .review-text {
    font-size: 0.86rem;
    line-height: 1.55;
    margin-bottom: 1rem;
  }
  .review-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .review-name {
    font-size: 0.85rem;
  }
  .score-badge {
    padding: 0.75rem 1.25rem;
    gap: 0.85rem;
  }
  .score-num {
    font-size: 2.2rem;
  }

  .contacto-card { padding: 1rem 1.15rem; gap: 0.9rem; }
  .contacto-card-icon { width: 40px; height: 40px; }

  .footer-main   { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .footer-bottom-actions {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    align-items: center;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 0.85rem;
  }
  .logo-confetti-word {
    font-size: 1.55rem;
  }
  .logo-store-word {
    font-size: 0.72rem;
  }
  .logo-store-word.long-text {
    font-size: 0.52rem;
  }
  .mode-switch {
    height: 32px;
    padding: 2px;
  }
  .mode-switch-option {
    padding: 0 0.6rem;
    font-size: 0.72rem;
  }
  .mode-switch-indicator {
    top: 2px;
    bottom: 2px;
  }
  .hamburger {
    width: 36px;
    height: 36px;
    padding: 6px;
  }

  .sobre-images {
    height: clamp(300px, 72vw, 360px);
    margin-right: 1.15rem;
    margin-bottom: 2.25rem;
  }
  .img-accent {
    right: -0.85rem;
    bottom: -1.35rem;
    width: 46%;
    height: 46%;
    border-width: 3px;
  }
  .sobre-badge {
    top: 1.25rem;
    right: -0.85rem;
    padding: 0.75rem 0.95rem;
    min-width: 95px;
  }
  .badge-rating {
    font-size: 1.75rem;
  }

  .galeria-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(230px, 58vw, 320px);
    gap: 0.85rem;
  }
  .galeria-item--wide {
    grid-column: span 1;
  }
  .galeria-item {
    height: 100%;
    min-height: 220px;
  }
}

@media (max-width: 440px) {
  .mode-text-full {
    display: none;
  }
  .mode-text-short {
    display: inline;
  }
}

@media (max-width: 360px) {
  .nav-container {
    padding: 0 0.5rem;
    gap: 0.4rem;
  }
  .logo-confetti-word {
    font-size: 1.35rem;
  }
  .logo-store-word {
    font-size: 0.65rem;
  }
  .mode-switch-option {
    padding: 0 0.45rem;
    font-size: 0.68rem;
  }
  .hamburger {
    width: 32px;
    height: 32px;
    padding: 4px;
  }
  .hero-brand-confetti {
    font-size: 2.5rem;
  }
}

/* ============================================================
   AMBIENT BACKGROUND EFFECTS & FLOATING CONFETTI
   ============================================================ */
.section-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.decor-item {
  position: absolute;
  pointer-events: none;
  opacity: 0.22;
  transition: opacity var(--transition);
  will-change: transform;
}

.decor-sparkle {
  color: var(--pink);
  line-height: 1;
  user-select: none;
}

.decor-dot {
  border-radius: 50%;
  background: var(--gold);
}

.decor-pill {
  border-radius: 99px;
  background: var(--accent);
}

.decor-ribbon {
  color: var(--pink);
}

/* Specific decor item placement - Calmer & slower floats */
.decor-p1 { top: 8%; left: 3%; font-size: 1.6rem; color: var(--pink); animation: floatSlow 14s ease-in-out infinite; }
.decor-p2 { top: 20%; right: 3%; width: 10px; height: 10px; background: var(--gold); animation: floatReverse 13s ease-in-out infinite; }
.decor-p3 { bottom: 18%; left: 4%; width: 18px; height: 8px; transform: rotate(25deg); background: var(--accent); animation: floatSlow 16s ease-in-out infinite; }
.decor-p4 { top: 48%; right: 2%; width: 30px; height: 30px; color: var(--pink); animation: floatReverse 17s ease-in-out infinite; }
.decor-p5 { bottom: 8%; right: 5%; font-size: 1.3rem; color: var(--accent); animation: floatSlow 15s ease-in-out infinite 1s; }

.decor-s1 { top: 6%; right: 5%; font-size: 1.5rem; color: var(--accent); animation: floatSlow 15s ease-in-out infinite; }
.decor-s2 { top: 22%; left: 3%; width: 11px; height: 11px; background: var(--pink); animation: floatReverse 14s ease-in-out infinite; }
.decor-s3 { bottom: 12%; right: 3%; width: 30px; height: 30px; color: var(--gold); animation: floatSlow 17s ease-in-out infinite; }
.decor-s4 { bottom: 20%; left: 4%; width: 20px; height: 8px; transform: rotate(-20deg); background: var(--accent); animation: floatReverse 15s ease-in-out infinite; }
.decor-s5 { top: 52%; left: 2%; font-size: 1.2rem; color: var(--pink); animation: floatSlow 13s ease-in-out infinite; }

.decor-g1 { top: 8%; left: 4%; width: 11px; height: 11px; background: var(--gold); animation: floatSlow 14s ease-in-out infinite; }
.decor-g2 { top: 26%; right: 3%; font-size: 1.5rem; color: var(--pink); animation: floatReverse 16s ease-in-out infinite; }
.decor-g3 { bottom: 14%; left: 3%; width: 18px; height: 7px; transform: rotate(35deg); background: var(--accent); animation: floatSlow 17s ease-in-out infinite; }
.decor-g4 { bottom: 22%; right: 4%; font-size: 1.3rem; color: var(--gold); animation: floatReverse 14s ease-in-out infinite; }

.decor-c1 { top: 10%; right: 4%; font-size: 1.5rem; color: var(--pink); animation: floatSlow 15s ease-in-out infinite; }
.decor-c2 { top: 35%; left: 3%; width: 11px; height: 11px; background: var(--gold); animation: floatReverse 13s ease-in-out infinite; }
.decor-c3 { bottom: 18%; right: 3%; width: 30px; height: 30px; color: var(--accent); animation: floatSlow 16s ease-in-out infinite; }
.decor-c4 { bottom: 12%; left: 4%; width: 18px; height: 8px; transform: rotate(-15deg); background: var(--pink); animation: floatReverse 15s ease-in-out infinite; }

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-7px) rotate(4deg); }
}

@keyframes floatReverse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(6px) rotate(-5deg); }
}

/* Dark mode / Party Planner mode ambient background overrides */
[data-theme="dark"] .sobre {
  background-image:
    radial-gradient(ellipse 650px 480px at 0% 15%, hsla(25, 52%, 50%, 0.14) 0%, transparent 70%),
    radial-gradient(ellipse 550px 550px at 100% 85%, hsla(37, 72%, 68%, 0.15) 0%, transparent 70%),
    radial-gradient(circle 350px at 50% 50%, hsla(20, 80%, 70%, 0.07) 0%, transparent 60%);
}

[data-theme="dark"] .servicos {
  background-image:
    radial-gradient(ellipse 700px 500px at 100% 10%, hsla(25, 52%, 50%, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 650px 500px at 0% 90%, hsla(37, 72%, 68%, 0.15) 0%, transparent 70%),
    radial-gradient(circle 400px at 50% 40%, hsla(20, 80%, 70%, 0.07) 0%, transparent 65%);
}

[data-theme="dark"] .galeria {
  background-image:
    radial-gradient(ellipse 650px 500px at 10% 20%, hsla(37, 72%, 68%, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 600px 500px at 90% 80%, hsla(25, 52%, 50%, 0.12) 0%, transparent 70%);
}

[data-theme="dark"] .contacto {
  background-image:
    radial-gradient(ellipse 700px 500px at 5% 20%, hsla(25, 52%, 50%, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 650px 500px at 95% 85%, hsla(37, 72%, 68%, 0.15) 0%, transparent 70%);
}

/* ===================================================
   BANNER DE CONSENTIMENTO DE COOKIES (LATERAL COMPACTO)
   =================================================== */
.cookie-banner {
  position: fixed;
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  left: 1.5rem;
  right: auto;
  transform: translateY(140%);
  z-index: 9990;
  width: calc(100% - 3rem);
  max-width: 400px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-banner-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.15rem 1.25rem;
}

.cookie-banner-main {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cookie-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--dark);
}

.cookie-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.cookie-banner-text {
  font-size: 0.79rem;
  color: var(--dark-light);
  line-height: 1.5;
  margin: 0;
}

.cookie-inline-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.cookie-inline-link:hover {
  opacity: 0.8;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  width: 100%;
}

.cookie-btn {
  padding: 0.52rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  font-family: inherit;
}

.cookie-btn--primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cookie-btn--primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

.cookie-btn--subtle {
  background: rgba(0, 0, 0, 0.05);
  color: var(--dark);
  border-color: rgba(0, 0, 0, 0.08);
}

.cookie-btn--subtle:hover {
  background: rgba(0, 0, 0, 0.09);
}

/* Dark mode banner */
[data-theme="dark"] .cookie-banner {
  background: rgba(28, 22, 18, 0.95);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .cookie-badge-title {
  color: #fdfaf6;
}

[data-theme="dark"] .cookie-banner-text {
  color: rgba(255, 255, 255, 0.75);
}

[data-theme="dark"] .cookie-btn--subtle {
  background: rgba(255, 255, 255, 0.08);
  color: #fdfaf6;
  border-color: rgba(255, 255, 255, 0.14);
}

[data-theme="dark"] .cookie-btn--subtle:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* Responsive Cookie Banner */
@media (max-width: 480px) {
  .cookie-banner {
    left: 0.85rem;
    right: 0.85rem;
    bottom: max(0.85rem, env(safe-area-inset-bottom));
    width: calc(100% - 1.7rem);
    max-width: none;
    border-radius: 18px;
  }
  .cookie-banner-actions {
    display: flex;
    gap: 0.5rem;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* ===================================================
   MODAL DE POLÍTICAS LEGAIS (RGPD / COOKIES / RAL)
   =================================================== */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 10010;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.legal-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 11, 9, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.legal-modal-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transform: scale(0.96) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-modal.is-open .legal-modal-card {
  transform: scale(1) translateY(0);
}

.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: #faf8f5;
  gap: 1rem;
}

.legal-modal-tabs {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.legal-modal-tabs::-webkit-scrollbar {
  display: none;
}

.legal-tab-btn {
  padding: 0.48rem 1rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: #6b625b;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}

.legal-tab-btn:hover {
  color: var(--accent);
  background: rgba(0, 0, 0, 0.04);
}

.legal-tab-btn.active {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.legal-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  color: #333333;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.legal-modal-close:hover {
  background: rgba(0, 0, 0, 0.12);
  transform: rotate(90deg);
}

.legal-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.75rem 2rem;
  scroll-behavior: smooth;
}

.legal-panel {
  display: none;
}

.legal-panel.active {
  display: block;
  animation: legalFadeIn 0.28s ease;
}

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

.legal-panel-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(0, 0, 0, 0.04);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.legal-title {
  font-family: var(--font-playfair, serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e1814;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.legal-lead {
  font-size: 0.94rem;
  color: #5a5048;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.legal-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #221c17;
  margin-bottom: 0.45rem;
}

.legal-section p {
  font-size: 0.88rem;
  color: #4a433d;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.legal-section ul {
  padding-left: 1.35rem;
  font-size: 0.88rem;
  color: #4a433d;
  line-height: 1.65;
  margin-top: 0.4rem;
}

.legal-section li {
  margin-bottom: 0.4rem;
}

.legal-section a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  text-align: left;
}

.legal-table th {
  background: #faf8f5;
  padding: 0.7rem 0.9rem;
  font-weight: 700;
  color: #333333;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.legal-table td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: #4a433d;
  line-height: 1.45;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-table code {
  background: rgba(0, 0, 0, 0.05);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-family: monospace;
  color: var(--accent);
  font-weight: 600;
}

.legal-entity-card {
  background: #faf8f5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
  margin-top: 0.85rem;
}

.legal-entity-title {
  font-weight: 700;
  font-size: 0.94rem;
  color: #1e1814;
  margin-bottom: 0.3rem !important;
}

.legal-entity-desc {
  font-size: 0.82rem;
  color: #6b625b;
  margin-bottom: 0.65rem !important;
}

.legal-entity-contacts {
  list-style: none !important;
  padding-left: 0 !important;
  font-size: 0.82rem !important;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.legal-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  background: #faf8f5;
  gap: 1rem;
}

.legal-modal-note {
  font-size: 0.78rem;
  color: #7a7067;
}

.legal-modal-btn {
  padding: 0.55rem 1.4rem;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.legal-modal-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* Dark mode overrides for Legal Modal */
[data-theme="dark"] .legal-modal-card {
  background: #221c17;
  border-color: rgba(255, 255, 255, 0.1);
  color: #fdfaf6;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

[data-theme="dark"] .legal-modal-header,
[data-theme="dark"] .legal-modal-footer {
  background: #1b1511;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .legal-title {
  color: #fdfaf6;
}

[data-theme="dark"] .legal-lead {
  color: rgba(255, 255, 255, 0.75);
}

[data-theme="dark"] .legal-section {
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .legal-section h4 {
  color: #fdfaf6;
}

[data-theme="dark"] .legal-section p,
[data-theme="dark"] .legal-section ul,
[data-theme="dark"] .legal-section li {
  color: rgba(255, 255, 255, 0.72);
}

[data-theme="dark"] .legal-panel-badge {
  background: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .legal-tab-btn {
  color: rgba(255, 255, 255, 0.65);
}

[data-theme="dark"] .legal-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .legal-tab-btn.active {
  color: #ffffff;
  background: var(--accent);
}

[data-theme="dark"] .legal-modal-close {
  background: rgba(255, 255, 255, 0.08);
  color: #fdfaf6;
}

[data-theme="dark"] .legal-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .legal-table-wrap,
[data-theme="dark"] .legal-table th,
[data-theme="dark"] .legal-table td {
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .legal-table th {
  background: #1b1511;
  color: #fdfaf6;
}

[data-theme="dark"] .legal-table td {
  color: rgba(255, 255, 255, 0.72);
}

[data-theme="dark"] .legal-table code {
  background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .legal-entity-card {
  background: #1b1511;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .legal-entity-title {
  color: #fdfaf6;
}

[data-theme="dark"] .legal-entity-desc {
  color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .legal-modal-note {
  color: rgba(255, 255, 255, 0.45);
}

/* Responsive Modal */
@media (max-width: 680px) {
  .legal-modal {
    padding: 0.75rem;
  }
  .legal-modal-card {
    max-height: 92vh;
    border-radius: 18px;
  }
  .legal-modal-header {
    padding: 0.9rem 1.1rem;
  }
  .legal-modal-body {
    padding: 1.25rem 1.15rem;
  }
  .legal-title {
    font-size: 1.35rem;
  }
  .legal-modal-footer {
    padding: 0.85rem 1.15rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .legal-modal-btn {
    width: 100%;
    text-align: center;
  }
}


