/* ══════════════════════════════════════════════
   KARINA BONER — CSS GLOBAL
   Compartilhado por todas as páginas do site
   ══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --purple:    #8a00d1;
  --purple-dk: #6400a0;
  --purple-dp: #3d0060;
  --purple-lt: #b44de8;
  --pink:      #e8527a;
  --pink-lt:   #f0839e;
  --cream:     #faf7f4;
  --sand:      #f2ebe0;
  --ink:       #1a1520;
  --ink-s:     #3d3545;
  --muted:     #8a7d96;
  --bdr:       rgba(138,0,209,.12);
  --wh:        #fff;
  --mg:        8.05%;
  --xs:  8px;
  --sm:  16px;
  --md:  24px;
  --lg:  40px;
  --xl:  64px;
  --xxl: 96px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  { font-family: "DM Sans", sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; }
:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; border-radius: 3px; }
a, button, [onclick] { min-height: 44px; }
.nav-cta, .lang-btn, .lang-sep, .anc, .nav-links a, .ft-ci, .ft-si, .cravo a { min-height: 0; }

/* ══ NAV (barra principal — exclui o drawer) ══ */
nav:not(.nav-drawer) {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 105px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 var(--mg);
  background: transparent; transition: background .4s, box-shadow .4s;
}
nav:not(.nav-drawer).sc { background: rgba(250,247,244,.97); box-shadow: 0 1px 0 var(--bdr); backdrop-filter: blur(14px); }

.nav-logo img        { height: 42px; transition: filter .4s; }
nav:not(.nav-drawer):not(.sc) .nav-logo img { filter: brightness(0) invert(1); }

.nav-r     { display: flex; align-items: center; gap: 1.6rem; }
.nav-links { display: flex; gap: 1.6rem; list-style: none; }
.nav-links a {
  font-size: .9rem; font-weight: 400; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.9); transition: color .3s;
}
nav.sc .nav-links a       { color: var(--muted); }
nav.sc .nav-links a:hover { color: var(--purple); }
nav:not(.sc) .nav-links a:hover { opacity: .7; }

.nav-cta {
  font-size: .8rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: var(--wh); background: var(--purple);
  padding: .6rem 1.4rem; border-radius: 100px; white-space: nowrap; transition: background .2s;
  display: inline-flex; align-items: center;
}
.nav-cta:hover { background: var(--pink-lt); }

.lang-sw  { display: flex; align-items: center; gap: 3px; }
.lang-btn {
  padding: .28rem .5rem; border-radius: 4px; border: none; cursor: pointer;
  background: transparent; font-size: .72rem; font-weight: 500; letter-spacing: .05em; transition: all .2s;
}
nav:not(.sc) .lang-btn        { color: rgba(255,255,255,.5); }
nav:not(.sc) .lang-btn.on     { color: var(--wh); background: rgba(255,255,255,.15); }
nav:not(.sc) .lang-btn:hover  { color: var(--wh); }
nav.sc .lang-btn              { color: var(--muted); }
nav.sc .lang-btn.on           { color: var(--purple); background: rgba(138,0,209,.08); }
nav.sc .lang-btn:hover        { color: var(--purple); }
.lang-sep     { font-size: .6rem; color: rgba(255,255,255,.25); }
nav.sc .lang-sep { color: var(--bdr); }

/* ══ HERO SLIDER ════════════════════════════════ */
.hero     { position: relative; height: 580px; overflow: hidden; }
.slides   { display: flex; height: 100%; transition: transform .7s cubic-bezier(.77,0,.18,1); }
.slide    { min-width: 100%; height: 100%; position: relative; display: flex; align-items: center; padding: 0 var(--mg); }
.slide-bg { position: absolute; inset: 0; }
.slide-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.slide-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20,5,40,.82) 0%, rgba(20,5,40,.5) 55%, rgba(20,5,40,.15) 100%);
}
.slide-c { position: relative; z-index: 2; max-width: 560px; }

.slide-title {
  font-family: "Arima", serif; font-weight: 100; font-size: clamp(2.8rem,5.5vw,4.8rem);
  line-height: 1.06; color: var(--wh); margin-bottom: .9rem;
  opacity: 0; transform: translateY(16px); transition: opacity .7s .2s, transform .7s .2s;
}
.slide-sub {
  font-size: .95rem; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,.75);
  margin-bottom: 1.6rem; max-width: 420px;
  opacity: 0; transform: translateY(12px); transition: opacity .6s .35s, transform .6s .35s;
}
.slide-cta {
  display: inline-block; padding: .82rem 1.9rem; background: var(--purple); color: var(--wh);
  font-size: .78rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 100px; opacity: 0; transform: translateY(10px);
  transition: opacity .6s .45s, transform .6s .45s, background .2s;
}
.slide-cta:hover { background: var(--pink-lt); }
.slide.on .slide-title,
.slide.on .slide-sub,
.slide.on .slide-cta { opacity: 1; transform: none; }

.s-dots {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.sdot {
  width: 10px; height: 10px; min-height: 0; border-radius: 50%; background: rgba(255,255,255,.3);
  cursor: pointer; border: none; padding: 0; flex-shrink: 0; transition: all .3s;
}
.sdot.on { background: var(--wh); transform: scale(1.2); }

.s-arrows { position: absolute; bottom: 1.1rem; right: var(--mg); display: flex; gap: 10px; z-index: 10; }
.sarr {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: var(--wh); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s; font-size: 1rem;
}
.sarr:hover { background: rgba(255,255,255,.25); }

/* ══ SECTION COMMONS ════════════════════════════ */
.sw   { padding: var(--xxl) var(--mg); }
.sw.dk { background: var(--purple-dp); }
.sw.sd { background: var(--sand); }

.ey {
  font-size: .65rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--purple); margin-bottom: var(--sm);
}
.ey.lt { color: var(--pink-lt); }

.st {
  font-family: "Arima", serif; font-weight: 300; line-height: 1.18;
  font-size: clamp(1.8rem,2.8vw,2.5rem); color: var(--ink); margin-bottom: var(--md);
}
.st em  { font-style: italic; color: var(--purple); }
.st.lt  { color: var(--wh); }
.st.lt em { color: var(--pink-lt); }

.sb { font-size: .94rem; font-weight: 300; line-height: 1.85; color: var(--ink-s); margin-bottom: var(--sm); }
.sb.lt { color: rgba(255,255,255,.7); }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .76rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase;
  color: var(--wh); background: var(--purple); border: 1px solid var(--purple);
  padding: .65rem 1.4rem; border-radius: 100px; transition: all .2s; margin-top: var(--md);
}
.btn:hover { background: var(--pink-lt); border-color: var(--pink-lt); }
.btn.lt    { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); }
.btn.lt:hover { background: rgba(255,255,255,.28); border-color: var(--wh); }

/* ══ O QUE É ════════════════════════════════════ */
.what-g   { display: grid; grid-template-columns: 1fr 1fr; gap: var(--xl); align-items: center; }
.what-img { border-radius: 6px; overflow: hidden; aspect-ratio: 4/3; }
.what-img img { width: 100%; height: 100%; object-fit: cover; }
.kws { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--md); }
.kw  {
  font-size: .68rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase;
  color: var(--purple); border: .5px solid rgba(138,0,209,.3); padding: .35rem .9rem; border-radius: 100px;
}

/* ══ ATELIERS ═══════════════════════════════════ */
.at-g { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sm); margin-top: var(--lg); }
.at-c {
  background: rgba(255,255,255,.06); border: .5px solid rgba(255,255,255,.1);
  border-radius: 6px; padding: var(--lg) var(--md); transition: background .2s;
}
.at-c:hover { background: rgba(255,255,255,.1); }
.at-ic {
  width: 52px; height: 52px; border-radius: 50%; background: rgba(180,77,232,.25);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--md); font-size: 1.3rem; color: var(--pink-lt);
}
.at-t { font-family: "Arima", serif; font-size: 1.25rem; font-weight: 300; color: var(--wh); margin-bottom: .75rem; }
.at-d { font-size: .82rem; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.6); }

