/* ==========================================================================
   SINtegração | S.I.N. University
   styles.css — identidade visual S.I.N.: vermelho, laranja, branco, azul de apoio
   Estrutura: 1) Tokens  2) Reset  3) Tipografia/Utilitários  4) Navegação/Progresso
   5) Modais  6) Botões  7) Cenas genéricas  8) Cena a Cena  9) Responsivo
   10) Acessibilidade / prefers-reduced-motion
   ========================================================================== */

/* ---------- 1) TOKENS ---------- */
:root{
  --red:#C8102E;
  --red-dark:#8C0A20;
  --red-deep:#7A0919;
  --orange:#F5821F;
  --orange-light:#FFB25C;
  --orange-pale:#FFE9D2;
  --blue:#1B4F9C;
  --blue-light:#2E7BD6;
  --white:#ffffff;
  --gray-050:#F7F6F5;
  --gray-100:#F0EFEE;
  --gray-200:#E4E2E0;
  --gray-400:#a3a0a0;
  --gray-600:#6b6866;
  --gray-800:#3a3735;
  --ink:#1D1A18;
  --dark-bg:#171412;
  --dark-surface:#221D1A;
  --radius-sm:10px;
  --radius-md:18px;
  --radius-lg:28px;
  --shadow-soft:0 20px 50px -20px rgba(30,10,10,.35);
  --shadow-card:0 10px 30px -12px rgba(30,10,10,.25);
  --font-display:'Poppins', 'Inter', sans-serif;
  --font-body:'Inter', 'Poppins', sans-serif;
  --maxw:1180px;
  --dur:.6s;
  --ease:cubic-bezier(.22,.9,.3,1);
}

