/* ============================================================
   HANNAH BARROS CONFEITARIA — Awwwards-style landing
   Palette: #ee3769 (rosa) · #ffecd0 (creme) · #e1002d (vermelho)
   ============================================================ */

:root {
  --rosa: #ee3769;
  --creme: #ffecd0;
  --vermelho: #e1002d;
  --rosa-dark: #c41e4e;
  --ink: #3a0f1d;
  --ink-soft: #6b3247;
  --paper: #fff6ea;
  --white: #fffaf3;

  --ease: cubic-bezier(0.65, 0.05, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Manrope", system-ui, sans-serif;

  --pad: clamp(1.25rem, 5vw, 6rem);
  --maxw: 1600px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  font-family: var(--f-body);
  background: var(--creme);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.5;
}

body.is-loading { overflow: hidden; height: 100vh; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--rosa); color: var(--creme); }

/* WebGL canvas behind everything */
#webgl {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

main { position: relative; z-index: 1; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--rosa);
  display: grid;
  place-items: center;
  color: var(--creme);
}
.preloader__inner { text-align: center; width: min(80vw, 480px); }
.preloader__word { font-family: var(--f-display); font-size: clamp(3rem, 12vw, 8rem); font-weight: 600; display: flex; justify-content: center; overflow: hidden; }
.preloader__word span { display: inline-block; transform: translateY(110%); }
.preloader__bar { height: 2px; background: rgba(255,255,255,0.25); margin: 1.5rem 0 0.75rem; overflow: hidden; }
.preloader__bar i { display: block; height: 100%; width: 0; background: var(--creme); }
.preloader__count { font-size: 0.85rem; letter-spacing: 0.2em; text-align: right; opacity: 0.8; }

/* ============================================================
   CURSOR
   ============================================================ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 600;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--rosa);
  box-shadow: 0 0 0 6px rgba(238,55,105,0.14), 0 8px 18px rgba(58,15,29,0.12);
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: normal;
  display: grid; place-items: center;
  transition: width .25s var(--ease-out), height .25s var(--ease-out), background .25s, box-shadow .25s, opacity .25s;
  animation: cursorPulse 1.8s ease-in-out infinite;
}
.cursor::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(238,55,105,0.28);
  border-radius: 50%;
  transform: scale(0.72);
  opacity: 0.85;
  animation: cursorRing 1.8s ease-out infinite;
}
.cursor::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238,55,105,0.16) 0%, rgba(238,55,105,0) 66%);
  animation: cursorGlow 2.2s ease-in-out infinite;
}
.cursor.is-active { width: 16px; height: 16px; box-shadow: 0 0 0 8px rgba(238,55,105,0.18), 0 10px 22px rgba(58,15,29,0.14); }
.cursor__label { display: none; }
@media (hover: none) { .cursor { display: none; } }

@keyframes cursorPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes cursorRing {
  0% { transform: scale(0.72); opacity: 0.75; }
  70% { transform: scale(1.08); opacity: 0.12; }
  100% { transform: scale(1.15); opacity: 0; }
}

@keyframes cursorGlow {
  0%, 100% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem var(--pad);
  mix-blend-mode: difference; color: #fff;
  transition: background-color .35s var(--ease-out), color .35s var(--ease-out), box-shadow .35s var(--ease-out), backdrop-filter .35s var(--ease-out);
}
.nav.scrolled {
  mix-blend-mode: normal;
  background: var(--rosa);
  color: var(--creme);
  box-shadow: 0 10px 30px rgba(58,15,29,0.12);
  backdrop-filter: blur(10px);
}
.nav__brand { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-name { font-family: var(--f-display); font-size: 1.4rem; font-weight: 600; }
.nav__brand-sub { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; opacity: 0.85; }
.nav__links { display: flex; gap: 2.2rem; }
.nav__link { position: relative; font-size: 0.85rem; font-weight: 600; overflow: hidden; }
.nav__link span { display: inline-block; transition: transform .5s var(--ease-out); }
.nav__link::after { content: ""; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: currentColor; transition: width .4s var(--ease-out); }
.nav__link:hover::after { width: 100%; }
.nav__cta {
  font-size: 0.8rem; font-weight: 700; padding: 0.7rem 1.4rem;
  border: 1px solid currentColor; border-radius: 100px;
}
.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 6px; }
.nav__burger i { width: 28px; height: 2px; background: currentColor; transition: transform .4s var(--ease); }

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* MOBILE MENU */
.menu {
  position: fixed; inset: 0; z-index: 480; background: var(--rosa); color: var(--creme);
  display: grid; place-items: center;
  clip-path: circle(0% at 100% 0%); transition: clip-path .8s var(--ease-out);
}
.menu.open { clip-path: circle(150% at 100% 0%); }
.menu__links { display: flex; flex-direction: column; gap: 0.5rem; text-align: center; }
.menu__link { font-family: var(--f-display); font-size: clamp(2.5rem, 11vw, 4.5rem); font-weight: 500; position: relative; }
.menu__link::before { content: attr(data-i); font-family: var(--f-body); font-size: 0.8rem; vertical-align: super; opacity: 0.6; margin-right: 0.6rem; }

