/* ══════════════════════════════════════════════════════════
   LINDA CATARINA — STYLE.CSS
   Paleta: Bordô #942B57 | Amarelo #DE9829 | Roxo #502F4A
   Fonte: Nunito (única, Google Fonts)
   Grid: Bootstrap 5 + extensão 16 colunas customizadas
══════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --bordo:         #942B57;
  --bordo-d:       #6e1f40;
  --bordo-l:       #c0406e;
  --amarelo:       #DE9829;
  --amarelo-d:     #b87a18;
  --amarelo-l:     #f5c655;
  --roxo:          #502F4A;
  --roxo-d:        #321c2d;
  --roxo-l:        #7a5070;
  --branco:        #ffffff;
  --off:           #faf7f8;
  --cinza-1:       #f3eef1;
  --cinza-2:       #e8dfe5;
  --texto:         #3d2636;
  --texto-light:   #7a5e70;

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-pill: 999px;

  --sh-sm: 0 2px 14px rgba(80,47,74,.10);
  --sh-md: 0 6px 32px rgba(80,47,74,.14);
  --sh-lg: 0 16px 56px rgba(80,47,74,.18);

  --ease: cubic-bezier(.4,0,.2,1);
  --dur: .28s;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--texto);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
em { font-style: italic; color: var(--bordo); font-weight: 800; }
[id] { scroll-margin-top: 78px; }

/* ── GRID 16 COLUNAS ─────────────────────────────────────── */
.container-xxl { max-width: 1360px; }

.g16 {
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  gap: 1.5rem;
}
.g16-4  { grid-column: span 4; }
.g16-5  { grid-column: span 5; }
.g16-6  { grid-column: span 6; }
.g16-8  { grid-column: span 8; }
.g16-10 { grid-column: span 10; }
.g16-11 { grid-column: span 11; }
.g16-16 { grid-column: span 16; }

@media (max-width: 991.98px) {
  .g16 { grid-template-columns: repeat(8, 1fr); }
  .g16-4, .g16-5, .g16-6, .g16-8, .g16-10, .g16-11 { grid-column: span 8; }
}
@media (max-width: 575.98px) {
  .g16 { grid-template-columns: repeat(4, 1fr); }
  [class*="g16-"] { grid-column: span 4; }
}

/* ── SEÇÃO BASE ──────────────────────────────────────────── */
.sec { padding: 6rem 0; }
@media (max-width: 767.98px) { .sec { padding: 4rem 0; } }

.bg-offwhite { background: var(--off); }
.bg-roxo-deep { background: linear-gradient(160deg, var(--roxo-d) 0%, var(--roxo) 100%); }

/* Labels e títulos de seção */
.sec-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amarelo);
  background: rgba(222,152,41,.12);
  border: 1px solid rgba(222,152,41,.28);
  padding: .25rem .85rem;
  border-radius: var(--r-pill);
  margin-bottom: 1rem;
}
.sec-label.light {
  color: var(--amarelo-l);
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}

.sec-heading {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--roxo);
  margin-bottom: .8rem;
}
.sec-heading.light { color: #fff; }

.sec-text {
  font-size: 1rem;
  color: var(--texto-light);
  max-width: 520px;
  margin-bottom: 1.1rem;
}
.sec-text.light { color: rgba(255,255,255,.72); }

/* ── BOTÃO PRINCIPAL ─────────────────────────────────────── */
.btn-bordo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--bordo);
  color: var(--branco);
  font-family: 'Nunito', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  padding: .7rem 1.75rem;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: background var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn-bordo:hover {
  background: var(--bordo-l);
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(148,43,87,.38);
}