/* ══ PARA QUEM ══════════════════════════════════ */
.pq-g { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--bdr); margin-top: var(--lg); }
.pq-c { background: var(--cream); overflow: hidden; transition: box-shadow .2s; }
.pq-c:hover { box-shadow: 0 8px 32px rgba(138,0,209,.1); }
.pq-ph { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: #d5cfe0; display: flex; align-items: center; justify-content: center; }
.pq-ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.pq-c:hover .pq-ph img { transform: scale(1.04); }
.pq-ph-pl { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(90,70,110,.4); }
.pq-b     { padding: var(--md); }
.pq-n     { font-family: "Arima", serif; font-size: 1.3rem; font-weight: 300; color: var(--ink); margin-bottom: var(--sm); }
.pq-l     { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.pq-l li  { font-size: .78rem; font-weight: 300; line-height: 1.5; color: var(--ink-s); padding-left: 1rem; position: relative; }
.pq-l li::before { content: "—"; position: absolute; left: 0; color: var(--purple-lt); }
.pq-cta   { text-align: center; margin-top: var(--xl); }

/* ══ O ESPAÇO ═══════════════════════════════════ */
.sp-hero  { position: relative; height: 440px; overflow: hidden; border-radius: 6px; margin-bottom: var(--lg); }
.sp-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.sp-hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(29,8,52,.75) 0%, rgba(29,8,52,.35) 60%, transparent 100%);
  display: flex; align-items: flex-end; padding: var(--xl);
}
.sp-lbl { font-size: .65rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--pink-lt); margin-bottom: .75rem; }
.sp-ht  { font-family: "Arima", serif; font-size: clamp(2rem,4vw,3.5rem); font-weight: 100; line-height: 1.1; color: var(--wh); }
.sp-ht em { font-style: italic; color: var(--pink-lt); }
.sp-g   { display: grid; grid-template-columns: 1fr 1fr; gap: var(--xl); align-items: stretch; }
.pillars { display: flex; flex-direction: column; gap: var(--md); margin-top: var(--lg); }
.pillar  { display: flex; gap: var(--sm); align-items: flex-start; }
.p-bar   { width: 2.5px; height: 40px; background: var(--purple); flex-shrink: 0; margin-top: 3px; }
.p-lbl   { font-size: .85rem; font-weight: 500; color: var(--ink); margin-bottom: .2rem; }
.p-txt   { font-size: .78rem; font-weight: 300; line-height: 1.6; color: var(--muted); }
.sp-addr { display: flex; align-items: flex-start; gap: .6rem; margin-top: var(--md); font-size: .82rem; font-weight: 300; color: var(--muted); line-height: 1.55; }
.sp-addr i { color: var(--purple); margin-top: 2px; flex-shrink: 0; }
.sp-map  { border-radius: 6px; overflow: hidden; border: 1px solid var(--bdr); height: 100%; min-height: 360px; }
.sp-map iframe { width: 100%; height: 100%; min-height: 360px; border: none; display: block; }

/* ══ GALERIA ════════════════════════════════════ */
.gal-s    { padding: var(--xl) var(--mg); background: var(--sand); }
.gal-head { margin-bottom: var(--lg); }
.gal-wrap { position: relative; display: flex; align-items: center; gap: var(--sm); }
.gal-arr  {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(138,0,209,.25); background: var(--wh);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--purple); font-size: .9rem; transition: all .2s;
}
.gal-arr:hover         { background: var(--purple); color: var(--wh); border-color: var(--purple); }
.gal-arr:disabled      { opacity: .3; cursor: default; pointer-events: none; }
.gal-tw   { overflow: hidden; flex: 1; }
.gal-track { display: flex; gap: 12px; transition: transform .5s cubic-bezier(.77,0,.18,1); }
.gal-th   { flex: 0 0 calc((100% - 24px) / 3); aspect-ratio: 4/3; overflow: hidden; border-radius: 6px; cursor: pointer; position: relative; }
.gal-th img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gal-th:hover img    { transform: scale(1.06); }
.gal-th::after       { content: ""; position: absolute; inset: 0; background: rgba(61,0,96,0); transition: background .3s; }
.gal-th:hover::after { background: rgba(61,0,96,.18); }
.gal-dots { display: flex; justify-content: center; gap: 8px; margin-top: var(--md); }
.gdot {
  width: 8px; height: 8px; min-height: 0; border-radius: 50%; background: rgba(138,0,209,.25);
  cursor: pointer; border: none; padding: 0; flex-shrink: 0; transition: all .3s;
}
.gdot.on { background: var(--purple); transform: scale(1.25); }

/* ══ LIGHTBOX ═══════════════════════════════════ */
.lb { position: fixed; inset: 0; z-index: 500; background: rgba(10,2,20,.93); display: none; align-items: center; justify-content: center; }
.lb.open { display: flex; }
.lb img  { max-width: 90vw; max-height: 88vh; border-radius: 4px; object-fit: contain; }
.lb-x    {
  position: absolute; top: 1.5rem; right: 2rem; font-size: 2rem;
  color: rgba(255,255,255,.6); cursor: pointer; background: none; border: none; line-height: 1; transition: color .2s;
}
.lb-x:hover { color: var(--wh); }

/* ══ SOBRE KARINA ═══════════════════════════════ */
.kr-s     { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.kr-ph    { position: relative; overflow: hidden; }
.kr-ph img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.kr-ph-ov { position: absolute; inset: 0; background: linear-gradient(to right, transparent 55%, var(--sand) 100%); }
.kr-tx    { background: var(--sand); padding: var(--xxl) var(--xl); display: flex; flex-direction: column; justify-content: center; }
.kr-q     {
  font-family: "Arima", serif; font-size: 1.2rem; font-weight: 300; font-style: italic;
  line-height: 1.6; color: var(--purple); border-left: 2px solid var(--purple);
  padding-left: 1.5rem; margin: var(--lg) 0;
}
.creds { display: flex; flex-direction: column; gap: 10px; margin-top: var(--md); }
.cred  {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .8rem; font-weight: 300; color: var(--ink-s); line-height: 1.5;
}
.cred::before { content: "·"; color: var(--purple); font-size: 1.2rem; line-height: 1; flex-shrink: 0; }
.lgs  { display: flex; gap: 8px; margin-top: var(--sm); }
.lg-b {
  font-size: .68rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--purple); border: .5px solid rgba(138,0,209,.3); padding: .35rem .9rem; border-radius: 100px;
}

/* ══ FAQ ════════════════════════════════════════ */
.faq-wrap  { max-width: 780px; margin: 0 auto; }
.faq-list  { display: flex; flex-direction: column; gap: var(--sm); margin-top: var(--xl); }
.faq-item  { background: var(--wh); border-radius: 12px; border: 1px solid var(--bdr); overflow: hidden; transition: box-shadow .2s; }
.faq-item:hover { box-shadow: 0 4px 20px rgba(138,0,209,.08); }
.faq-q {
  width: 100%; padding: var(--md) var(--lg); display: flex; align-items: center;
  justify-content: space-between; cursor: pointer; border: none; background: none;
  text-align: left; font-family: "DM Sans", sans-serif; font-size: 1rem; font-weight: 400;
  color: var(--ink); transition: color .2s; gap: var(--sm);
}
.faq-q.open { color: var(--purple); }
.faq-ic {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--bdr); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  transition: transform .3s, border-color .2s, background .2s;
}
.faq-q.open .faq-ic { transform: rotate(45deg); border-color: var(--purple); color: var(--purple); background: rgba(138,0,209,.06); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; padding: 0 var(--lg); font-size: .92rem; font-weight: 300; line-height: 1.85; color: var(--ink-s); }
.faq-a.open { max-height: 300px; padding: 0 var(--lg) var(--md); }

