:root{
  --bg: #f9f1e7;
  --block: #cf7a75;
  --indexBar: #b06243;
  --indexAccent: #cf7a75;
  --textLight: #ffffff;
  --textDark: #2a241f;
  --muted: rgba(42,36,31,.75);
  --blurMax: 14px;
  --maxW: 420px;
  --padX: 18px;
  --padY: 16px;
  --panelBg: #fff7ef;
  --panelShadow: 0 14px 40px rgba(42,36,31,.18);
  --panelRadius: 18px;
  --panelBorder: rgba(42,36,31,.10);
  --fontTitle: 'Oswald', sans-serif;
  --fontBody: 'Glacial Indifference', system-ui, sans-serif;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  background: var(--bg);
  font-family: var(--fontBody);
  color: var(--textDark);
  overflow-x:hidden;
}

h1, h2, h3, .indexTitle{
  font-family: var(--fontTitle);
  font-weight: 700;
  letter-spacing: .035em;
  text-transform: uppercase;
}

p, li, button, input, textarea, select, label{
  font-family: var(--fontBody);
}

.coverWrap{ height: 200vh; position: relative; }
.cover{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
  opacity: 1;
  filter: blur(0px);
  will-change: opacity, filter;
}
.stage{ position:relative; width:100vw; height:100vh; overflow:hidden; }
.block{
  position:absolute;
  background: var(--block);
  transform: scaleX(0);
  animation: stretchIn .75s cubic-bezier(.22,.61,.36,1) forwards;
  will-change: transform;
}
.block--top{ top: 40px; left: -80px; width: 320px; height: 90px; transform-origin: left center; }
.block--bottom{
  right: 0;
  bottom: 100px;
  width: 520px;
  height: 190px;
  transform-origin: right center;
  animation-delay: .12s;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding: 32px 40px;
}
@keyframes stretchIn{ from{ transform: scaleX(0); } to{ transform: scaleX(1); } }
.block--bottom p{
  margin:0;
  color: var(--textLight);
  font-size: 16px;
  line-height: 1.45;
  text-align: right;
  max-width: 300px;
  opacity:0;
  animation: fadeIn .35s ease forwards;
  animation-delay: .9s;
}
.logo-center{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
  opacity:0;
  animation: fadeIn .35s ease forwards;
  animation-delay: .9s;
}
.logo-center img{ width: 80%; height: auto; max-width: 420px; }
@media (min-width: 481px){ .logo-center img{ max-width: 560px; } }
@keyframes fadeIn{ from{ opacity:0; } to{ opacity:1; } }
@media (max-width: 480px){
  .block--top{ width: 300px; height: 80px; left: -110px; }
  .block--bottom{ right: 0; bottom: 80px; width: min(92vw, 520px); height: 210px; padding: 28px 24px; }
  .block--bottom p{ font-size: 15px; max-width: 260px; }
  .logo-center img{ max-width: 300px; transform: translateY(-40px); }
}

.indexScene{
  min-height: 130vh;
  padding: 22px 16px 90px;
  display:flex;
  justify-content:center;
  background: var(--bg);
  opacity: 0;
  pointer-events:none;
  filter: blur(var(--blurMax));
  will-change: opacity, filter;
}
body.revealIndex .indexScene{ opacity: 1; pointer-events:auto; filter: blur(0px); transition: opacity .25s ease, filter .35s ease; }
.indexFrame{ width: min(var(--maxW), 92vw); position: relative; padding-left: 18px; }
.indexSpine{
  position:absolute;
  left: 0;
  top: 86px;
  width: 6px;
  height: calc(100% - 86px);
  background: var(--indexAccent);
  transform: scaleY(0);
  transform-origin: top center;
  border-radius: 999px;
}
.indexBar{ height: 70px; width: 100%; background: var(--indexBar); transform: scaleX(0); transform-origin: left center; }
.indexTitle{
  position:absolute;
  right: 16px;
  top: 11px;
  color: var(--textLight);
  font-size: 34px;
  line-height: 1;
  opacity: 0;
  text-align: right;
}
.indexBody{ padding: 18px 8px 0 8px; color: var(--textDark); }
.cat{ margin: 20px 0 26px; }
.cat h3{
  margin:0 0 9px;
  color: var(--indexBar);
  font-family: var(--fontTitle);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: .025em;
}
.cat ul{ list-style:none; margin:0; padding:0; color: var(--textDark); font-size: 15.5px; line-height: 1.45; }
.cat li{ margin: 2px 0; color: var(--textDark); }
.shopLink{
  appearance:none;
  border:0;
  background:transparent;
  padding:0;
  margin:0;
  font: inherit;
  color: var(--textDark);
  text-align:left;
  cursor:pointer;
  position:relative;
  display:inline;
}
.shopLink::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:100%;
  height:2px;
  background: rgba(176,98,67,.35);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .18s ease;
}
.shopLink:hover::after, .shopLink:focus-visible::after{ transform: scaleX(1); }
.shopLink:focus-visible{ outline: 2px solid rgba(176,98,67,.35); outline-offset: 3px; border-radius: 6px; }
body.revealIndex .indexBar{ animation: idxStretch .65s cubic-bezier(.22,.61,.36,1) forwards; }
body.revealIndex .indexSpine{ animation: idxSpine .8s cubic-bezier(.22,.61,.36,1) forwards; animation-delay: .10s; }
body.revealIndex .indexTitle{ animation: idxTitle .35s ease forwards; animation-delay: .55s; }
body.revealIndex .indexBody{ animation: idxBodyIn .35s ease forwards; animation-delay: .60s; opacity: 0; filter: blur(10px); }
@keyframes idxStretch{ from{ transform: scaleX(0); } to{ transform: scaleX(1); } }
@keyframes idxSpine{ from{ transform: scaleY(0); } to{ transform: scaleY(1); } }
@keyframes idxTitle{ from{ opacity:0; filter: blur(10px);} to{ opacity:1; filter: blur(0px);} }
@keyframes idxBodyIn{ from{ opacity:0; filter: blur(10px); transform: translateY(8px);} to{ opacity:1; filter: blur(0px); transform: translateY(0);} }