/* ── TOPBAR ──────────────────────────────────────────────── */
.topbar {
  background: var(--roxo-d);
  color: rgba(255,255,255,.78);
  font-size: .75rem;
  font-weight: 500;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(222,152,41,.2);
}
.tb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .4rem;
}
.tb-left  { display: flex; align-items: center; flex-wrap: wrap; gap: .45rem; }
.tb-right { display: flex; align-items: center; gap: .6rem; }
.tb-item  { display: flex; align-items: center; gap: .3rem; }
.tb-sep   { opacity: .3; }

.tb-soc {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.tb-soc:hover { background: var(--bordo); color: #fff; border-color: var(--bordo); }

.tb-vip {
  font-size: .72rem;
  font-weight: 800;
  color: var(--roxo-d);
  background: linear-gradient(135deg, var(--amarelo-l), var(--amarelo));
  padding: .22rem .75rem;
  border-radius: var(--r-pill);
  letter-spacing: .04em;
  transition: opacity var(--dur);
}
.tb-vip:hover { opacity: .85; color: var(--roxo-d); }

@media (max-width: 767.98px) {
  .tb-right { display: none; }
}

/* ── NAVBAR ──────────────────────────────────────────────── */
.lc-nav {
  background: var(--branco);
  border-bottom: 2px solid var(--bordo);
  padding: .65rem 0;
  z-index: 1030;
  transition: box-shadow var(--dur) var(--ease);
}
.lc-nav.scrolled { box-shadow: 0 4px 32px rgba(80,47,74,.12); }

/* Logotipo tipográfico */
.lc-brand {
  display: flex;
  align-items: baseline;
  gap: .18rem;
  line-height: 1;
  padding: 0;
}
.brand-lc {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--bordo);
  letter-spacing: -.02em;
}
.brand-cat {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--roxo);
  font-style: italic;
  letter-spacing: .01em;
}

/* Links nav */
.lc-nav .navbar-nav .nav-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--roxo);
  padding: .45rem .65rem;
  border-radius: var(--r-sm);
  position: relative;
  transition: color var(--dur) var(--ease);
}
.lc-nav .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%; height: 2px;
  background: var(--bordo);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease);
}
.lc-nav .navbar-nav .nav-link:hover { color: var(--bordo); }
.lc-nav .navbar-nav .nav-link:hover::after { transform: translateX(-50%) scaleX(1); }

/* Toggler hamburger */
.lc-toggler {
  border: none; background: transparent;
  display: flex; flex-direction: column;
  gap: 5px; padding: .3rem; cursor: pointer;
}
.lc-toggler span {
  display: block; width: 22px; height: 2px;
  background: var(--bordo); border-radius: 2px;
  transition: var(--dur) var(--ease);
}

/* Botões da nav */
.nav-btn-vip {
  font-size: .8rem; font-weight: 800;
  padding: .38rem .95rem;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--amarelo-l), var(--amarelo));
  color: var(--roxo-d); border: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
}
.nav-btn-vip:hover { opacity: .85; transform: translateY(-1px); color: var(--roxo-d); }

.nav-btn-wa {
  font-size: .8rem; font-weight: 700;
  padding: .38rem .95rem;
  border-radius: var(--r-pill);
  background: #25D366; color: #fff; border: none;
  display: flex; align-items: center; gap: .35rem;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
}
.nav-btn-wa:hover { background: #1cb958; color: #fff; transform: translateY(-1px); }

/* Mobile nav overrides */
@media (max-width: 991.98px) {
  #navMenu {
    background: var(--branco);
    border-top: 1px solid var(--cinza-1);
    padding: 1rem 0 1.5rem;
    margin-top: .5rem;
  }
  .nav-actions { justify-content: flex-start; }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(150deg, var(--roxo-d) 0%, #3d1e38 45%, var(--bordo-d) 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: .6;
  pointer-events: none;
}

.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .35;
}
.orb-1 { width: 500px; height: 500px; background: var(--bordo); top: -150px; right: -100px; animation: orb-drift 12s ease-in-out infinite alternate; }
.orb-2 { width: 350px; height: 350px; background: var(--amarelo); bottom: -100px; left: 10%; animation: orb-drift 16s ease-in-out infinite alternate-reverse; opacity: .2; }
.orb-3 { width: 280px; height: 280px; background: var(--roxo-l); top: 40%; left: 40%; animation: orb-drift 9s ease-in-out infinite alternate; opacity: .15; }

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