/* ══ CTA ════════════════════════════════════════ */
.cta-s {
  background: var(--purple-dp); padding: var(--xxl) var(--mg);
  text-align: center; position: relative; overflow: hidden;
}
.cta-s::before {
  content: ""; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(138,0,209,.3) 0%, transparent 65%); pointer-events: none;
}
.cta-t    { font-family: "Arima", serif; font-weight: 300; line-height: 1.12; font-size: clamp(2.2rem,4.5vw,4rem); color: var(--wh); max-width: 640px; margin: 0 auto var(--sm); }
.cta-t em { font-style: italic; color: var(--pink-lt); }
.cta-sub  { font-size: .94rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,.6); max-width: 480px; margin: 0 auto var(--lg); }
.ct-icons { display: flex; align-items: center; justify-content: center; gap: var(--md); flex-wrap: wrap; margin-bottom: var(--lg); }
.ct-btn   { display: flex; align-items: center; gap: .5rem; padding: .78rem 1.55rem; border-radius: 100px; border: 1px solid; font-size: .82rem; font-weight: 400; transition: all .2s; }
.ct-btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.ct-btn.wa  { background: rgba(37,211,102,.12); border-color: rgba(37,211,102,.35); color: #4ade80; }
.ct-btn.wa:hover { background: rgba(37,211,102,.24); }
.ct-btn.em  { background: rgba(180,77,232,.12); border-color: rgba(180,77,232,.35); color: var(--purple-lt); }
.ct-btn.em:hover { background: rgba(180,77,232,.24); }
.ct-btn.ig  { background: rgba(240,131,158,.12); border-color: rgba(240,131,158,.35); color: var(--pink-lt); }
.ct-btn.ig:hover { background: rgba(240,131,158,.24); }
.addr-ln { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: .75rem; font-weight: 300; color: rgba(255,255,255,.35); }
.addr-ln i { color: var(--pink-lt); }

/* ══ FOOTER ═════════════════════════════════════ */
footer   { background: var(--ink); padding: var(--xl) var(--mg) var(--md); }
.ft-top  { display: grid; grid-template-columns: 1.3fr 1.1fr 1fr 1fr; gap: var(--xl); padding-bottom: var(--xl); border-bottom: 1px solid rgba(255,255,255,.08); }
.ft-logo img { height: 52px; margin-bottom: var(--md); }
.ft-tag  { font-size: .8rem; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 220px; }
.ft-ht   { font-size: .65rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--pink-lt); margin-bottom: var(--md); }
.ft-cl   { display: flex; flex-direction: column; gap: .75rem; }
.ft-ci   { display: flex; align-items: flex-start; gap: .6rem; font-size: .78rem; font-weight: 300; color: rgba(255,255,255,.5); transition: color .2s; line-height: 1.55; }
.ft-ci i { color: var(--purple-lt); width: 16px; text-align: center; flex-shrink: 0; margin-top: .2rem; }
.ft-ci:hover { color: rgba(255,255,255,.85); }
.ft-loc  { display: flex; flex-direction: column; gap: var(--md); }
.ft-loc-item { display: flex; gap: .6rem; align-items: flex-start; }
.ft-loc-item i { color: var(--purple-lt); width: 16px; text-align: center; flex-shrink: 0; margin-top: .2rem; font-size: .85rem; }
.ft-loc-name { font-size: .68rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.6); display: block; margin-bottom: .15rem; }
.ft-loc-addr { font-size: .78rem; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.55; }
.ft-si   { display: flex; align-items: center; gap: .6rem; font-size: .8rem; font-weight: 300; color: rgba(255,255,255,.5); transition: color .2s; }
.ft-si i { color: var(--purple-lt); width: 16px; text-align: center; font-size: .9rem; }
.ft-si:hover { color: var(--pink-lt); }
.ft-bot  { display: flex; align-items: center; justify-content: space-between; padding-top: var(--md); flex-wrap: wrap; gap: .75rem; }
.ft-cp   { font-size: .7rem; font-weight: 300; color: rgba(255,255,255,.2); }

/* ══ CRAVO ══════════════════════════════════════ */
.cravo { background: #000; padding: .7rem var(--mg); text-align: center; font-size: .7rem; font-weight: 300; letter-spacing: .06em; color: rgba(255,255,255,.35); }
.cravo a { color: rgba(255,255,255,.35); transition: color .2s; }
.cravo a:hover { color: #00aeef; }

/* ══ WA FLOAT ═══════════════════════════════════ */
.wa-f {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  width: 52px; height: 52px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  animation: wap 2.8s ease-in-out infinite;
  transition: background .35s ease, box-shadow .35s ease, transform .2s ease;
}
.wa-f:hover {
  background: var(--purple);
  box-shadow: 0 4px 28px rgba(138,0,209,.5), 0 0 0 6px rgba(138,0,209,.12);
  animation-play-state: paused;
  transform: scale(1.08);
}
.wa-f svg { width: 26px; height: 26px; fill: white; }
@keyframes wap {
  0%,100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(37,211,102,.35);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 6px 28px rgba(37,211,102,.6), 0 0 0 7px rgba(37,211,102,.1);
  }
}


/* ══ HERO INTERNO (páginas internas) ═══════════ */
.hero-inner     { position: relative; height: 420px; overflow: hidden; }
.hero-inner-bg  { position: absolute; inset: 0; }
.hero-inner-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-inner-ov  {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,3,25,.25) 0%, rgba(10,3,25,.78) 100%);
}
.hero-inner-c   { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 105px var(--mg) var(--xl); }
.hero-bc        { font-size: .68rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: .75rem; display: flex; align-items: center; gap: .5rem; }
.hero-bc a      { color: rgba(255,255,255,.45); transition: color .2s; }
.hero-bc a:hover { color: rgba(255,255,255,.8); }
.hero-bc span   { color: rgba(255,255,255,.25); }
.hero-eyebrow   { font-size: .62rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--pink-lt); margin-bottom: .6rem; }
.hero-ht        { font-family: "Arima", serif; font-weight: 100; font-size: clamp(2.5rem,5vw,4.2rem); line-height: 1.06; color: var(--wh); margin-bottom: .75rem; }
.hero-ht em     { font-style: italic; color: var(--pink-lt); }
.hero-hs        { font-size: .9rem; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.65); max-width: 480px; }

/* nav-links active state */
.nav-links a.active,
.nav-drawer-links a.active { color: var(--purple) !important; font-weight: 500; background-color: #fff; padding: .6rem 1.4rem; border-radius: 100px;}

/* ══ CAROUSEL (páginas internas) ════════════════ */
.carousel-wrap  { position: relative; display: flex; align-items: center; gap: var(--sm); }
.carousel-arr   {
  width: 40px; height: 40px; min-height: 0; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(138,0,209,.25); background: var(--wh);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--purple); font-size: .85rem; transition: all .2s;
}
.carousel-arr:hover    { background: var(--purple); color: var(--wh); border-color: var(--purple); }
.carousel-arr:disabled { opacity: .3; cursor: default; pointer-events: none; }
.carousel-tw    { overflow: hidden; flex: 1; }
.carousel-track { display: flex; gap: 12px; transition: transform .5s cubic-bezier(.77,0,.18,1); }
.carousel-th    { flex: 0 0 calc((100% - 24px) / 3); aspect-ratio: 4/3; overflow: hidden; border-radius: 6px; }
.carousel-th img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.carousel-th:hover img { transform: scale(1.04); }
.carousel-dots  { display: flex; justify-content: center; gap: 8px; margin-top: var(--md); }