@media (prefers-color-scheme: dark){
  :root{ --gray-050:#1b1816; --gray-100:#221e1b; --ink:#F3EFEC; }
}

/* ---------- 2) RESET ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html,body{ margin:0; padding:0; }
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
[hidden]{ display:none !important; }
img,video,svg{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; }
input,textarea{ font-family:inherit; }
h1,h2,h3,h4,p,ul,ol,figure{ margin:0; }
ul,ol{ padding:0; list-style:none; }
a{ color:inherit; }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

.skip-link{
  position:absolute; left:-999px; top:0; background:var(--ink); color:#fff;
  padding:.8rem 1.2rem; z-index:999; border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; }

:focus-visible{ outline:3px solid var(--blue); outline-offset:3px; }

/* ---------- 3) TIPOGRAFIA / UTILITÁRIOS ---------- */
.scene-eyebrow{
  font-family:var(--font-display); font-weight:600; letter-spacing:.08em;
  text-transform:uppercase; font-size:.8rem; color:var(--orange);
  margin-bottom:.6rem;
}
.scene--dark .scene-eyebrow, .scene--accent .scene-eyebrow{ color:var(--orange-light); }
.scene-title{
  font-family:var(--font-display); font-weight:800; letter-spacing:-.01em;
  font-size:clamp(1.9rem,4.2vw,3.2rem); line-height:1.08; max-width:900px;
  margin-bottom:1.1rem;
}
.scene-title--xl{ font-size:clamp(3rem,9vw,6.5rem); line-height:.95; }
.scene-lead{ font-size:1.15rem; color:var(--gray-600); max-width:680px; margin-bottom:2rem; }
.scene--dark .scene-lead, .scene--accent .scene-lead{ color:rgba(255,255,255,.85); }

.reveal-on-scroll{
  opacity:0; transform:translateY(28px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-on-scroll.is-visible{ opacity:1; transform:translateY(0); }

/* count-up numbers share this class */
.stat-number{ font-family:var(--font-display); font-weight:800; font-variant-numeric:tabular-nums; }

/* ---------- 4) NAVEGAÇÃO / PROGRESSO ---------- */
.main-nav{
  position:fixed; top:0; left:0; right:0; z-index:60;
  backdrop-filter:blur(10px); background:rgba(255,255,255,.85);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.main-nav__inner{
  max-width:var(--maxw); margin:0 auto; display:flex; align-items:center;
  justify-content:space-between; padding:.7rem 1.4rem;
}
.main-nav__logo{ display:flex; align-items:center; gap:.5rem; font-family:var(--font-display); font-weight:800; color:var(--red); }
.sin-logo-icon{ width:26px; height:26px; color:var(--red); }
.sin-logo-icon--lg{ width:52px; height:52px; color:#fff; }
.main-nav__progress{ display:flex; align-items:center; gap:.8rem; min-width:220px; }
.journey-toggle{
  background:none; border:none; display:flex; gap:.4rem; align-items:baseline;
  font-family:var(--font-display); font-weight:600; font-size:.85rem; color:var(--ink);
}
.journey-toggle__pct{ color:var(--orange); font-weight:800; }
.progress-track{ flex:1; height:6px; background:var(--gray-200); border-radius:99px; overflow:hidden; min-width:90px; }
.progress-fill{ height:100%; width:0%; background:linear-gradient(90deg,var(--orange),var(--red)); transition:width .5s var(--ease); }

.journey-panel{
  position:fixed; top:64px; right:1rem; z-index:70; width:min(360px,92vw);
  background:#fff; border-radius:var(--radius-md); box-shadow:var(--shadow-soft);
  padding:1.2rem; max-height:70vh; overflow-y:auto;
}
.journey-panel__head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:.8rem; }
.journey-panel__head h2{ font-family:var(--font-display); font-size:1rem; font-weight:700; }
.icon-btn{ background:var(--gray-100); border:none; border-radius:50%; width:32px; height:32px; display:grid; place-items:center; }
.journey-list{ display:flex; flex-direction:column; gap:.35rem; }
.journey-list li{
  display:flex; align-items:center; gap:.6rem; padding:.5rem .6rem; border-radius:10px; font-size:.9rem;
}
.journey-list li[data-state="done"]{ color:var(--gray-600); }
.journey-list li[data-state="current"]{ background:var(--orange-pale); font-weight:700; color:var(--red-dark); }
.journey-list li[data-state="locked"]{ color:var(--gray-400); }
.journey-list button{ background:none; border:none; text-align:left; width:100%; display:flex; gap:.6rem; padding:0; font:inherit; color:inherit; }
.journey-list button:disabled{ cursor:not-allowed; }
.journey-marker{ font-weight:800; }

.save-toast{
  position:fixed; bottom:1.2rem; left:50%; transform:translate(-50%,140%);
  background:var(--ink); color:#fff; padding:.65rem 1.2rem; border-radius:99px;
  font-size:.85rem; z-index:80; transition:transform .4s var(--ease); box-shadow:var(--shadow-card);
}
.save-toast.is-visible{ transform:translate(-50%,0); }

.floating-btn.motion-btn{
  position:fixed; bottom:1.1rem; right:1.1rem; z-index:75;
  background:#fff; border:1px solid var(--gray-200); border-radius:99px;
  padding:.55rem .9rem; display:flex; align-items:center; gap:.4rem; font-size:.78rem;
  box-shadow:var(--shadow-card);
}
.motion-btn[aria-pressed="true"]{ background:var(--ink); color:#fff; }

/* ---------- 5) MODAIS ---------- */
.modal-overlay{
  position:fixed; inset:0; background:rgba(20,12,10,.6); z-index:100;
  display:flex; align-items:center; justify-content:center; padding:1.2rem;
}
.modal-card{
  background:#fff; border-radius:var(--radius-lg); padding:2.2rem; max-width:460px; width:100%;
  position:relative; box-shadow:var(--shadow-soft); text-align:center;
}
.modal-eyebrow{ color:var(--orange); font-weight:700; text-transform:uppercase; font-size:.75rem; letter-spacing:.08em; }
.modal-card h2{ font-family:var(--font-display); font-size:1.6rem; font-weight:800; margin:.4rem 0 .8rem; }
.modal-actions{ display:flex; gap:.8rem; justify-content:center; margin-top:1.4rem; flex-wrap:wrap; }
.modal-close{ position:absolute; top:1rem; right:1rem; }
.modal-card--person .person-avatar{
  width:96px; height:96px; border-radius:50%; margin:0 auto 1rem; background:linear-gradient(135deg,var(--orange),var(--red));
  display:grid; place-items:center; color:#fff; font-family:var(--font-display); font-weight:800; font-size:1.6rem;
}
.person-role{ color:var(--red); font-weight:700; margin-bottom:.2rem; }
.person-area{ color:var(--gray-600); }

/* ---------- 6) BOTÕES ---------- */
.btn{
  font-family:var(--font-display); font-weight:700; border:none; border-radius:99px;
  padding:.85rem 1.7rem; font-size:.95rem; display:inline-flex; align-items:center; gap:.5rem;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease); text-decoration:none;
}
.btn--primary{ background:linear-gradient(120deg,var(--orange),var(--red)); color:#fff; box-shadow:0 12px 30px -10px rgba(200,16,46,.55); }
.btn--primary:hover{ transform:translateY(-2px); box-shadow:0 16px 36px -10px rgba(200,16,46,.65); }
.btn--ghost{ background:transparent; color:var(--ink); border:2px solid var(--gray-200); }
.btn--lg{ padding:1.05rem 2.3rem; font-size:1.05rem; }
.link-btn{ background:none; border:none; color:var(--blue); font-weight:700; text-decoration:underline; padding:0; }

/* ---------- 7) CENAS GENÉRICAS ---------- */
.scene{
  min-height:100vh; width:100%; padding:7rem 1.6rem 5rem; max-width:var(--maxw); margin:0 auto;
  display:flex; flex-direction:column; align-items:flex-start;
}
.scene[hidden]{ display:none; }
.scene--dark{ background:var(--dark-bg); color:#fff; max-width:none; }
.scene--dark > *{ max-width:var(--maxw); margin-left:auto; margin-right:auto; width:100%; }
.scene--accent{ background:linear-gradient(160deg,var(--orange),var(--red)); color:#fff; max-width:none; align-items:center; text-align:center; }
.scene--accent > *{ max-width:var(--maxw); }
.scene--accent .scene-title{ margin-left:auto; margin-right:auto; }
.scene > .btn{ margin-top:1rem; align-self:flex-start; }
.scene--accent > .btn{ align-self:center; }

.video-frame{
  width:100%; max-width:900px; background:#0b0b0b; border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-soft); margin-bottom:1.8rem; position:relative;
}
.premium-video{ width:100%; display:block; aspect-ratio:16/9; background:#000; }
.video-placeholder-badge{
  position:absolute; bottom:.6rem; left:.6rem; background:rgba(0,0,0,.6); color:#ffcf8c;
  font-size:.7rem; padding:.3rem .6rem; border-radius:6px; font-family:monospace;
}
.scene--video{ align-items:center; text-align:center; }
.scene--video .scene-title{ margin-left:auto; margin-right:auto; }

/* ---------- 8) CENAS ESPECÍFICAS ---------- */

/* --- Portão --- */
.scene--gate{ min-height:100vh; padding:0; position:relative; overflow:hidden; align-items:stretch; max-width:none; }
.gate-bg{ position:absolute; inset:0; }
.gate-photo{ width:100%; height:100%; object-fit:cover; transition:transform 1.4s var(--ease); }
.scene--gate.is-opening .gate-photo{ transform:scale(1.12); }
.gate-overlay{ position:absolute; inset:0; background:linear-gradient(180deg,rgba(20,8,6,.35),rgba(15,6,5,.75)); }
.gate-panel{
  position:absolute; top:38%; bottom:12%; width:14%; background:transparent; border:none;
  transition:filter .3s, transform 1.2s var(--ease);
}
.gate-panel--left{ left:34%; }
.gate-panel--right{ left:50%; }
.gate-panel:hover{ filter:drop-shadow(0 0 18px var(--orange-light)); }
.scene--gate.is-opening .gate-panel--left{ transform:translateX(-60%); }
.scene--gate.is-opening .gate-panel--right{ transform:translateX(60%); }
.gate-hint{
  position:absolute; top:32%; left:50%; transform:translate(-50%,-8px);
  background:rgba(0,0,0,.55); color:#fff; padding:.4rem .9rem; border-radius:99px; font-size:.8rem;
  opacity:0; transition:opacity .25s; pointer-events:none;
}
.gate-hint.is-visible{ opacity:1; }
.gate-flash{ position:absolute; inset:0; background:#fff; opacity:0; pointer-events:none; z-index:5; }
.scene--gate.is-opening .gate-flash{ animation:flash 1.4s var(--ease) forwards; }
@keyframes flash{ 0%,55%{opacity:0;} 78%{opacity:1;} 100%{opacity:1;} }

.gate-content{
  position:relative; z-index:2; min-height:100vh; display:flex; flex-direction:column;
  justify-content:flex-end; padding:4rem 1.6rem 5rem; max-width:var(--maxw); margin:0 auto; color:#fff;
}
.gate-logo{ display:flex; align-items:center; gap:.7rem; font-family:var(--font-display); font-weight:800; font-size:1.3rem; margin-bottom:1.4rem; }
.gate-title{ font-family:var(--font-display); font-weight:900; font-size:clamp(2.4rem,6vw,4.4rem); line-height:1; margin-bottom:.5rem; }
.gate-subtitle{ font-size:clamp(1.1rem,2vw,1.5rem); font-weight:600; color:var(--orange-light); margin-bottom:1.1rem; }
.gate-text{ max-width:560px; color:rgba(255,255,255,.88); margin-bottom:1.8rem; }

/* --- Mapa da jornada --- */
.map-list{ display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:1rem; width:100%; margin-bottom:2rem; }
.map-list li{
  background:var(--gray-050); border-radius:var(--radius-md); padding:1.2rem 1.3rem; display:flex; gap:.9rem;
  align-items:flex-start; border:1px solid var(--gray-200);
}
.map-list .map-num{ font-family:var(--font-display); font-weight:800; color:var(--orange); font-size:1.1rem; }
.map-list .map-label{ font-weight:600; }

/* --- Agora queremos conhecer você --- */
.about-form{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; width:100%; margin-bottom:1rem; }
.field-card{ display:flex; flex-direction:column; gap:.4rem; background:var(--gray-050); border:1px solid var(--gray-200); border-radius:var(--radius-md); padding:1rem 1.2rem; }
.field-card--wide{ grid-column:1 / -1; }
.field-card__label{ font-weight:700; font-size:.85rem; color:var(--gray-600); }
.field-card input,.field-card textarea{ border:none; background:transparent; font-size:1rem; resize:vertical; color:var(--ink); }
.field-card input:focus,.field-card textarea:focus{ outline:none; }
.about-form .btn{ grid-column:1 / -1; justify-self:start; }
.about-greeting{ background:var(--orange-pale); border-radius:var(--radius-md); padding:1.6rem; width:100%; margin-top:1rem; }
.about-greeting p{ font-size:1.2rem; margin-bottom:1rem; }

/* --- Timeline --- */
.timeline{ width:100%; overflow-x:auto; padding-bottom:1.2rem; margin-bottom:2rem; -webkit-overflow-scrolling:touch; }
.timeline__items{ display:flex; gap:1.4rem; position:relative; padding-top:1.2rem; }
.timeline__items::before{ content:""; position:absolute; top:0; left:0; right:0; height:3px; background:var(--gray-200); }
.timeline-item{
  flex:0 0 240px; background:var(--gray-050); border:1px solid var(--gray-200); border-radius:var(--radius-md);
  padding:1.1rem 1.2rem; position:relative; cursor:pointer; transition:transform .25s, box-shadow .25s;
}
.timeline-item::before{
  content:""; position:absolute; top:-1.35rem; left:1.3rem; width:12px; height:12px; border-radius:50%;
  background:var(--orange); border:3px solid #fff; box-shadow:0 0 0 2px var(--orange);
}
.timeline-item:hover,.timeline-item.is-active{ transform:translateY(-4px); box-shadow:var(--shadow-card); border-color:var(--orange); }
.timeline-item__year{ font-family:var(--font-display); font-weight:800; color:var(--red); font-size:1.4rem; }
.timeline-item__title{ font-weight:700; margin:.3rem 0; }
.timeline-item__text{ font-size:.88rem; color:var(--gray-600); display:none; }
.timeline-item.is-active .timeline-item__text{ display:block; }
.timeline-closing{ background:var(--gray-050); border-radius:var(--radius-md); padding:1.6rem; width:100%; }
.timeline-closing p{ font-size:1.15rem; margin-bottom:1rem; }

/* --- Henry Schein / mundo / brasil --- */
.hs-pillars{ display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; width:100%; margin-bottom:2.2rem; }
.hs-pillar{ background:var(--gray-050); border-radius:var(--radius-md); padding:1.4rem; border-top:4px solid var(--red); }
.hs-pillar h3{ font-family:var(--font-display); color:var(--red); margin-bottom:.4rem; }
.hs-pillar:nth-child(2){ border-top-color:var(--orange); }
.hs-pillar:nth-child(2) h3{ color:var(--orange); }
.hs-pillar:nth-child(3){ border-top-color:var(--blue); }
.hs-pillar:nth-child(3) h3{ color:var(--blue); }

.stat-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1rem; width:100%; margin-bottom:2.4rem; }
.stat-card{ background:var(--gray-050); border-radius:var(--radius-md); padding:1.3rem; }
.stat-card .stat-number{ font-size:2.1rem; color:var(--red); display:block; }
.stat-card .stat-label{ font-size:.85rem; color:var(--gray-600); }

.world-block,.brazil-block{ width:100%; margin-bottom:2.4rem; }
.world-block h3,.brazil-block h3{ font-family:var(--font-display); font-size:1.4rem; margin-bottom:.6rem; }
.big-number{ display:flex; align-items:baseline; gap:.6rem; margin-bottom:.6rem; }
.big-number .stat-number{ font-size:3.6rem; color:var(--red); }
.big-number__label{ font-family:var(--font-display); font-weight:700; font-size:1.2rem; }
.countries-list{ display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:.3rem .8rem; margin-top:1rem; }
.countries-list li{ font-size:.88rem; color:var(--gray-600); padding:.2rem 0; border-bottom:1px dashed var(--gray-200); }

.brazil-stats{ display:flex; gap:1.6rem; margin:.8rem 0 1.4rem; flex-wrap:wrap; }
.mini-stat{ display:flex; flex-direction:column; }
.mini-stat .stat-number{ font-size:2rem; color:var(--orange); }
.mini-stat span:last-child{ font-size:.8rem; color:var(--gray-600); }
.brazil-regions{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1rem; }
.region-card{ background:var(--gray-050); border-radius:var(--radius-md); padding:1.1rem 1.2rem; }
.region-card h4{ font-family:var(--font-display); color:var(--red); margin-bottom:.5rem; }
.region-card ul li{ font-size:.88rem; padding:.15rem 0; color:var(--gray-600); }

/* --- Dimensão --- */
.scene--dark .scene-title{ color:#fff; }
.dimension-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1.2rem; width:100%; margin-bottom:1rem; }
.dimension-item{ background:var(--dark-surface); border-radius:var(--radius-md); padding:1.6rem; border:1px solid rgba(255,255,255,.08); }
.dimension-item--highlight{ background:linear-gradient(135deg,var(--orange),var(--red)); grid-column:span 2; }
.dimension-number{ font-size:2.6rem; display:block; color:var(--orange-light); }
.dimension-item--highlight .dimension-number{ color:#fff; }
.dimension-label{ color:rgba(255,255,255,.75); font-size:.92rem; }
.dimension-footnote{ color:rgba(255,255,255,.5); font-size:.78rem; margin-bottom:2rem; }

/* --- Propósito --- */
.smile-stats{ display:flex; gap:2.2rem; flex-wrap:wrap; margin-bottom:.8rem; }
.smile-stat{ display:flex; flex-direction:column; }
.smile-stat .stat-number{ font-size:2.6rem; color:var(--red); }
.smile-stat__fraction{ font-family:var(--font-display); font-weight:800; font-size:2.6rem; color:var(--red); }
.smile-stat span:last-child{ color:var(--gray-600); }
.smile-source{ color:var(--gray-600); font-size:.85rem; margin-bottom:2rem; }
.purpose-block{ background:linear-gradient(135deg,var(--orange),var(--red)); color:#fff; border-radius:var(--radius-lg); padding:2rem; width:100%; margin-bottom:2rem; }
.purpose-highlight{ font-family:var(--font-display); font-weight:800; font-size:1.6rem; margin-bottom:.8rem; }
.mvc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; width:100%; margin-bottom:1.5rem; }
.mvc-card{ border-radius:var(--radius-md); padding:1.5rem; color:#fff; }
.mvc-card h3{ font-family:var(--font-display); font-size:1.3rem; margin-bottom:.7rem; }
.mvc-card--visao{ background:var(--red); }
.mvc-card--compromisso{ background:var(--orange); }
.mvc-card--missao{ background:var(--blue); }

/* --- Valores --- */
.values-list{ display:flex; flex-direction:column; gap:.8rem; width:100%; margin-bottom:1.6rem; }
.value-card{ background:var(--gray-050); border:1px solid var(--gray-200); border-radius:var(--radius-md); overflow:hidden; }
.value-card__head{
  width:100%; background:none; border:none; display:flex; align-items:center; gap:1rem;
  padding:1.1rem 1.3rem; text-align:left; font-family:var(--font-display); font-weight:700; font-size:1.05rem;
}
.value-card__icon{ width:42px; height:42px; border-radius:50%; background:linear-gradient(135deg,var(--orange),var(--red)); color:#fff; display:grid; place-items:center; flex-shrink:0; font-size:1.2rem; }
.value-card__tagline{ font-weight:400; color:var(--gray-600); font-size:.85rem; display:block; }
.value-card__chevron{ margin-left:auto; transition:transform .3s; }
.value-card.is-open .value-card__chevron{ transform:rotate(180deg); }
.value-card__body{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.value-card.is-open .value-card__body{ max-height:320px; }
.value-card__body p{ padding:0 1.3rem 1.2rem 4.1rem; color:var(--gray-800); font-size:.92rem; }

.checkpoint{ width:100%; background:var(--gray-050); border-radius:var(--radius-md); padding:1.6rem; margin-bottom:1.5rem; }
.checkpoint h3{ font-family:var(--font-display); margin-bottom:.8rem; }
.checkpoint__scenario{ font-style:italic; margin-bottom:1rem; color:var(--gray-800); }
.checkpoint__options{ display:flex; gap:.6rem; flex-wrap:wrap; margin-bottom:.8rem; }
.checkpoint__options button{
  background:#fff; border:2px solid var(--gray-200); border-radius:99px; padding:.55rem 1.1rem; font-weight:600;
}
.checkpoint__options button.is-correct{ border-color:#2e9e5b; background:#eafff1; }
.checkpoint__options button.is-wrong{ border-color:var(--red); background:#ffecec; }
.checkpoint__feedback{ font-weight:700; }

/* --- H2H --- */
.h2h-cycle{ display:flex; align-items:center; gap:1rem; flex-wrap:wrap; margin:1.4rem 0 2rem; }
.h2h-node{ background:rgba(255,255,255,.16); padding:.8rem 1.4rem; border-radius:99px; font-family:var(--font-display); font-weight:700; }
.h2h-arrow{ font-size:1.4rem; }

/* --- Organograma --- */
.org-chart{ width:100%; overflow-x:auto; margin-bottom:1.6rem; }
.org-tier{ display:flex; gap:1.2rem; margin-bottom:2rem; flex-wrap:wrap; }
.org-node{
  background:var(--gray-050); border:1px solid var(--gray-200); border-radius:var(--radius-md);
  padding:1rem; width:150px; text-align:center; cursor:pointer; transition:transform .2s, box-shadow .2s;
}
.org-node:hover{ transform:translateY(-4px); box-shadow:var(--shadow-card); border-color:var(--red); }
.org-node .person-avatar{ width:56px; height:56px; font-size:1.1rem; margin-bottom:.5rem; }
.org-node__name{ font-weight:700; font-size:.9rem; }
.org-node__role{ font-size:.76rem; color:var(--gray-600); }
.org-node--exec .person-avatar{ background:linear-gradient(135deg,var(--red),var(--red-dark)); }

/* --- Produto / Implantodontia --- */
.product-intro{ background:var(--orange-pale); border-radius:var(--radius-md); padding:1.5rem; width:100%; margin-bottom:1.6rem; }
.importance-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:.8rem; width:100%; margin-bottom:1.8rem; }
.importance-card{ background:var(--gray-050); border-radius:var(--radius-md); padding:1.2rem; text-align:center; font-weight:700; }
.titanium-block{ width:100%; margin-bottom:2rem; }
.titanium-list{ margin:.8rem 0; }
.titanium-list li{ padding:.5rem 0; border-bottom:1px solid var(--gray-200); }
.titanium-note{ background:var(--ink); color:#fff; display:inline-block; padding:.5rem 1rem; border-radius:8px; font-weight:700; }

.implant-diagram{ width:100%; margin-bottom:2rem; }
.implant-diagram__wrap{ position:relative; max-width:420px; margin:1rem auto 0; }
.implant-hotspot{
  position:absolute; width:20px; height:20px; border-radius:50%; background:var(--orange);
  border:3px solid #fff; box-shadow:0 0 0 3px var(--orange); transform:translate(-50%,-50%);
}
.implant-hotspot:hover,.implant-hotspot:focus-visible{ background:var(--red); box-shadow:0 0 0 5px rgba(200,16,46,.3); }
.implant-label-box{
  margin-top:1rem; background:var(--gray-050); border-radius:var(--radius-sm); padding:.8rem 1rem;
  text-align:center; font-weight:700; color:var(--red-dark); min-height:2.4em;
}
.osseo-block{ width:100%; margin-bottom:2rem; }
.osseo-story{ color:var(--gray-600); margin-top:.6rem; }
.surface-compare{ width:100%; margin-bottom:1.6rem; }
.surface-grid{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-top:.8rem; }
.surface-card{ background:var(--gray-050); border-radius:var(--radius-md); padding:1.3rem; }
.surface-card h4{ font-family:var(--font-display); color:var(--orange); margin-bottom:.5rem; }
.surface-time{ font-weight:700; margin-top:.6rem; }

/* --- Tour fábrica --- */
.access-badge{ background:#173d17; color:#8effa1; font-family:monospace; padding:.5rem 1rem; border-radius:8px; margin-bottom:1rem; display:inline-block; }

/* --- Ecossistema / redes --- */
.orbit{ display:flex; flex-wrap:wrap; gap:.8rem; width:100%; margin-bottom:2rem; }
.orbit-item{ background:var(--gray-050); border:1px solid var(--gray-200); border-radius:99px; padding:.7rem 1.3rem; font-weight:700; font-size:.9rem; }
.social-block{ width:100%; }
.social-links{ display:flex; flex-wrap:wrap; gap:.8rem; margin-top:.8rem; }
.social-link{
  display:flex; align-items:center; gap:.6rem; background:var(--ink); color:#fff; padding:.7rem 1.2rem;
  border-radius:99px; font-weight:700; text-decoration:none;
}
.social-link:hover{ background:var(--red); }

/* --- S.I.N. Conecta --- */
.conecta-feed{ display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:.8rem; width:100%; margin-bottom:1.8rem; }
.conecta-post{ background:rgba(255,255,255,.08); border-radius:var(--radius-md); padding:1.1rem; font-weight:700; border:1px solid rgba(255,255,255,.12); }

/* --- Campus / desenvolvimento --- */
.campus-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1rem; width:100%; margin-bottom:1.8rem; }
.campus-card{
  background:var(--gray-050); border:1px solid var(--gray-200); border-radius:var(--radius-md); padding:1.3rem;
  cursor:pointer; transition:transform .2s, box-shadow .2s;
}
.campus-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-card); border-color:var(--orange); }
.campus-card h4{ font-family:var(--font-display); color:var(--red); margin-bottom:.4rem; }
.campus-card p{ font-size:.85rem; color:var(--gray-600); }

/* --- Reconhecimento --- */
.recognition-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1rem; width:100%; margin-bottom:1.8rem; }
.recognition-card{ background:var(--gray-050); border-radius:var(--radius-md); padding:1.4rem; border-left:5px solid var(--orange); }
.recognition-card h4{ font-family:var(--font-display); color:var(--red); margin-bottom:.5rem; }
.recognition-card p{ font-size:.88rem; color:var(--gray-800); margin-bottom:.5rem; }
.recognition-card .eligibility{ font-size:.78rem; color:var(--gray-600); font-style:italic; }

/* --- Eventos --- */
.events-carousel{ display:flex; gap:1rem; overflow-x:auto; width:100%; margin-bottom:1.8rem; padding-bottom:.6rem; }
.event-slide{ flex:0 0 240px; height:160px; border-radius:var(--radius-md); background:rgba(255,255,255,.15); display:flex; align-items:flex-end; padding:1rem; font-weight:700; }

/* --- Benefícios --- */
.benefits-search-wrap{ width:100%; margin-bottom:1.2rem; }
.benefits-search{
  width:100%; max-width:520px; padding:.9rem 1.3rem; border-radius:99px; border:2px solid var(--gray-200);
  font-size:1rem;
}
.benefits-search:focus{ border-color:var(--orange); outline:none; }
.benefits-categories{ display:flex; gap:.6rem; flex-wrap:wrap; margin-bottom:1.6rem; }
.category-chip{
  background:var(--gray-050); border:2px solid var(--gray-200); border-radius:99px; padding:.5rem 1.1rem;
  font-weight:700; font-size:.85rem;
}
.category-chip.is-active{ background:var(--red); border-color:var(--red); color:#fff; }
.benefits-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:1rem; width:100%; margin-bottom:1.5rem; }
.benefit-card{ background:var(--gray-050); border:1px solid var(--gray-200); border-radius:var(--radius-md); overflow:hidden; }
.benefit-card__header{
  width:100%; background:none; border:none; text-align:left; padding:1.1rem 1.3rem; display:flex; justify-content:space-between; gap:.6rem;
  align-items:center; font-family:var(--font-display); font-weight:700;
}
.benefit-card__category{ font-size:.7rem; text-transform:uppercase; letter-spacing:.05em; color:var(--orange); display:block; margin-bottom:.2rem; }
.benefit-card__chevron{ transition:transform .3s; flex-shrink:0; }
.benefit-card.is-open .benefit-card__chevron{ transform:rotate(180deg); }
.benefit-card__body{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.benefit-card.is-open .benefit-card__body{ max-height:400px; }
.benefit-card__body ul{ padding:0 1.3rem 1.2rem; }
.benefit-card__body li{ font-size:.86rem; color:var(--gray-800); padding:.25rem 0; }
.benefits-empty{ color:var(--gray-600); font-style:italic; }

/* --- Fechamento --- */
.closing-checklist{ display:flex; flex-wrap:wrap; gap:.7rem; margin-bottom:2rem; }
.closing-checklist li{ background:rgba(255,255,255,.1); padding:.55rem 1.1rem; border-radius:99px; font-weight:600; }
.closing-question{ font-family:var(--font-display); font-size:1.4rem; font-weight:800; margin-bottom:1rem; }

/* --- Feedback --- */
.feedback-block{ text-align:center; width:100%; margin-bottom:2.4rem; }
.feedback-qr{ width:120px; margin:0 auto 1rem; color:var(--ink); }
.qr-placeholder{ width:100%; }
.thanks-block{ text-align:center; width:100%; }
.thanks-block h3{ font-family:var(--font-display); font-size:2rem; color:var(--red); }
#scene-feedback{ align-items:center; text-align:center; }
#scene-feedback .scene-title{ margin-left:auto; margin-right:auto; }

/* ---------- 9) RESPONSIVO ---------- */
@media (max-width: 860px){
  .about-form{ grid-template-columns:1fr; }
  .hs-pillars{ grid-template-columns:1fr; }
  .mvc-grid{ grid-template-columns:1fr; }
  .surface-grid{ grid-template-columns:1fr; }
  .dimension-item--highlight{ grid-column:span 1; }
  .scene{ padding:6.5rem 1.1rem 4rem; }
  .gate-title{ font-size:2.2rem; }
}
@media (max-width: 520px){
  .main-nav__progress{ min-width:140px; }
  .journey-toggle span:first-child{ display:none; }
  .stat-card .stat-number{ font-size:1.7rem; }
  .scene-title--xl{ font-size:3rem; }
}

/* ---------- 10) ACESSIBILIDADE ---------- */
body.motion-paused *, body.motion-paused *::before, body.motion-paused *::after{
  animation-duration:0.001s !important; transition-duration:0.001s !important; scroll-behavior:auto !important;
}
body.motion-paused .reveal-on-scroll{ opacity:1 !important; transform:none !important; }

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{ animation-duration:0.001s !important; transition-duration:0.001s !important; }
  html{ scroll-behavior:auto; }
  .reveal-on-scroll{ opacity:1; transform:none; }
}