.hero-container { position: relative; z-index: 2; width: 100%; }
.min-vh-hero { min-height: 85vh; padding: 6rem 0 5rem; }

/* Texto hero */
.hero-text-col { padding-right: clamp(0px, 4vw, 3rem); }

.hero-tag {
  display: inline-block;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--amarelo-l);
  background: rgba(222,152,41,.12);
  border: 1px solid rgba(222,152,41,.25);
  padding: .22rem .75rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
  animation: fade-up .7s var(--ease) both;
}

.hero-heading {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  margin-bottom: 1.5rem;
  animation: fade-up .7s .1s var(--ease) both;
}
.hero-h-name {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--branco);
  line-height: .95;
  letter-spacing: -.03em;
}
.hero-h-slogan {
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: rgba(255,255,255,.75);
  line-height: 1.2;
  letter-spacing: .01em;
  margin-top: .4rem;
}
.hero-h-slogan em {
  color: var(--amarelo);
  font-weight: 800;
  font-style: italic;
}

.hero-desc {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: rgba(255,255,255,.65);
  max-width: 440px;
  margin-bottom: 2.2rem;
  animation: fade-up .7s .2s var(--ease) both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2.5rem;
  animation: fade-up .7s .3s var(--ease) both;
}

.hcta-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--bordo);
  color: var(--branco);
  font-size: 1rem; font-weight: 700;
  padding: .8rem 2rem;
  border-radius: var(--r-md);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.hcta-primary:hover {
  background: var(--bordo-l); color: var(--branco);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(148,43,87,.45);
}

.hcta-ghost {
  display: inline-flex; align-items: center;
  background: transparent;
  border: 2px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.9);
  font-size: 1rem; font-weight: 600;
  padding: .8rem 2rem;
  border-radius: var(--r-md);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.hcta-ghost:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.95);
}

/* Pills hero */
.hero-pills {
  display: flex; flex-wrap: wrap; gap: .6rem;
  animation: fade-up .7s .4s var(--ease) both;
}
.hpill {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.82);
  font-size: .78rem; font-weight: 600;
  padding: .3rem .8rem;
  border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}
.hpill-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.hpill-dot.bordo   { background: var(--bordo-l); }
.hpill-dot.amarelo { background: var(--amarelo); }
.hpill-dot.roxo    { background: var(--roxo-l); }

/* Visual direito — frame ornamental */
.hero-visual-col { display: flex; align-items: center; justify-content: center; }

.hero-visual-frame {
  position: relative;
  width: clamp(280px, 36vw, 460px);
  height: clamp(280px, 36vw, 460px);
  animation: fade-up .8s .2s var(--ease) both;
}
.hvf-inner { position: relative; width: 100%; height: 100%; }

.hvf-ring {
  position: absolute; border-radius: 50%; inset: 0;
  border: 1px solid;
  animation: spin-slow 30s linear infinite;
}
.hvf-ring-1 {
  border-color: rgba(222,152,41,.25);
  top: 0; left: 0;
}
.hvf-ring-2 {
  border-color: rgba(148,43,87,.2);
  top: 8%; left: 8%; right: 8%; bottom: 8%;
  animation-direction: reverse;
  animation-duration: 20s;
}
.hvf-ring-3 {
  border-color: rgba(255,255,255,.08);
  top: 16%; left: 16%; right: 16%; bottom: 16%;
  animation-duration: 40s;
  border-style: dashed;
}

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

.hvf-center {
  position: absolute; inset: 22%;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .4rem;
}
.hvf-monogram {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--branco);
  letter-spacing: -.04em;
  line-height: 1;
}
.hvf-tagline {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--amarelo);
}