/* ══ SYMBOLISME ═════════════════════════════════ */
.symbol-grid        { display: grid; grid-template-columns: 1fr 1fr; gap: var(--xl); align-items: start; }
.symbol-img         { border-radius: 6px; overflow: hidden; position: relative; }
.symbol-img img     { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.symbol-img-caption{position:absolute;bottom:0;left:0;right:0;padding:1.25rem 1.5rem;background:linear-gradient(to top,rgba(10,3,25,.8),transparent);font-size:.72rem;font-weight:300;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.6);}
.symbol-pull{font-family:"Arima",serif;font-size:clamp(1.3rem,2.2vw,1.8rem);font-weight:300;font-style:italic;line-height:1.45;color:var(--ink);border-left:2.5px solid var(--purple);padding-left:1.75rem;margin:var(--lg) 0;}
.symbol-pull em{color:var(--purple);font-style:normal;}

/* ══ TROIS TEMPS ════════════════════════════════ */
.trois-temps{background:var(--sand);padding:var(--xxl) var(--mg);}
.trois-header{text-align:center;max-width:640px;margin:0 auto var(--xl);}
.trois-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--md);max-width:860px;margin:0 auto;}
.temps-card{background:var(--wh);border-radius:12px;border:1px solid var(--bdr);padding:var(--xl) var(--lg);text-align:center;transition:box-shadow .2s,transform .2s;}
.temps-card:hover{box-shadow:0 8px 32px rgba(138,0,209,.1);transform:translateY(-3px);}
.temps-icon{width:64px;height:64px;border-radius:50%;background:rgba(138,0,209,.08);border:1px solid rgba(138,0,209,.15);display:flex;align-items:center;justify-content:center;margin:0 auto var(--md);font-size:1.5rem;color:var(--purple);}
.temps-num{font-family:"Arima",serif;font-size:.7rem;font-weight:400;letter-spacing:.14em;text-transform:uppercase;color:var(--purple);margin-bottom:.5rem;}
.temps-title{font-family:"Arima",serif;font-size:1.35rem;font-weight:300;color:var(--ink);margin-bottom:.75rem;line-height:1.3;}
.temps-title em{font-style:italic;color:var(--purple);}
.temps-desc{font-size:.84rem;font-weight:300;line-height:1.75;color:var(--muted);}

/* ══ MOSAIC / FOTOS ═════════════════════════════ */
.mosaic-section { padding: var(--xxl) var(--mg); }
.mosaic-header  { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--lg); margin-bottom: var(--lg); flex-wrap: wrap; }

/* ══ QUOTE ══════════════════════════════════════ */
.quote-section{padding:var(--xxl) var(--mg);background:var(--ink);text-align:center;position:relative;overflow:hidden;}
.quote-section::before{content:"";position:absolute;top:-40%;left:50%;transform:translateX(-50%);width:700px;height:700px;border-radius:50%;background:radial-gradient(circle,rgba(138,0,209,.18) 0%,transparent 65%);pointer-events:none;}
.quote-icon{font-size:2rem;color:rgba(138,0,209,.4);margin-bottom:var(--md);}
.quote-text{font-family:"Arima",serif;font-weight:100;font-style:italic;font-size:clamp(1.6rem,3.5vw,2.8rem);line-height:1.35;color:var(--wh);max-width:800px;margin:0 auto var(--lg);position:relative;z-index:1;}
.quote-text em{color:var(--pink-lt);font-style:normal;}
.quote-author{font-size:.72rem;font-weight:400;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.35);position:relative;z-index:1;}

/* ══ ACESSO / COMO CHEGAR ═══════════════════════ */
.access-section{background:var(--purple-dp);padding:var(--xxl) var(--mg);}
.access-grid{display:grid;grid-template-columns:1fr 1fr;gap:var(--xl);align-items:start;}
.access-map{border-radius:8px;overflow:hidden;border:1px solid rgba(255,255,255,.08);}
.access-map iframe{width:100%;height:380px;border:none;display:block;}
.access-modes{display:flex;flex-direction:column;gap:var(--md);margin-top:var(--lg);}
.access-mode{display:flex;align-items:flex-start;gap:var(--sm);padding:var(--md);background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);border-radius:8px;transition:background .2s;}
.access-mode:hover{background:rgba(255,255,255,.09);}
.access-mode-icon{width:40px;height:40px;border-radius:50%;background:rgba(138,0,209,.3);display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--pink-lt);font-size:.95rem;}
.access-mode-title{font-size:.82rem;font-weight:500;color:var(--wh);margin-bottom:.25rem;}
.access-mode-desc{font-size:.78rem;font-weight:300;color:rgba(255,255,255,.55);line-height:1.55;}
.access-addr{display:flex;align-items:flex-start;gap:.75rem;padding:var(--md) var(--lg);background:rgba(138,0,209,.25);border:1px solid rgba(180,77,232,.25);border-radius:8px;margin-top:var(--lg);}
.access-addr i{color:var(--pink-lt);margin-top:.15rem;flex-shrink:0;}
.access-addr strong{display:block;font-size:.85rem;font-weight:500;color:var(--wh);margin-bottom:.2rem;}
.access-addr span{font-size:.8rem;font-weight:300;color:rgba(255,255,255,.55);}
.access-hours-title{font-size:.65rem;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:var(--pink-lt);margin-bottom:var(--sm);margin-top:var(--lg);}
.access-hour-row{display:flex;align-items:center;justify-content:space-between;font-size:.8rem;font-weight:300;color:rgba(255,255,255,.55);padding:.5rem 0;border-bottom:1px solid rgba(255,255,255,.05);}
.access-hour-row:last-child{border-bottom:none;}
.access-hour-row span:last-child{color:var(--wh);font-weight:400;}

/* ══ LANA TERRA ═════════════════════════════════ */
.lana-section  { background: var(--cream); padding: var(--xxl) var(--mg); }
.lana-divider  { display: flex; align-items: center; gap: var(--md); margin-bottom: var(--xl); }
.lana-divider-line  { flex: 1; height: 1px; background: var(--bdr); }
.lana-divider-label { font-size: .62rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.lana-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: var(--xl); align-items: start; }
.lana-badge    {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .65rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--purple); background: rgba(138,0,209,.07);
  border: .5px solid rgba(138,0,209,.2); padding: .4rem 1rem; border-radius: 100px;
  margin-bottom: var(--sm);
}
.lana-hours    { display: flex; flex-direction: column; gap: 0; margin: var(--sm) 0; border-top: 1px solid var(--bdr); }
.lana-hour-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .55rem 0; border-bottom: 1px solid var(--bdr);
  font-size: .8rem; font-weight: 300; color: var(--ink-s);
}
.lana-addr     { display: flex; align-items: flex-start; gap: .6rem; font-size: .82rem; font-weight: 300; color: var(--muted); line-height: 1.55; margin-top: var(--md); }
.lana-addr i   { color: var(--purple); flex-shrink: 0; margin-top: 2px; }
.lana-right    { display: flex; flex-direction: column; gap: var(--lg); }
.lana-map      { border-radius: 8px; overflow: hidden; border: 1px solid var(--bdr); aspect-ratio: 4/3; }
.lana-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* .btn variante outline dark (sobre fundo claro) */
.btn.outline-dk {
  background: transparent; color: var(--purple); border-color: rgba(138,0,209,.35);
}
.btn.outline-dk:hover { background: var(--purple); color: var(--wh); border-color: var(--purple); }