/* ============================================================
   SHARED
   ============================================================ */
.sec-index {
  font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 700; color: var(--rosa);
}
.reveal-up, .reveal-lines .line-inner { will-change: transform, opacity; }

.btn {
  position: relative; display: inline-flex; align-items: center; gap: 0.6rem;
  font-weight: 700; font-size: 0.95rem; padding: 1.1rem 2.2rem; border-radius: 100px;
  overflow: hidden; cursor: pointer; border: 1px solid transparent;
}
.btn span { position: relative; z-index: 2; }
.btn--primary { background: var(--vermelho); color: var(--creme); }
.btn--primary::before { content: ""; position: absolute; inset: 0; background: var(--rosa); transform: translateY(101%); transition: transform .5s var(--ease-out); z-index: 1; }
.btn--primary:hover::before { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--ink); border-color: currentColor; }
.btn--ghost::before { content: ""; position: absolute; inset: 0; background: var(--rosa); transform: translateY(101%); transition: transform .5s var(--ease-out); z-index: 1; }
.btn--ghost:hover { color: var(--creme); }
.btn--ghost:hover::before { transform: translateY(0); }
.btn--lg { padding: 1.4rem 3rem; font-size: 1.1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; padding: 0 var(--pad); display: flex; align-items: center; overflow: hidden; isolation: isolate; }
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(24px);
  z-index: 0;
}
.hero::before {
  width: clamp(220px, 30vw, 420px);
  height: clamp(220px, 30vw, 420px);
  top: 12%;
  left: -4%;
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(255,236,208,0.72) 42%, rgba(255,236,208,0) 74%);
  animation: cloudFloatA 18s var(--ease-out) infinite alternate;
}
.hero::after {
  width: clamp(260px, 34vw, 520px);
  height: clamp(260px, 34vw, 520px);
  right: -10%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(255,185,208,0.38) 0%, rgba(238,55,105,0.16) 38%, rgba(238,55,105,0) 72%);
  animation: cloudFloatB 22s var(--ease-out) infinite alternate;
}
.hero__bg-text {
  position: absolute; top: 50%; left: 0; width: 100%; transform: translateY(-50%);
  font-family: var(--f-display); font-weight: 700; white-space: nowrap;
  font-size: clamp(8rem, 26vw, 24rem); color: var(--rosa); opacity: 0.08; pointer-events: none;
}
.hero__bg-text span { display: inline-block; }

.hero__grid {
  position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem;
  padding-top: 6rem;
}
.hero__head { grid-column: 1; }
.hero__eyebrow { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--vermelho); margin-bottom: 1.5rem; }
.hero__title { font-family: var(--f-display); font-weight: 600; line-height: 0.86; font-size: clamp(3.5rem, 9vw, 9rem); color: var(--rosa); }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .word { display: inline-block; transform: translateY(110%); }
.hero__title .line:nth-child(2) { padding-left: 0.6em; font-style: italic; color: var(--vermelho); }
.hero__sub { margin-top: 1.8rem; font-size: clamp(1rem, 1.5vw, 1.3rem); max-width: 22ch; color: var(--ink-soft); }
.hero__sub em { color: var(--rosa); font-style: italic; }

.hero__media { position: relative; grid-column: 2; width: clamp(280px, 32vw, 480px); border-radius: 20px; overflow: hidden; box-shadow: none; }
.hero__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  transition: transform 1.2s var(--ease-out);
}

.hero__foot { grid-column: 3; justify-self: end; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 1.2rem; }
.hero__note { font-size: 0.8rem; max-width: 24ch; color: var(--ink-soft); }

.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.6rem; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); z-index: 2; }
.hero__scroll i { width: 1px; height: 40px; background: var(--rosa); animation: scrolldot 1.8s var(--ease) infinite; transform-origin: top; }
@keyframes scrolldot { 0% { transform: scaleY(0); } 40% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

@keyframes cloudFloatA {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(18px, -24px, 0) scale(1.08); }
}