/* Floating badges no frame */
.hvf-badge {
  position: absolute;
  background: var(--branco);
  border-radius: var(--r-md);
  padding: .6rem .9rem;
  display: flex; flex-direction: column;
  box-shadow: var(--sh-md);
  animation: float-badge 4s ease-in-out infinite alternate;
}
.hvf-badge-tl { top: 6%; left: -2%; animation-delay: 0s; }
.hvf-badge-br { bottom: 8%; right: -2%; animation-delay: 1.5s; }

.hvf-badge-num {
  font-size: 1.4rem; font-weight: 900; color: var(--bordo); line-height: 1;
}
.hvf-badge-txt {
  font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--texto-light);
}

@keyframes float-badge {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; justify-content: center;
  animation: fade-up .8s 1s var(--ease) both;
}
.hero-scroll-hint span {
  width: 26px; height: 44px;
  border-radius: var(--r-pill);
  border: 2px solid rgba(255,255,255,.25);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 6px;
}
.hero-scroll-hint span::before {
  content: '';
  width: 4px; height: 8px;
  background: rgba(255,255,255,.5);
  border-radius: var(--r-pill);
  animation: scroll-mouse 1.8s ease-in-out infinite;
}
@keyframes scroll-mouse {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* Mobile hero */
@media (max-width: 991.98px) {
  .hero { min-height: auto; }
  .min-vh-hero { padding: 5rem 0 4rem; min-height: auto; }
  .hero-text-col { padding-right: 0; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-pills { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-scroll-hint { display: none; }
}

/* ── FAIXA ROLANTE ───────────────────────────────────────── */
.faixa-beneficios {
  background: var(--bordo);
  overflow: hidden;
  padding: .7rem 0;
  border-top: 1px solid var(--bordo-d);
  border-bottom: 1px solid var(--bordo-d);
}
.faixa-track {
  display: flex;
  width: max-content;
  animation: faixa-scroll 28s linear infinite;
  gap: 0;
}
.faixa-track span {
  font-size: .72rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.88);
  white-space: nowrap;
  padding: 0 2.5rem;
}
.faixa-track span:nth-child(even) { color: var(--amarelo-l); }

@keyframes faixa-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .faixa-track { animation: none; }
}

/* ── VÍDEO / SOBRE ───────────────────────────────────────── */
.video-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--sh-lg);
  aspect-ratio: 16/9;
}
.video-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.video-wrap:hover .video-thumb { transform: scale(1.04); }

.video-overlay {
  position: absolute; inset: 0;
  background: rgba(50,28,45,.45);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur) var(--ease);
}
.video-wrap:hover .video-overlay { background: rgba(50,28,45,.55); }

.play-ring {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bordo);
  border: 3px solid rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.video-wrap:hover .play-ring {
  transform: scale(1.1);
  box-shadow: 0 0 0 14px rgba(148,43,87,.2);
}

.video-label {
  position: absolute; bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(0,0,0,.35);
  padding: .3rem .9rem;
  border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}

/* ── BENEFÍCIOS ──────────────────────────────────────────── */
.bene-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 991.98px) {
  .bene-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .bene-grid { grid-template-columns: 1fr; }
}

.bene-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column;
  gap: .8rem;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.bene-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.bene-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}

.bene-card.bene-destaque {
  background: var(--bordo);
  border-color: var(--bordo-l);
}
.bene-card.bene-destaque::before { background: var(--amarelo); }
.bene-card.bene-destaque:hover { background: var(--bordo-l); }

.bene-card.bene-amarelo {
  background: linear-gradient(145deg, rgba(222,152,41,.18), rgba(222,152,41,.08));
  border-color: rgba(222,152,41,.3);
}
.bene-card.bene-amarelo::before { background: var(--amarelo); }