/* .ct-btn variante ateliers */
.ct-btn.at { background: rgba(138,0,209,.12); border-color: rgba(138,0,209,.35); color: var(--purple-lt); }
.ct-btn.at:hover { background: rgba(138,0,209,.24); }

/* .cta-ey — eyebrow dentro do CTA (nome diferente do .ey global, mesmo estilo) */
.cta-ey { font-size: .65rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--pink-lt); margin-bottom: var(--sm); }

/* ══ MOBILE — onde-encontrar ════════════════════ */
@media (max-width: 960px) {
  :root { --mg: 5%; }

  nav:not(.nav-drawer) {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 80px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  nav:not(.nav-drawer).sc {
    background: rgba(250,247,244,.97) !important;
    box-shadow: 0 1px 0 var(--bdr) !important;
    backdrop-filter: blur(14px) !important;
  }
  .nav-ham {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; min-height: 0; cursor: pointer; border: none;
    background: transparent; padding: 6px; flex-shrink: 0; z-index: 201;
  }
  .nav-ham span { display: block; width: 22px; height: 2px; border-radius: 2px; background: rgba(255,255,255,.85); transition: all .3s; }
  nav.sc .nav-ham span { background: var(--purple); }
  .nav-logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .nav-logo .logo-full   { display: none; }
  .nav-logo .logo-symbol { display: block; height: 48px; filter: brightness(0) invert(1); transition: filter .3s; }
  nav.sc .nav-logo .logo-symbol { filter: none; }
  .nav-r { display: none; }

  /* ── Overlay ── */
  .nav-overlay { display: none; position: fixed; inset: 0; z-index: 399; background: rgba(0,0,0,.35); }
  .nav-overlay.open { display: block; }

  /* ── Drawer lateral ── */
  .nav-drawer {
    display: flex;
    position: fixed; top: 0; left: 0; bottom: 0;
    right: auto; width: 320px; height: auto;
    background: #fff; z-index: 400;
    transform: translateX(-100%); transition: transform .35s cubic-bezier(.77,0,.18,1);
    flex-direction: column;
    padding: 24px 28px 40px;
    box-shadow: 6px 0 40px rgba(0,0,0,.1);
    justify-content: flex-start;
  }
  .nav-drawer.open { transform: translateX(0); }

  /* Header: logo à esquerda + × à direita */
  .nav-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 20px; margin-bottom: 8px;
    border-bottom: 1px solid var(--bdr);
  }
  .nav-drawer-logo { height: 44px; display: block; }
  .nav-drawer-close {
    width: 36px; height: 36px; min-height: 0; border-radius: 50%;
    background: rgba(180,77,232,.12); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem; color: var(--purple); flex-shrink: 0; transition: background .2s;
  }
  .nav-drawer-close:hover { background: rgba(138,0,209,.22); }

  /* Links */
  .nav-drawer-links { display: flex; flex-direction: column; list-style: none; flex: 1; margin-top: 60px; padding: 0; }
  .nav-drawer-links a {
    font-size: 1.5rem; font-weight: 300; color: var(--purple);
    padding: .85rem 0; border-bottom: 1px solid var(--bdr);
    transition: color .2s; display: flex; align-items: center;
    justify-content: space-between; min-height: 0;
  }
  .nav-drawer-links li:last-child a { border-bottom: none; }
  .nav-drawer-links a:hover { color: var(--purple); }
  .nav-drawer-links a i { font-size: .6rem; color: var(--muted); }

  /* Área inferior — alinhada à esquerda como a logo */
  .nav-drawer-bottom {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 14px; margin-top: 28px;
  }

  /* Ícones sociais — círculo com borda fina, sem fundo */
  .nav-drawer-socials { display: flex; gap: 10px; }
  .nav-drawer-social {
    width: 54px; height: 54px; min-height: 0; border-radius: 50%;
    background: transparent; border: 1px solid rgba(138,0,209,.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--purple); font-size: 1.2rem; transition: all .2s;
  }
  .nav-drawer-social:hover { background: var(--purple); color: #fff; border-color: var(--purple); }

  /* CTA WhatsApp */
  .nav-drawer-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: .8rem 1.5rem; border-radius: 100px; background: var(--purple);
    color: #fff; font-size: 1.05rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; transition: background .2s; min-height: 0;
  }
  .nav-drawer-cta:hover { background: var(--purple-dk); }
  .nav-drawer-cta i { font-size: 1.5rem; }

  /* Seletor de idioma */
  .nav-drawer-lang { display: flex; align-items: center; gap: 8px; }
  .nav-drawer-lang button {
    min-height: 0; padding: .32rem .8rem; border-radius: 5px;
    border: 1px solid rgba(138,0,209,.25); background: transparent;
    color: var(--muted); font-size: .78rem; font-weight: 500;
    letter-spacing: .05em; text-transform: uppercase; cursor: pointer; transition: all .2s;
  }
  .nav-drawer-lang button.on { background: var(--purple); border-color: var(--purple); color: #fff; }

  /* Layout de página */
  .what-g, .sp-g { grid-template-columns: 1fr; gap: var(--lg); }
  .pq-g, .at-g   { grid-template-columns: 1fr 1fr; }
  .kr-s           { grid-template-columns: 1fr; }
  .kr-ph          { height: 360px; }
  .kr-ph-ov       { background: linear-gradient(to bottom, transparent 60%, var(--sand) 100%); }
  .gal-th         { flex: 0 0 calc((100% - 12px) / 2); }
  .ft-top         { grid-template-columns: 1fr 1fr; }
  /* onde-encontrar */
  .hero-inner       { height: 340px; }
  .hero-inner-c     { padding-top: 80px; }
  .symbol-grid      { grid-template-columns: 1fr; }
  .access-grid      { grid-template-columns: 1fr; }
  .lana-grid        { grid-template-columns: 1fr; }
  .mosaic-header    { flex-direction: column; align-items: flex-start; gap: var(--sm); }
  .carousel-th      { flex: 0 0 calc((100% - 12px) / 2); }
}

@media (max-width: 600px) {
  .pq-g, .at-g  { grid-template-columns: 1fr; }
  .gal-th       { flex: 0 0 100%; }
  .ct-icons     { flex-direction: column; align-items: stretch; }
  .ct-btn       { justify-content: center; }
  .kr-tx        { padding: var(--xl) var(--md); }
  .ft-top       { grid-template-columns: 1fr; }
  .nav-drawer   { width: 100%; }
  .carousel-th  { flex: 0 0 100%; }
  .trois-grid   { grid-template-columns: 1fr; }
}

/* Desktop: hide mobile-only elements */
@media (min-width: 961px) {
  .nav-ham, .nav-drawer, .nav-overlay { display: none !important; }
  .nav-logo .logo-full   { display: block; }
  .nav-logo .logo-symbol { display: none; }
}

/* ══ ATELIERS — ANCHOR BAR ══════════════════════ */
.anchor-bar {
  background: var(--wh); border-bottom: 1px solid var(--bdr);
  position: sticky; top: 105px; z-index: 100;
  display: flex; gap: 0; overflow-x: auto; padding: 0 var(--mg);
}
.anchor-bar::-webkit-scrollbar { display: none; }
.anc {
  font-size: .78rem; font-weight: 400; letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); padding: 1rem 1.5rem; white-space: nowrap;
  border-bottom: 2px solid transparent; transition: all .2s;
}
.anc:hover { color: var(--purple); }
.anc.on    { color: var(--purple); border-bottom-color: var(--purple); }

/* ══ ATELIERS — SEC-HEADER ══════════════════════ */
.sec-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: var(--xl); }
.sec-header-desc { font-size: .95rem; font-weight: 300; line-height: 1.7; color: var(--ink-s); max-width: 600px; margin-top: .5rem; }
.sec-header-desc.lt { color: rgba(255,255,255,.65); }