@keyframes cloudFloatB {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-24px, 18px, 0) scale(1.06); }
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; padding-top: 8rem; }
  .hero__head, .hero__media, .hero__foot { grid-column: 1; justify-self: center; text-align: center; align-items: center; }
  .hero__title .line:nth-child(2) { padding-left: 0; }
  .hero__sub, .hero__note { margin-inline: auto; }
  .hero::before { width: 240px; height: 240px; top: 8%; left: -12%; }
  .hero::after { width: 280px; height: 280px; right: -18%; bottom: 4%; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker { background: var(--vermelho); color: var(--creme); overflow: hidden; padding: 1.1rem 0; border-block: 1px solid rgba(255,255,255,0.15); }
.ticker__track { display: flex; white-space: nowrap; font-family: var(--f-display); font-size: clamp(1.2rem, 2.4vw, 2rem); font-style: italic; animation: ticker 24s linear infinite; }
.ticker__track span { padding-right: 1rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   SOBRE
   ============================================================ */
.sobre { position: relative; background: var(--creme); padding: clamp(5rem, 12vw, 10rem) var(--pad); display: grid; grid-template-columns: 240px 1fr; gap: 3rem; max-width: var(--maxw); margin: 0 auto; }
.sobre__sticky { position: sticky; top: 8rem; align-self: start; }
.sobre__lead { font-family: var(--f-display); font-weight: 400; font-size: clamp(1.8rem, 4vw, 3.6rem); line-height: 1.08; margin-bottom: 4rem; color: var(--ink); }
.sobre__lead em, .reveal-lines em { font-style: italic; color: var(--rosa); }
.sobre__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.sobre__text p { font-size: clamp(1rem, 1.3vw, 1.15rem); margin-bottom: 1.5rem; color: var(--ink-soft); max-width: 46ch; }
.sobre__text b { color: var(--ink); font-weight: 700; }
.float-img { aspect-ratio: 0.82; border-radius: 24px; overflow: hidden; }
.float-img img { transition: transform 1.4s var(--ease-out); }
.sobre__stats { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.stat { border-top: 1px solid rgba(238,55,105,0.25); padding-top: 1rem; }
.stat__num { font-family: var(--f-display); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 600; color: var(--rosa); display: block; line-height: 1; }
.stat__num i { font-size: 0.4em; font-style: italic; margin-left: 0.2em; color: var(--vermelho); }
.stat__label { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

@media (max-width: 880px) {
  .sobre { grid-template-columns: 1fr; }
  .sobre__sticky { position: relative; top: 0; }
  .sobre__cols { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto { background: var(--rosa); color: var(--creme); padding: clamp(6rem, 16vw, 14rem) var(--pad); }
.manifesto__text { font-family: var(--f-display); font-weight: 500; font-size: clamp(2rem, 5.5vw, 5rem); line-height: 1.05; max-width: 18ch; margin: 0 auto; text-align: center; }
.manifesto__text em { color: #ffecd0; font-style: italic; }

/* ============================================================
   VALORES
   ============================================================ */
.valores { background: var(--creme); padding: clamp(5rem, 12vw, 9rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.valores__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card { background: var(--white); border: 1px solid rgba(238,55,105,0.18); border-radius: 24px; padding: 2.5rem; transition: background .5s var(--ease), color .5s; }
.value-card__ico { font-size: 2rem; color: var(--rosa); display: block; margin-bottom: 1.5rem; }
.value-card h3 { font-family: var(--f-display); font-size: 1.8rem; font-weight: 600; margin-bottom: 1rem; }
.value-card p { font-size: 0.98rem; color: var(--ink-soft); }
.value-card:hover { background: var(--vermelho); color: var(--creme); }
.value-card:hover h3, .value-card:hover .value-card__ico, .value-card:hover b { color: var(--creme); }
.value-card:hover p { color: rgba(255,236,208,0.85); }
@media (max-width: 880px) { .valores__grid { grid-template-columns: 1fr; } }

/* ============================================================
   CURSOS
   ============================================================ */
.cursos { background: var(--ink); color: var(--creme); padding: clamp(5rem, 12vw, 9rem) var(--pad); }
.cursos .sec-index { color: var(--rosa); }
.cursos__head { max-width: var(--maxw); margin: 0 auto 3.5rem; }
.cursos__title { font-family: var(--f-display); font-size: clamp(2.5rem, 7vw, 6rem); font-weight: 600; line-height: 1; margin-top: 1rem; }
.cursos__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.course {
  position: relative; aspect-ratio: 1.15; border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.6rem;
  isolation: isolate; background: hsl(var(--h, 338) 70% 30%);
}
.course[data-hue] { --h: attr(data-hue); }
.course__media { position: absolute; inset: 0; z-index: -2; }
.course__media img { transition: transform 1s var(--ease-out), filter .6s; filter: saturate(1.05); }
.course::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(58,15,29,0.85)); transition: background .5s; }
.course__no { position: absolute; top: 1.4rem; left: 1.6rem; font-family: var(--f-display); font-size: 1rem; opacity: 0.7; }
.course__name { font-family: var(--f-display); font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 600; line-height: 1.02; transition: transform .5s var(--ease-out); }
.course__tag { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0; transform: translateY(12px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); margin-top: 0.5rem; color: var(--rosa); }
.course:hover .course__media img { transform: scale(1.08); }
.course:hover .course__tag { opacity: 1; transform: translateY(0); }
.course:hover .course__name { transform: translateY(-4px); }
.course:hover::after { background: linear-gradient(180deg, rgba(196,30,78,0.2) 0%, rgba(58,15,29,0.92)); }
/* fallback gradient when image missing */
.course__media img[src$="curso-1.jpg"] { background: linear-gradient(135deg,#7a1027,#c41e4e); }
@media (max-width: 880px) { .cursos__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cursos__grid { grid-template-columns: 1fr; } }

/* ============================================================
   SHOWCASE
   ============================================================ */
.showcase { background: var(--creme); padding: clamp(5rem, 12vw, 10rem) var(--pad); display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 2rem; align-items: center; max-width: var(--maxw); margin: 0 auto; }
.showcase__img { border-radius: 24px; overflow: hidden; aspect-ratio: 0.8; }
.showcase__img--a { aspect-ratio: 0.78; }
.showcase__img--b { aspect-ratio: 0.78; margin-top: 4rem; }
.showcase__img img { transition: transform 1.4s var(--ease-out); }
.showcase__copy { text-align: center; padding: 0 1rem; }
.showcase__copy h2 { font-family: var(--f-display); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 500; line-height: 1.08; margin: 1rem 0 2rem; }
@media (max-width: 880px) { .showcase { grid-template-columns: 1fr; } .showcase__img--b { margin-top: 0; } }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depo { background: var(--vermelho); color: var(--creme); padding: clamp(5rem, 12vw, 9rem) 0; overflow: hidden; }
.depo .sec-index { color: var(--creme); opacity: 0.7; }
.depo__head { padding: 0 var(--pad); max-width: var(--maxw); margin: 0 auto 3rem; }
.depo__title { font-family: var(--f-display); font-size: clamp(2.5rem, 7vw, 6rem); font-weight: 600; line-height: 1; margin-top: 1rem; }
.depo__track { display: flex; gap: 1.5rem; padding: 0 var(--pad); will-change: transform; }
.depo-card { flex: 0 0 clamp(300px, 38vw, 480px); background: var(--creme); color: var(--ink); border-radius: 24px; padding: 2.5rem; display: flex; flex-direction: column; justify-content: space-between; min-height: 320px; }
.depo-card blockquote { font-family: var(--f-display); font-size: clamp(1.1rem, 1.6vw, 1.4rem); line-height: 1.35; font-weight: 400; }
.depo-card figcaption { display: flex; align-items: center; gap: 0.8rem; margin-top: 2rem; font-weight: 700; font-size: 0.9rem; color: var(--rosa); }
.depo-card__av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--rosa), var(--vermelho)); flex: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--creme); padding: clamp(5rem, 12vw, 9rem) var(--pad) 2rem; }
.footer__cta { text-align: center; max-width: var(--maxw); margin: 0 auto 6rem; }
.footer__cta .sec-index { color: var(--rosa); }
.footer__big { font-family: var(--f-display); font-size: clamp(3rem, 11vw, 10rem); font-weight: 600; line-height: 0.92; margin: 1.5rem 0 2.5rem; color: var(--creme); }
.footer__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,236,208,0.18); }
.footer__col h4 { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rosa); margin-bottom: 1.2rem; }
.footer__col p { color: rgba(255,236,208,0.75); margin-bottom: 1rem; }
.footer__social { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__social a { position: relative; font-size: 1.1rem; font-weight: 600; width: max-content; }
.footer__social a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--rosa); transition: width .4s var(--ease-out); }
.footer__social a:hover::after { width: 100%; }
.footer__col--brand { text-align: right; display: flex; flex-direction: column; justify-content: flex-end; }
.footer__logo { font-family: var(--f-display); font-size: 2rem; font-weight: 600; color: var(--rosa); }
.footer__logo-sub { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; }
.footer__base { max-width: var(--maxw); margin: 2rem auto 0; display: flex; justify-content: space-between; font-size: 0.8rem; opacity: 0.6; }
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr; } .footer__col--brand { text-align: left; } .footer__base { flex-direction: column; gap: 0.5rem; } }

/* ============================================================
   REVEAL STATES (JS toggles .in)
   ============================================================ */
.reveal-up { opacity: 0; transform: translateY(40px); }
.reveal-up.in { opacity: 1; transform: none; transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.line-inner { display: inline-block; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal-up { opacity: 1; transform: none; }
  .hero__title .word, .preloader__word span { transform: none; }
}