.panelOverlay{ position:fixed; inset:0; background: transparent; backdrop-filter: none; opacity:0; pointer-events:none; transition: opacity .18s ease; z-index: 1000; }
body.panelOpen .panelOverlay{ opacity:1; pointer-events:auto; }
.panel{
  position:fixed;
  z-index: 1001;
  display:block;
  background: #fff;
  border: 1px solid rgba(42,36,31,.10);
  box-shadow: var(--panelShadow);
  overflow:hidden;
  opacity:0;
  pointer-events:none;
  transform: translateX(14px);
  transition: transform .22s cubic-bezier(.22,.61,.36,1), opacity .18s ease;
}
body.panelOpen .panel{ opacity:1; pointer-events:auto; transform: translateX(0); }
@media (min-width: 721px){
  .panel{ width: 430px; height: min(740px, 86vh); top: 50%; right: 40px; transform: translate(14px, -50%); border-radius: var(--panelRadius); }
  body.panelOpen .panel{ transform: translate(0, -50%); }
}
@media (max-width: 720px){
  .panel{ inset: 0; width: 100vw; height: 100vh; border-radius: 0; transform: translateX(14px); }
  body.panelOpen .panel{ transform: translateX(0); }
}
.panelBack{
  position:absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  color: var(--textDark);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 24px rgba(42,36,31,.18);
}
.panelBack:focus-visible{ outline: 2px solid rgba(176,98,67,.35); outline-offset: 3px; }
.panelGrid{ width:100%; height:100%; display:grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.cell{ position:relative; overflow:hidden; border-right: 1px solid rgba(42,36,31,.10); border-bottom: 1px solid rgba(42,36,31,.10); min-height:0; }
.cell:nth-child(2), .cell:nth-child(4){ border-right:none; }
.cell:nth-child(3), .cell:nth-child(4){ border-bottom:none; }
.cell.photo{ background:#e5d3c5; }
.cell.photo::before{ content:"Imagem"; position:absolute; inset:0; display:grid; place-items:center; color:rgba(42,36,31,.36); font-family:var(--fontTitle); text-transform:uppercase; letter-spacing:.05em; }
.cell.photo img{ width:100%; height:100%; object-fit: cover; display:block; position:relative; z-index:1; }
.logoBadge{ position:absolute; right: 10px; bottom: 10px; width: 96px; height: 96px; background: rgba(255,255,255,.78); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.55); overflow:hidden; display:grid; place-items:center; box-shadow: 0 14px 40px rgba(42,36,31,.18); z-index:2; }
.logoBadge img{ width:100%; height:100%; object-fit: cover; }
.cell.benefit{ background: var(--indexBar); color: var(--textLight); padding: 16px 15px 12px; display:flex; flex-direction:column; gap: 12px; }
.cell.benefit h2{ margin:0; font-family:var(--fontTitle); font-weight:700; letter-spacing:.035em; text-transform:uppercase; font-size: 25px; line-height:1.05; }
.cell.benefit ul{ margin:0; padding-left: 18px; font-size: 14px; line-height: 1.35; }
.cell.contact{ background: var(--bg); padding: 15px; display:flex; flex-direction:column; gap: 10px; }
.cell.contact h3, .cell.about h3{ margin:0; font-family:var(--fontTitle); font-weight:700; letter-spacing:.035em; text-transform:uppercase; font-size: 23px; line-height:1; }
.cell.contact h3{ color: var(--indexBar); }
.contactLines{ margin:0; padding:0; list-style:none; display:flex; flex-wrap:wrap; gap: 8px; color: rgba(0,0,0,.70); }
.contactLines li{ margin: 0; position:relative; }
.contactAction{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(42,36,31,.13);
  background: rgba(255,255,255,.78);
  color: var(--indexBar);
  display:grid;
  place-items:center;
  cursor:pointer;
  text-decoration:none;
  box-shadow: 0 8px 20px rgba(42,36,31,.08);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  position:relative;
}
.contactAction span{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.contactAction svg{ width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.contactAction--whatsapp svg{ fill:currentColor; stroke:none; }
.contactAction:hover, .contactAction:focus-visible{ transform: translateY(-1px); background:#fff; box-shadow: 0 12px 26px rgba(42,36,31,.14); outline:none; }
.contactAction::after{
  content: attr(data-tooltip);
  position:absolute;
  left:50%;
  bottom: calc(100% + 9px);
  transform: translate(-50%, 4px);
  max-width: 220px;
  width: max-content;
  padding: 7px 9px;
  border-radius: 9px;
  background: rgba(42,36,31,.94);
  color:#fff;
  font-size: 11.5px;
  line-height:1.25;
  text-align:center;
  white-space: normal;
  opacity:0;
  pointer-events:none;
  transition: opacity .14s ease, transform .14s ease;
  z-index:20;
}
.contactAction::before{
  content:"";
  position:absolute;
  left:50%;
  bottom: calc(100% + 4px);
  transform: translateX(-50%);
  border:5px solid transparent;
  border-top-color: rgba(42,36,31,.94);
  opacity:0;
  pointer-events:none;
  transition: opacity .14s ease;
  z-index:20;
}
.contactAction:hover::after, .contactAction:focus-visible::after{ opacity:1; transform: translate(-50%, 0); }
.contactAction:hover::before, .contactAction:focus-visible::before{ opacity:1; }
.contactAction.isCopied{ background:#fff; color: var(--indexAccent); }
.contactEmpty{ font-size: 12.5px; color: rgba(0,0,0,.55); }
.mapBox{ flex:1 1 auto; min-height:0; background:#fff; border: 1px solid rgba(42,36,31,.10); overflow:hidden; }
.mapBox iframe{ width:100%; height:100%; border:0; }
.cell.about{ background: var(--indexAccent); padding: 15px; color: #3b2320; display:flex; flex-direction:column; gap: 10px; }
.cell.about h3{ color: #3b2320; }
.cell.about p{ margin:0; font-size: 12.8px; line-height: 1.38; color: rgba(59,35,32,.92); overflow:auto; }

@media (prefers-reduced-motion: reduce){
  .block{ animation:none; transform: scaleX(1); }
  .block--bottom p, .logo-center{ animation:none; opacity:1; }
  .cover{ position:relative; height:auto; }
  .coverWrap{ height:auto; }
  .indexScene{ opacity:1; pointer-events:auto; filter:none; }
  .indexBar, .indexSpine{ transform:none; }
  .indexTitle{ opacity:1; }
  .indexBody{ opacity:1; filter:none; transform:none; }
  .panelOverlay, .panel{ transition:none; }
}

/* Time Cherie hub return control — keeps the Clube as an experience inside the platform. */
.timeCherieBack{
  position:fixed;top:14px;left:14px;z-index:1400;display:inline-flex;align-items:center;gap:8px;
  min-height:38px;padding:5px 11px 5px 6px;border-radius:999px;border:1px solid rgba(118,40,65,.16);
  background:rgba(253,244,233,.92);color:#762841;text-decoration:none;font:700 11px/1 var(--fontBody);
  box-shadow:0 10px 28px rgba(42,36,31,.12);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  transition:transform .16s ease,box-shadow .16s ease,background .16s ease;
}
.timeCherieBack img{width:28px;height:28px;display:block;border-radius:8px}
.timeCherieBack:hover,.timeCherieBack:focus-visible{transform:translateY(-1px);background:#fffaf5;box-shadow:0 14px 34px rgba(42,36,31,.16);outline:none}
@media(max-width:480px){.timeCherieBack{top:10px;left:10px}.timeCherieBack span{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.timeCherieBack{padding:5px}}