/* ══ ATELIERS — DIVIDER ═════════════════════════ */
.divider       { display: flex; align-items: center; gap: 1rem; margin: var(--lg) 0; }
.divider-line  { flex: 1; height: 1px; background: var(--bdr); }
.divider-label { font-size: .65rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }

/* ══ ATELIERS INFANTIS — CARDS ══════════════════ */
.child-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--md); }
.child-card { background: var(--wh); border-radius: 10px; overflow: hidden; border: 1px solid var(--bdr); display: flex; flex-direction: column; }
.child-card-photo {
  aspect-ratio: 16/9; overflow: hidden; position: relative;
  background: #e8e0f0; display: flex; align-items: center; justify-content: center;
}
.child-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.child-card:hover .child-card-photo img { transform: scale(1.04); }
.child-card-photo-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; width: 100%; height: 100%;
}
.child-card-photo-ph i    { font-size: 1.8rem; color: rgba(138,0,209,.25); }
.child-card-photo-ph span { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(138,0,209,.35); }
.child-card-badge {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--purple); color: var(--wh);
  font-size: .65rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 100px;
}
.child-card-body   { padding: var(--md) var(--lg); flex: 1; display: flex; flex-direction: column; }
.child-card-name   { font-family: "Arima", serif; font-size: 1.4rem; font-weight: 300; color: var(--ink); margin-bottom: .5rem; }
.child-card-name em { font-style: italic; color: var(--purple); }
.child-card-meta   { display: flex; flex-wrap: wrap; gap: var(--sm); margin-bottom: var(--md); }
.meta-tag          { display: flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 400; color: var(--muted); }
.meta-tag i        { color: var(--purple); font-size: .75rem; }
.child-card-desc   { font-size: .88rem; font-weight: 300; line-height: 1.8; color: var(--ink-s); flex: 1; }
.child-card-media  { margin-top: var(--md); padding-top: var(--md); border-top: 1px solid var(--bdr); font-size: .75rem; font-weight: 400; color: var(--muted); }
.child-card-media span { font-weight: 500; color: var(--ink-s); }
.child-card-footer {
  padding: var(--md) var(--lg); border-top: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: space-between;
}
.price-badge       { font-family: "Arima", serif; font-size: 1.5rem; font-weight: 300; color: var(--purple); }
.price-badge small { font-size: .7rem; font-weight: 400; color: var(--muted); font-family: "DM Sans", sans-serif; margin-left: 2px; }

/* ══ ATELIERS ADULTOS — CARDS ALTERNADOS ════════ */
.adult-cards { display: flex; flex-direction: column; gap: var(--md); }
.adult-card  {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 10px; overflow: hidden; border: 1px solid var(--bdr);
  background: var(--wh); min-height: 320px;
}
.adult-card.reverse        { direction: rtl; }
.adult-card.reverse > *    { direction: ltr; }
.adult-card-photo          {
  position: relative; overflow: hidden;
  background: #ddd5e8; display: flex; align-items: center; justify-content: center;
  min-height: 280px;
}
.adult-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.adult-card:hover .adult-card-photo img { transform: scale(1.04); }
.adult-card-photo-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .6rem; width: 100%; height: 100%; padding: 2rem; text-align: center;
}
.adult-card-photo-ph i    { font-size: 2.5rem; color: rgba(138,0,209,.2); }
.adult-card-photo-ph span { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(138,0,209,.3); }
.adult-card-body      { padding: var(--lg) var(--xl); display: flex; flex-direction: column; justify-content: center; }
.adult-card-tag       {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .65rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--purple); background: rgba(138,0,209,.08);
  padding: .3rem .8rem; border-radius: 100px; margin-bottom: var(--md); align-self: flex-start;
}
.adult-card-tag i       { font-size: .7rem; }
.adult-card-name        { font-family: "Arima", serif; font-size: 1.6rem; font-weight: 300; color: var(--ink); line-height: 1.2; margin-bottom: .35rem; }
.adult-card-name em     { font-style: italic; color: var(--purple); }
.adult-card-subtitle    { font-size: .8rem; font-weight: 400; color: var(--muted); margin-bottom: var(--md); }
.adult-card-meta        { display: flex; flex-wrap: wrap; gap: var(--sm); margin-bottom: var(--md); padding: var(--md); background: var(--sand); border-radius: 6px; }
.adult-card-desc        { font-size: .88rem; font-weight: 300; line-height: 1.8; color: var(--ink-s); }
.adult-card-participants {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 300; color: var(--muted);
  margin-top: var(--md); padding-top: var(--md); border-top: 1px solid var(--bdr);
}
.adult-card-participants i { color: var(--purple); }
.adult-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: var(--md); flex-wrap: wrap; gap: .75rem; }

/* ══ ACOMPANHAMENTO INDIVIDUAL ══════════════════ */
.individual-section  { background: var(--purple-dp); padding: var(--xxl) var(--mg); }
.individual-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: var(--xl); align-items: center; }
.individual-photo    {
  position: relative; border-radius: 10px; overflow: hidden;
  min-height: 420px; background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  border: 1px dashed rgba(255,255,255,.15);
}
.individual-photo img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 10px; }
.individual-photo-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; text-align: center; padding: 2rem;
}
.individual-photo-ph i    { font-size: 3rem; color: rgba(255,255,255,.15); }
.individual-photo-ph span { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.25); }
.individual-features { display: flex; flex-direction: column; gap: var(--sm); margin: var(--lg) 0; }
.i-feat   { display: flex; align-items: flex-start; gap: .75rem; font-size: .88rem; font-weight: 300; color: rgba(255,255,255,.65); line-height: 1.55; }
.i-feat i { color: var(--pink-lt); margin-top: .15rem; flex-shrink: 0; font-size: .8rem; }
.individual-note {
  background: rgba(138,0,209,.3); border: 1px solid rgba(180,77,232,.3);
  border-radius: 8px; padding: 1rem 1.25rem;
  font-size: .82rem; font-weight: 300; color: rgba(255,255,255,.7);
  display: flex; align-items: center; gap: .75rem; margin-top: var(--lg);
}
.individual-note i { color: var(--pink-lt); flex-shrink: 0; }

/* ══ INFO STRIP ═════════════════════════════════ */
.info-strip      { background: var(--sand); padding: var(--xl) var(--mg); }
.info-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--md); }
.info-card       {
  background: var(--wh); border-radius: 8px; padding: var(--lg);
  border: 1px solid var(--bdr); display: flex; flex-direction: column; gap: .5rem;
}
.info-card-icon  { font-size: 1.4rem; color: var(--purple); margin-bottom: .25rem; }
.info-card-title { font-family: "Arima", serif; font-size: 1.1rem; font-weight: 300; color: var(--ink); }
.info-card-body  { font-size: .82rem; font-weight: 300; line-height: 1.6; color: var(--muted); }
.info-card-body a { color: var(--purple); }
.info-card-body a:hover { color: var(--pink-lt); }

/* ══ ATELIERS — RESPONSIVO ══════════════════════ */
@media (max-width: 960px) {
  .anchor-bar          { top: 80px; }
  .child-grid          { grid-template-columns: 1fr; }
  .adult-card          { grid-template-columns: 1fr; min-height: auto; }
  .adult-card.reverse  { direction: ltr; }
  .adult-card-body     { padding: var(--md); }
  .individual-grid     { grid-template-columns: 1fr; gap: var(--lg); }
  .individual-photo    { min-height: 280px; }
  .info-strip-grid     { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .info-strip-grid     { grid-template-columns: 1fr; }
  .adult-card-footer   { flex-direction: column; align-items: flex-start; }
}

/* ══ SOBRE KARINA — HERO INTERNO (aliases simples) ══ */
/* .hero-inner-title = mesmo padrão de .hero-ht */
.hero-inner-title {
  font-family: "Arima", serif; font-weight: 100;
  font-size: clamp(2.5rem,5vw,4rem); line-height: 1.08; color: var(--wh);
}
.hero-inner-title em { font-style: italic; color: var(--pink-lt); }

/* .hero-inner-sub = mesmo padrão de .hero-hs */
.hero-inner-sub { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,.7); margin-top: .75rem; }