.bene-num {
  font-size: 2.8rem; font-weight: 900;
  color: rgba(255,255,255,.22);
  line-height: 1; letter-spacing: -.04em;
  position: absolute; top: 1rem; right: 1.2rem;
}
.bene-destaque .bene-num { color: rgba(255,255,255,.18); }
.bene-amarelo .bene-num  { color: rgba(222,152,41,.25); }

.bene-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85);
}
.bene-icon.dark { background: rgba(80,47,74,.1); color: var(--roxo); }

.bene-card h3 {
  font-size: 1.05rem; font-weight: 800;
  color: #fff; margin: 0; line-height: 1.2;
}
.bene-amarelo h3 { color: var(--amarelo-d); }

.bene-card p {
  font-size: .88rem; color: rgba(255,255,255,.65); margin: 0;
}
.bene-amarelo p { color: var(--roxo); opacity: .75; }

/* ── HORÁRIOS ────────────────────────────────────────────── */
.horarios-block {
  background: var(--off);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  border: 1px solid var(--cinza-2);
}
@media (max-width: 575.98px) { .horarios-block { padding: 1.5rem; } }

.horario-row {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  gap: .75rem; padding: .75rem 0;
}
.horario-row.fechado { opacity: .45; }

.hr-dias { display: flex; flex-direction: column; gap: .35rem; }
.hr-label {
  font-size: .95rem; font-weight: 700; color: var(--roxo);
}
.hr-label.muted { color: var(--texto-light); }

.hr-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .2rem .65rem;
  border-radius: var(--r-pill);
  align-self: flex-start;
}
.hr-badge.open {
  background: rgba(37,211,102,.12);
  color: #1a8a42;
  border: 1px solid rgba(37,211,102,.3);
}
.hr-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #25D366;
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hr-hora {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 900; color: var(--bordo);
  letter-spacing: -.02em;
}
.hr-hora.muted { color: var(--texto-light); }
.hr-sep { font-size: .65em; font-weight: 400; opacity: .6; }

.hr-divider {
  height: 1px; background: var(--cinza-2); margin: .2rem 0;
}

.hr-especial {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(148,43,87,.06);
  border: 1px solid rgba(148,43,87,.15);
  border-radius: var(--r-md);
  padding: 1.1rem 1.25rem;
}
.hr-esp-icon {
  font-size: 1.2rem; color: var(--amarelo); flex-shrink: 0;
  margin-top: .1rem;
}
.hr-especial strong {
  display: block; font-size: .9rem;
  font-weight: 800; color: var(--bordo); margin-bottom: .25rem;
}
.hr-especial p {
  font-size: .85rem; color: var(--texto-light); margin: 0;
}

/* ── BANNER AGENDAMENTO ──────────────────────────────────── */
.agend-banner {
  position: relative;
  background: linear-gradient(135deg, var(--amarelo-d) 0%, var(--amarelo) 55%, var(--amarelo-l) 100%);
  padding: 5rem 0;
  overflow: hidden;
}
.agend-bg-shape {
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(80,47,74,.08);
  pointer-events: none;
}
.agend-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 5%;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  pointer-events: none;
}

.agend-label {
  font-size: .72rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--roxo-d); opacity: .6;
  margin-bottom: .6rem;
}
.agend-heading {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900; line-height: 1.1;
  color: var(--roxo-d); margin-bottom: 1rem;
}
.agend-heading em { color: var(--bordo-d); font-weight: 900; font-style: italic; }

.agend-text {
  font-size: 1rem; color: var(--roxo); opacity: .8;
  max-width: 540px; margin-bottom: 2rem;
}

.agend-feats { display: flex; flex-direction: column; gap: .75rem; }
.agend-feat {
  display: flex; align-items: flex-start; gap: .9rem;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: var(--r-md);
  padding: .8rem 1.1rem;
}
.agend-feat-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.agend-feat strong {
  display: block; font-size: .9rem;
  font-weight: 800; color: var(--roxo-d);
}
.agend-feat span { font-size: .82rem; color: var(--roxo); opacity: .75; }