/* .hero-breadcrumb = mesmo padrão de .hero-bc */
.hero-breadcrumb {
  font-size: .7rem; font-weight: 400; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: .75rem;
}
.hero-breadcrumb a      { color: rgba(255,255,255,.5); transition: color .2s; }
.hero-breadcrumb a:hover{ color: var(--wh); }
.hero-breadcrumb span   { margin: 0 .4rem; }

/* ══ SOBRE KARINA — INTRO SPLIT ══════════════════ */
.intro-split { display: grid; grid-template-columns: 5fr 7fr; gap: var(--xl); align-items: start; }
.intro-photo { position: relative; }
.intro-photo-frame { border-radius: 6px; overflow: hidden; aspect-ratio: 3/4; position: relative; }
.intro-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.intro-photo-badge {
  position: absolute; bottom: var(--md); left: var(--md);
  background: rgba(61,0,96,.85); backdrop-filter: blur(8px);
  border: 0.5px solid rgba(255,255,255,.15);
  padding: .6rem 1rem; border-radius: 8px;
}
.intro-photo-badge p      { font-size: .7rem; font-weight: 400; color: rgba(255,255,255,.6); letter-spacing: .05em; text-transform: uppercase; margin-bottom: .15rem; }
.intro-photo-badge strong { font-size: .85rem; font-weight: 400; color: var(--wh); }
.intro-text blockquote {
  font-family: "Arima", serif; font-size: 1.35rem; font-weight: 300; font-style: italic;
  line-height: 1.55; color: var(--purple);
  border-left: 2px solid var(--purple); padding-left: 1.5rem; margin: var(--lg) 0;
}

/* .credentials = mesmo estilo de .creds (index) com ícone em vez de ponto */
.credentials { display: flex; flex-direction: column; gap: 10px; margin-top: var(--lg); }
.credentials .cred { display: flex; gap: .75rem; align-items: flex-start; font-size: .82rem; font-weight: 300; color: var(--ink-s); line-height: 1.55; }
/* sobrescreve o ::before do .cred global para não conflitar */
.credentials .cred::before { display: none; }
.cred-icon {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(138,0,209,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--purple); font-size: .75rem;
}

/* .langs / .lang-badge — mesmos tokens de .lgs / .lg-b */
.langs { display: flex; gap: 8px; margin-top: var(--lg); }
.lang-badge {
  font-size: .68rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--purple); border: .5px solid rgba(138,0,209,.3); padding: .35rem .9rem; border-radius: 100px;
}

/* ══ SOBRE KARINA — BIO LONGA ════════════════════ */
.bio-section { padding: var(--xxl) var(--mg); background: var(--sand); }
.bio-grid    { display: grid; grid-template-columns: 3fr 5fr; gap: var(--xl); align-items: start; }
.bio-sticky  { position: sticky; top: 130px; }
.bio-label   { font-family: "Arima", serif; font-size: clamp(1.6rem,2.5vw,2.2rem); font-weight: 300; line-height: 1.25; color: var(--ink); margin-bottom: var(--md); }
.bio-label em { font-style: italic; color: var(--purple); }
.bio-divider { width: 40px; height: 2px; background: var(--purple); margin-bottom: var(--lg); }
.bio-pillar  { display: flex; gap: .75rem; margin-bottom: var(--md); }
.bio-pill-dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--purple); flex-shrink: 0; margin-top: .6rem; }
.bio-pill-txt { font-size: .82rem; font-weight: 300; color: var(--muted); line-height: 1.6; }
.bio-pill-txt strong { color: var(--ink); font-weight: 400; }
.bio-pull {
  font-family: "Arima", serif; font-size: 1.2rem; font-weight: 300; font-style: italic;
  line-height: 1.55; color: var(--purple);
  border-left: 2px solid rgba(138,0,209,.3); padding-left: 1.25rem; margin: var(--lg) 0;
}

/* .gal-th-placeholder — galeria sem foto ainda */
.gal-th-placeholder {
  aspect-ratio: 4/3; background: #e0d9e8; border-radius: 6px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  border: 2px dashed rgba(138,0,209,.2);
}
.gal-th-placeholder i    { font-size: 1.5rem; color: rgba(138,0,209,.3); }
.gal-th-placeholder span { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(138,0,209,.4); }

/* ══ SOBRE KARINA — RESPONSIVO ═══════════════════ */
@media (max-width: 960px) {
  .intro-split        { grid-template-columns: 1fr; gap: var(--lg); }
  .intro-photo-frame  { aspect-ratio: 4/3; }
  .bio-grid           { grid-template-columns: 1fr; gap: var(--lg); }
  .bio-sticky         { position: static; }
}

/* ══ MODALIDADES — cards sobre fundo claro (.sw.sd) ════════ */
/* Quando .at-g está dentro de uma seção clara, os cards precisam
   de cores invertidas (tudo definido para fundo escuro no padrão) */
.sw.sd .at-c,
.sw .at-c {
  background: var(--wh);
  border: 1px solid var(--bdr);
}
.sw.sd .at-c:hover,
.sw .at-c:hover {
  background: var(--wh);
  box-shadow: 0 4px 24px rgba(138,0,209,.08);
}
.sw.sd .at-t,
.sw .at-t { color: var(--ink); }

.sw.sd .at-d,
.sw .at-d { color: var(--ink-s); }

.sw.sd .at-ic,
.sw .at-ic {
  background: rgba(138,0,209,.08);
  color: var(--purple);
}


/* ══════════════════════════════════════════════════════════════
   ANIMAÇÕES DE ENTRADA — só CSS, sem JavaScript
   Técnica: @keyframes + animation-fill-mode: both
   Os elementos começam invisíveis e animam quando entram na viewport
   graças ao scroll-timeline (browsers modernos) com fallback
   via intersection-observer-free: usamos animation-play-state
   controlado pela pseudo-class :is() + @supports.

   Abordagem escolhida: animation-timeline: view() — CSS puro,
   suportado em Chrome 115+, Edge 115+, Firefox 114+, Safari 17+.
   Para browsers antigos o elemento simplesmente aparece visível
   (graceful degradation via @supports).
   ══════════════════════════════════════════════════════════════ */

/* ── Keyframes base ── */
@keyframes kb-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes kb-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes kb-fade-left {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes kb-fade-right {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes kb-scale-up {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Utilitário base: tudo começa invisível ──
   Aplicado com animation-fill-mode: both + animation-range
   para disparar só quando o elemento entra na viewport         */
@supports (animation-timeline: scroll()) {

  /* ── Seções inteiras: fade-up ao entrar na viewport ── */
  .sw,
  .bio-section,
  .trois-temps,
  .quote-section,
  .mosaic-section,
  .info-strip,
  .individual-section,
  .gal-s,
  .cta-s {
    animation: kb-fade-up .65s ease both;
    animation-timeline: view();
    animation-range: entry 0% entry 30%;
  }

  /* ── Hero interno: fade simples (já está no topo) ── */
  .hero-inner-c {
    animation: kb-fade-up .7s ease both;
    animation-delay: .1s;
  }

  /* ── Eyebrow labels ── */
  .ey {
    animation: kb-fade-up .5s ease both;
    animation-timeline: view();
    animation-range: entry 0% entry 25%;
  }

  /* ── Títulos de seção ── */
  .st {
    animation: kb-fade-up .6s ease both;
    animation-timeline: view();
    animation-range: entry 0% entry 28%;
  }

  /* ── Parágrafos ── */
  .sb {
    animation: kb-fade-up .55s ease both;
    animation-timeline: view();
    animation-range: entry 0% entry 32%;
  }

  /* ── Botões ── */
  .btn {
    animation: kb-fade-up .5s ease both;
    animation-timeline: view();
    animation-range: entry 0% entry 35%;
  }

  /* ── Cards de ateliers (fundo escuro) ── */
  .at-c:nth-child(1) { animation: kb-fade-up .55s .00s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .at-c:nth-child(2) { animation: kb-fade-up .55s .10s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .at-c:nth-child(3) { animation: kb-fade-up .55s .20s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .at-c:nth-child(4) { animation: kb-fade-up .55s .00s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .at-c:nth-child(5) { animation: kb-fade-up .55s .10s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .at-c:nth-child(6) { animation: kb-fade-up .55s .20s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }

  /* ── Cards "para quem" ── */
  .pq-c:nth-child(1) { animation: kb-fade-up .55s .00s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .pq-c:nth-child(2) { animation: kb-fade-up .55s .08s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .pq-c:nth-child(3) { animation: kb-fade-up .55s .16s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .pq-c:nth-child(4) { animation: kb-fade-up .55s .24s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }

  /* ── Cards FAQ ── */
  .faq-item:nth-child(1) { animation: kb-fade-up .5s .00s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .faq-item:nth-child(2) { animation: kb-fade-up .5s .07s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .faq-item:nth-child(3) { animation: kb-fade-up .5s .14s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .faq-item:nth-child(4) { animation: kb-fade-up .5s .21s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .faq-item:nth-child(5) { animation: kb-fade-up .5s .28s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .faq-item:nth-child(6) { animation: kb-fade-up .5s .35s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }

  /* ── Cards de ateliers (página ateliers.html) ── */
  .child-card:nth-child(1) { animation: kb-fade-up .55s .00s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .child-card:nth-child(2) { animation: kb-fade-up .55s .12s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .adult-card              { animation: kb-fade-up .6s ease both; animation-timeline: view(); animation-range: entry 0% entry 30%; }

  /* ── Temps cards (trois-temps) ── */
  .temps-card:nth-child(1) { animation: kb-fade-up .55s .00s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .temps-card:nth-child(2) { animation: kb-fade-up .55s .10s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .temps-card:nth-child(3) { animation: kb-fade-up .55s .20s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }

  /* ── Pillars (pilar lateral da bio / suíça) ── */
  .pillar:nth-child(1) { animation: kb-fade-left .5s .00s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .pillar:nth-child(2) { animation: kb-fade-left .5s .10s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .pillar:nth-child(3) { animation: kb-fade-left .5s .20s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }

  /* ── Bio pillars ── */
  .bio-pillar:nth-child(1) { animation: kb-fade-left .5s .00s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .bio-pillar:nth-child(2) { animation: kb-fade-left .5s .08s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .bio-pillar:nth-child(3) { animation: kb-fade-left .5s .16s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .bio-pillar:nth-child(4) { animation: kb-fade-left .5s .24s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }

  /* ── Credentials (sobre karina) ── */
  .credentials .cred:nth-child(1) { animation: kb-fade-up .5s .00s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .credentials .cred:nth-child(2) { animation: kb-fade-up .5s .08s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .credentials .cred:nth-child(3) { animation: kb-fade-up .5s .16s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .credentials .cred:nth-child(4) { animation: kb-fade-up .5s .24s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }

  /* ── Foto + texto em grid (split / symbol) ── */
  .what-img,
  .symbol-img,
  .intro-photo,
  .individual-photo {
    animation: kb-fade-right .65s ease both;
    animation-timeline: view();
    animation-range: entry 0% entry 30%;
  }

  /* ── Intro text (sobre karina) ── */
  .intro-text {
    animation: kb-fade-left .65s ease both;
    animation-timeline: view();
    animation-range: entry 0% entry 30%;
  }

  /* ── Bio content ── */
  .bio-content {
    animation: kb-fade-right .65s ease both;
    animation-timeline: view();
    animation-range: entry 0% entry 30%;
  }

  /* ── Galeria thumbs ── */
  .gal-th {
    animation: kb-scale-up .5s ease both;
    animation-timeline: view();
    animation-range: entry 0% entry 35%;
  }

  /* ── Quote text ── */
  .quote-text {
    animation: kb-fade-up .7s ease both;
    animation-timeline: view();
    animation-range: entry 0% entry 28%;
  }

  /* ── Hero slide content ── */
  .slide.on .slide-title { animation: kb-fade-up .7s .1s ease both; }
  .slide.on .slide-sub   { animation: kb-fade-up .6s .25s ease both; }
  .slide.on .slide-cta   { animation: kb-fade-up .5s .4s ease both; }

  /* ── Palavras-chave ── */
  .kw {
    animation: kb-scale-up .4s ease both;
    animation-timeline: view();
    animation-range: entry 0% entry 38%;
  }

  /* ── Info cards (página ateliers) ── */
  .info-card:nth-child(1) { animation: kb-fade-up .5s .00s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .info-card:nth-child(2) { animation: kb-fade-up .5s .09s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .info-card:nth-child(3) { animation: kb-fade-up .5s .18s ease both; animation-timeline: view(); animation-range: entry 0% entry 35%; }

}

/* ── Respeita a preferência do sistema: sem animações ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   ANIMAÇÃO DE ENTRADA DO NAV — dispara uma vez ao carregar a página
   Logo: desce do topo + fade   (kb-nav-logo)
   Links: sobem + fade, escalonados  (kb-nav-item)
   CTA: escala + fade  (kb-nav-cta)
   Hambúrguer mobile: fade-in simples
   ══════════════════════════════════════════════════════════════ */

@keyframes kb-nav-logo {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes kb-nav-item {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes kb-nav-cta {
  from { opacity: 0; transform: scale(.9) translateY(-6px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes kb-nav-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Logo — ligeiramente mais rápido, é o primeiro a aparecer */
nav:not(.nav-drawer) .nav-logo {
  animation: kb-nav-logo .55s cubic-bezier(.22,1,.36,1) both;
}

/* Links do menu desktop — aparecem em cascata */
.nav-links li:nth-child(1) a { animation: kb-nav-item .45s .15s cubic-bezier(.22,1,.36,1) both; }
.nav-links li:nth-child(2) a { animation: kb-nav-item .45s .22s cubic-bezier(.22,1,.36,1) both; }
.nav-links li:nth-child(3) a { animation: kb-nav-item .45s .29s cubic-bezier(.22,1,.36,1) both; }
.nav-links li:nth-child(4) a { animation: kb-nav-item .45s .36s cubic-bezier(.22,1,.36,1) both; }
.nav-links li:nth-child(5) a { animation: kb-nav-item .45s .43s cubic-bezier(.22,1,.36,1) both; }

/* Seletor de idioma — aparece junto com o último link */
.lang-sw { animation: kb-nav-fade .4s .50s ease both; }

/* CTA "Agendar sessão" — pop suave no final */
nav:not(.nav-drawer) .nav-cta {
  animation: kb-nav-cta .4s .58s cubic-bezier(.34,1.56,.64,1) both;
}

/* Hambúrguer (mobile) — fade simples */
.nav-ham {
  animation: kb-nav-fade .4s .2s ease both;
}

/* Respeita preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  nav:not(.nav-drawer) .nav-logo,
  .nav-links li a,
  .lang-sw,
  nav:not(.nav-drawer) .nav-cta,
  .nav-ham {
    animation: none;
  }
}