/* Card agendamento */
.agend-card {
  background: var(--branco);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(80,47,74,.25);
}
.agend-card-top {
  background: var(--roxo);
  color: var(--branco);
  padding: 1.5rem 1.75rem;
  display: flex; align-items: center; gap: .85rem;
  font-weight: 800; font-size: 1.05rem;
}
.agend-card-top svg { color: var(--amarelo); flex-shrink: 0; }

.agend-card-body { padding: 1.75rem; }

.agend-horario-display {
  display: flex; flex-direction: column;
  background: var(--off);
  border-radius: var(--r-md);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.1rem;
  border-left: 4px solid var(--bordo);
}
.agend-horario-display span {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--texto-light);
}
.agend-horario-display strong {
  font-size: 1.8rem; font-weight: 900;
  color: var(--bordo); line-height: 1.1; margin: .2rem 0;
}

.agend-card-info {
  font-size: .88rem; color: var(--texto-light); margin-bottom: 1.2rem;
}

.agend-cta {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; width: 100%;
  background: var(--bordo); color: var(--branco);
  font-size: .95rem; font-weight: 800;
  padding: .9rem 1.5rem;
  border-radius: var(--r-md);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.agend-cta:hover {
  background: var(--bordo-l); color: var(--branco);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(148,43,87,.4);
}

/* ── WHATSAPP ─────────────────────────────────────────────── */
.wa-card {
  background: var(--branco);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  display: flex; flex-direction: column;
  height: 100%;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

.wa-card-stripe { height: 4px; }
.wa-stripe-green { background: #25D366; }
.wa-stripe-gold  { background: linear-gradient(90deg, var(--amarelo), var(--amarelo-l)); }

.wa-vip-exclusive {
  align-self: flex-end;
  font-size: .65rem; font-weight: 800;
  letter-spacing: .1em;
  background: linear-gradient(135deg, var(--amarelo), var(--amarelo-d));
  color: var(--roxo-d);
  padding: .2rem .65rem;
  border-radius: 0 0 0 var(--r-sm);
}

.wa-card-content { padding: 1.75rem; flex: 1; }

.wa-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.5rem;
}
.wa-icon-green { background: rgba(37,211,102,.1); color: #1a8a42; }
.wa-icon-gold  { background: rgba(222,152,41,.1); }

.wa-card-info h3 {
  font-size: 1.15rem; font-weight: 800;
  color: var(--roxo); margin-bottom: .5rem;
}
.wa-card-info p { font-size: .9rem; color: var(--texto-light); margin-bottom: 1rem; }

.wa-list {
  list-style: none; padding: 0; margin: 0 0 1.2rem;
  display: flex; flex-direction: column; gap: .45rem;
}
.wa-list li {
  font-size: .88rem; color: var(--texto-light);
  padding-left: 1.3rem; position: relative;
}
.wa-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: #25D366; font-weight: 800;
}

.wa-num-box {
  background: var(--off);
  border-radius: var(--r-md);
  padding: .9rem 1.1rem;
  display: flex; flex-direction: column; gap: .15rem;
}
.wa-num-label {
  font-size: .7rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--texto-light);
}
.wa-num { font-size: 1.3rem; font-weight: 700; color: var(--roxo); }
.wa-num strong { color: var(--bordo); }

.vip-itens { display: flex; flex-direction: column; gap: .65rem; margin-bottom: .5rem; }
.vip-item {
  display: flex; align-items: flex-start; gap: .75rem;
  background: var(--off);
  border-radius: var(--r-md);
  padding: .75rem 1rem;
  border: 1px solid rgba(222,152,41,.12);
}
.vip-item > span { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.vip-item strong { display: block; font-size: .88rem; font-weight: 800; color: var(--roxo); }
.vip-item small  { font-size: .78rem; color: var(--texto-light); }

.wa-btn {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; margin: 0 1.75rem 1.75rem;
  font-size: .92rem; font-weight: 800;
  padding: .85rem 1.5rem;
  border-radius: var(--r-md);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.wa-btn-green { background: #25D366; color: #fff; }
.wa-btn-green:hover { background: #1cb958; color: #fff; transform: translateY(-2px); }
.wa-btn-gold  { background: linear-gradient(135deg, var(--amarelo), var(--amarelo-d)); color: var(--roxo-d); }
.wa-btn-gold:hover { opacity: .88; color: var(--roxo-d); transform: translateY(-2px); }

/* ── LOCALIZAÇÃO ──────────────────────────────────────────── */
.mapa-info { display: flex; flex-direction: column; gap: .5rem; }

.mapa-item {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: 1rem 1.1rem;
  border-radius: var(--r-md);
  background: var(--off);
  border: 1px solid var(--cinza-2);
}
.mapa-icon {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: rgba(148,43,87,.08);
  color: var(--bordo);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mapa-item strong {
  display: block; font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--texto-light); margin-bottom: .2rem;
}
.mapa-item p { font-size: .9rem; color: var(--roxo); margin: 0; line-height: 1.5; }

.mapa-embed {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 100%; min-height: 400px;
  box-shadow: var(--sh-md);
}
.mapa-embed iframe { width: 100%; height: 100%; min-height: 400px; border: none; display: block; }

/* ── INSTAGRAM ────────────────────────────────────────────── */
.ig-handle {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .88rem; font-weight: 700;
  color: var(--bordo);
  background: rgba(148,43,87,.07);
  border: 1px solid rgba(148,43,87,.15);
  padding: .35rem .95rem;
  border-radius: var(--r-pill);
  transition: background var(--dur) var(--ease);
  margin-top: .6rem;
}
.ig-handle:hover { background: rgba(148,43,87,.13); color: var(--bordo); }

.ig-item {
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cinza-1);
}
.ig-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s var(--ease); }
.ig-item:hover img { transform: scale(1.06); }

.ig-skeleton {
  animation: shimmer 1.6s infinite linear;
  background: linear-gradient(90deg, var(--cinza-1) 25%, var(--cinza-2) 50%, var(--cinza-1) 75%);
  background-size: 200% 100%;
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.ig-err { text-align: center; font-size: .9rem; color: var(--texto-light); margin-top: 1rem; }
.ig-err a { color: var(--bordo); font-weight: 600; }

/* ── FOOTER ───────────────────────────────────────────────── */
.lc-footer { background: var(--roxo-d); color: rgba(255,255,255,.78); }

.foot-brand {
  display: flex; align-items: baseline; gap: .18rem;
  margin-bottom: .5rem; line-height: 1;
}
.foot-brand-lc {
  font-size: 1.7rem; font-weight: 900;
  color: var(--bordo-l); letter-spacing: -.02em;
}
.foot-brand-cat {
  font-size: 1.15rem; font-weight: 400;
  color: rgba(255,255,255,.7); font-style: italic;
}
.foot-slogan {
  font-size: .8rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--amarelo); margin-bottom: .9rem;
}
.foot-desc { font-size: .88rem; color: rgba(255,255,255,.55); max-width: 320px; margin-bottom: .6rem; }
.foot-cnpj { font-size: .72rem; color: rgba(255,255,255,.35); line-height: 1.6; margin-bottom: 1rem; }
.foot-addr { font-style: normal; font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.7; }

.foot-soc { display: flex; gap: .6rem; }
.foot-soc a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.foot-soc a:hover { background: var(--bordo); border-color: var(--bordo); color: #fff; }

.lc-footer h5 {
  font-size: .75rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--amarelo); margin-bottom: 1.1rem;
}
.lc-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.lc-footer ul li a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color var(--dur) var(--ease); }
.lc-footer ul li a:hover { color: var(--amarelo); }

.foot-bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  font-size: .75rem; color: rgba(255,255,255,.3);
  text-align: center;
}

/* ── FAB WHATSAPP ─────────────────────────────────────────── */
.wa-fab {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  z-index: 1050;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.wa-fab:hover {
  background: #1cb958; transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
}
.wa-fab-ring {
  position: absolute; inset: -5px; border-radius: 50%;
  background: rgba(37,211,102,.3);
  animation: wa-pulse 2.2s infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .8; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (max-width: 767.98px) {
  .wa-fab { bottom: 1.1rem; right: 1.1rem; width: 52px; height: 52px; }
}

/* ── MODAL VÍDEO ──────────────────────────────────────────── */
.video-modal {
  display: none; position: fixed; inset: 0;
  z-index: 9999; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.video-modal.open { display: flex; }

.video-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(20,8,18,.88);
  backdrop-filter: blur(6px);
}
.video-modal-box {
  position: relative; width: 100%; max-width: 880px; z-index: 1;
}
.video-modal-close {
  position: absolute; top: -44px; right: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--dur) var(--ease);
}
.video-modal-close:hover { background: rgba(255,255,255,.25); }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ── ANIMAÇÃO FADE-UP ─────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── UTILITÁRIOS ──────────────────────────────────────────── */
.d-inline-flex { display: inline-flex !important; }

/* ══════════════════════════════════════════════════════════
   LOGO & SÍMBOLO — adições
══════════════════════════════════════════════════════════ */

/* Navbar — logo real (fundo escuro do logo, usar mix-blend ou fundo branco) */
.nav-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  /* Logo tem fundo preto — invertemos para branco não aparecer */
  /* Se o logo tiver fundo transparente, remova a linha abaixo */
  /* filter: brightness(0) saturate(100%) invert(22%) sepia(60%) saturate(1200%) hue-rotate(300deg) brightness(80%); */
}

/* Navbar com fundo branco — logo original fica visível */
.lc-nav { background: var(--branco); }

/* Hero — logo real grande */
.hero-logo-wrap {
  margin-bottom: 1.5rem;
  animation: fade-up .7s .08s var(--ease) both;
}
.hero-logo {
  height: clamp(90px, 14vw, 150px);
  width: auto;
  object-fit: contain;
  /* Logo tem fundo preto — usar filter para remover e colorir */
  filter: brightness(0) invert(1);
  /* Resultado: logo aparece branco no fundo escuro do hero */
  drop-shadow: 0 4px 20px rgba(0,0,0,.3);
}

/* Slogan abaixo do logo no hero — menor, complementar */
.hero-slogan {
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: rgba(255,255,255,.80);
  line-height: 1.2;
  letter-spacing: .01em;
  margin-bottom: 1rem;
  animation: fade-up .7s .18s var(--ease) both;
}
.hero-slogan em {
  font-weight: 800;
  font-style: italic;
  color: var(--amarelo);
}

/* Frame visual — símbolo no centro */
.hvf-simbolo {
  width: 55%;
  height: auto;
  object-fit: contain;
  /* Símbolo é laranja sobre preto — filtrar para branco/dourado */
  filter: brightness(0) invert(1);
  opacity: .85;
  animation: spin-slow 60s linear infinite;
}

/* Decoração símbolo na seção sobre */
.sec-simbolo-deco {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.sec-simbolo-deco img {
  width: 40px;
  height: auto;
  opacity: .55;
  /* Deixa na cor amarela original */
  filter: none;
}

/* Horários — símbolo no aviso especial */
.hr-especial { gap: .9rem; }
.hr-esp-simbolo {
  width: 32px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: .1rem;
  filter: none; /* Mantém cor laranja original */
  opacity: .85;
}

/* Footer — logo invertido (branco sobre fundo escuro) */
.foot-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .88;
}
