/* ===========================================================
   Larissa Antunes — Psicóloga Infantojuvenil (TCC)
   Landing page lúdica e interativa
   =========================================================== */

:root {
  --rose:  #c79f99;
  --blue:  #99c2c7;
  --mauve: #c799b2;
  --green: #99c7b2;
  --brown: #72544f;

  /* tints / supporting */
  --rose-soft:  #efdcd7;
  --blue-soft:  #d7ebed;
  --mauve-soft: #eed9e5;
  --green-soft: #d7ece2;
  --cream:      #fbf5f0;
  --cream-2:    #f6ece5;
  --ink:        #5a423e;
  --ink-soft:   #8a726d;

  --shadow-sm: 0 6px 18px rgba(114, 84, 79, 0.10);
  --shadow-md: 0 18px 44px rgba(114, 84, 79, 0.14);
  --shadow-lg: 0 30px 70px rgba(114, 84, 79, 0.18);

  --font-display: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  --radius-pill: 999px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--brown);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
  color: var(--brown);
}

p { line-height: 1.65; margin: 0; }

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-pill);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, background .2s;
  will-change: transform;
}
.btn:active { transform: scale(.96); }

.btn-primary {
  background: var(--brown);
  color: #fff;
  box-shadow: 0 10px 24px rgba(114,84,79,.32);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 34px rgba(114,84,79,.4); }

.btn-whats {
  background: #5fb37a;
  color: #fff;
  box-shadow: 0 10px 24px rgba(75,150,100,.34);
}
.btn-whats:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 34px rgba(75,150,100,.42); }

.btn-ghost {
  background: #fff;
  color: var(--brown);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem clamp(1rem, 4vw, 2.4rem);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled {
  background: rgba(251,245,240,0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(114,84,79,.08);
}
.site-header .logo { display: flex; align-items: center; gap: .6rem; position: relative; }
.site-header .logo::before {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 132px; height: 132px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.95) 0%, rgba(255,255,255,.55) 55%, rgba(255,255,255,0) 72%);
  z-index: -1; transition: width .3s, height .3s, opacity .3s;
}
.site-header .logo .logo-img { height: 124px; width: 124px; object-fit: contain; transition: height .35s ease, width .35s ease, transform .4s; }
.site-header .logo:hover .logo-img { transform: rotate(-6deg) scale(1.05); }
.site-header.scrolled .logo .logo-img { height: 72px; width: 72px; }
.site-header.scrolled .logo::before { width: 84px; height: 84px; opacity: .6; }

.nav-links { display: flex; align-items: center; gap: clamp(.6rem, 2vw, 1.8rem); }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .98rem;
  color: var(--ink);
  padding: .4rem .2rem;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  height: 3px; width: 0;
  border-radius: 3px;
  background: var(--mauve);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--brown); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: .4rem; padding: .6em 1.2em; font-size: .95rem; }

@media (max-width: 760px) {
  .nav-links .nav-link-text { display: none; }
  .site-header .logo .logo-img { height: 88px; width: 88px; }
  .site-header.scrolled .logo .logo-img { height: 60px; width: 60px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Section scaffolding ---------- */
.section { position: relative; padding: clamp(4rem, 9vw, 8rem) 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mauve);
  background: var(--mauve-soft);
  padding: .45rem 1rem;
  border-radius: var(--radius-pill);
}
.section h2 {
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  margin-top: 1rem;
  letter-spacing: -0.01em;
}
.section .lead {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 42ch;
  margin-top: 1rem;
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: default;
  padding-top: 80px;
}
.hero-sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, #ffffff 0%, var(--blue-soft) 38%, var(--cream) 78%);
  z-index: 0;
}
.hero-hill {
  position: absolute; left: -5%; right: -5%; bottom: -2px; height: 32vh;
  background: radial-gradient(120% 140% at 50% 100%, var(--green-soft) 0%, rgba(215,236,226,0) 70%);
  z-index: 0;
}

.hero-shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.float-shape {
  position: absolute;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  filter: drop-shadow(0 10px 18px rgba(114,84,79,.08));
}
.float-bob { animation: bob ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}

.pop-layer { position: absolute; inset: 0; z-index: 6; pointer-events: none; }
.pop {
  position: absolute;
  transform: translate(-50%, -50%) scale(var(--sc));
  animation: popUp 1.4s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes popUp {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(.2) rotate(0deg); }
  18%  { opacity: 1; transform: translate(calc(-50% + var(--dx) * .3), -90%) scale(var(--sc)) rotate(calc(var(--rot) * .3)); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx)), -260%) scale(calc(var(--sc) * .6)) rotate(var(--rot)); }
}

.hero-inner {
  position: relative; z-index: 5;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  width: min(1180px, 92vw);
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 500;
  font-size: .92rem; color: var(--brown);
  background: #fff; padding: .5rem 1.1rem; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.dot-pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(153,199,178,.7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(153,199,178,0); } 100% { box-shadow: 0 0 0 0 rgba(153,199,178,0); } }

.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  letter-spacing: -0.02em;
  margin: 1.2rem 0 0;
}
.word-mask { display: inline-block; overflow: hidden; vertical-align: top; }
.word { display: inline-block; transform: translateY(110%); }
.hero-copy.loaded .word { animation: wordUp .85s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes wordUp { to { transform: translateY(0); } }
/* destaca "crescer" */
.hero-title .word-mask:nth-child(7) .word { color: var(--mauve); }

.hero-sub {
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 46ch;
  margin-top: 1.4rem;
  opacity: 0; transform: translateY(20px);
}
.hero-copy.loaded .hero-sub { animation: fadeUp .8s ease .95s forwards; }
.hero-sub strong { color: var(--brown); font-weight: 700; }

.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; opacity: 0; transform: translateY(20px); }
.hero-copy.loaded .hero-cta { animation: fadeUp .8s ease 1.15s forwards; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

.hero-hint {
  margin-top: 1.4rem; font-size: .92rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: .5rem; opacity: 0;
}
.hero-copy.loaded .hero-hint { animation: fadeUp .8s ease 1.5s forwards; }
.hint-tap { color: var(--mauve); animation: twinkle 1.8s ease-in-out infinite; }
@keyframes twinkle { 0%,100% { opacity: .4; transform: scale(.85); } 50% { opacity: 1; transform: scale(1.2); } }

/* mascote */
.hero-mascot {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.mascot-ring {
  position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.7) 0%, rgba(238,217,229,.45) 55%, rgba(238,217,229,0) 72%);
  z-index: -1;
}
.broto { animation: breathe 4.5s ease-in-out infinite; }
@keyframes breathe { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-10px) scale(1.015); } }
.broto-leaves { transform-origin: 100px 60px; animation: sway 3.6s ease-in-out infinite; }
@keyframes sway { 0%,100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }
.broto-wave-arm { animation: wave 1.8s ease-in-out infinite; }
@keyframes wave { 0%,100% { transform: rotate(0deg); } 25% { transform: rotate(-18deg); } 50% { transform: rotate(8deg); } 75% { transform: rotate(-12deg); } }

.mascot-bubble {
  position: absolute; top: 6%; right: 2%;
  background: #fff; color: var(--brown);
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  padding: .55rem 1rem; border-radius: 18px 18px 18px 4px;
  box-shadow: var(--shadow-md);
  animation: floatBubble 3s ease-in-out infinite;
  transition: transform .2s;
}
.mascot-bubble:hover { transform: scale(1.08) rotate(-3deg); }
.mascot-bubble:active { transform: scale(.94); }
@keyframes floatBubble { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--ink-soft); border-radius: 14px;
  z-index: 5; opacity: .6;
}
.scroll-cue span {
  position: absolute; left: 50%; top: 8px; width: 5px; height: 5px; border-radius: 50%;
  background: var(--ink-soft); transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 24px; } 100% { opacity: 0; } }

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 0; }
  .hero-eyebrow, .hero-cta { justify-content: center; }
  .hero-sub { margin-inline: auto; }
  .hero-mascot { order: -1; margin-bottom: .5rem; }
  .hero-mascot .broto { width: 210px !important; height: 210px !important; }
  .mascot-ring { width: 250px; height: 250px; }
  .hero-hint { justify-content: center; }
}

/* ===========================================================
   Reveal helper para filhos da seção
   =========================================================== */
.reveal-child { opacity: 0; transform: translateY(30px); transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1); }
.in .reveal-child { opacity: 1; transform: none; }

/* ===========================================================
   TCC
   =========================================================== */
.tcc { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.tcc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

.tcc-intro h2 { font-size: clamp(2rem, 4vw, 3rem); }
.tcc-intro .lead strong { color: var(--brown); }

.tcc-panel {
  margin-top: 2rem; background: #fff; border-radius: 26px; padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-md); border: 2px solid var(--accent-soft);
  transition: border-color .35s ease;
}
.tcc-panel-top { display: flex; align-items: center; gap: 1rem; }
.tcc-panel-emoji {
  font-size: 2rem; width: 60px; height: 60px; flex: none;
  display: grid; place-items: center; border-radius: 18px; background: var(--accent-soft);
  transition: background .35s;
}
.tcc-panel-kid { font-family: var(--font-display); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); filter: brightness(.82); }
.tcc-panel h3 { font-size: 1.5rem; color: var(--brown); }
.tcc-panel p { margin-top: .8rem; color: var(--ink-soft); }

.tcc-flip {
  margin-top: 1.4rem; display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 500; font-size: 1rem; color: var(--brown);
  background: var(--mauve-soft); padding: .7em 1.2em; border-radius: var(--radius-pill);
  transition: transform .2s, box-shadow .2s;
}
.tcc-flip:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.tcc-flip-icon { font-size: 1.2rem; }

/* diagrama */
.tcc-cycle { position: relative; aspect-ratio: 1 / 0.92; max-width: 460px; margin-inline: auto; width: 100%; }
.tcc-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.tcc-arc { fill: none; stroke: var(--rose); stroke-width: 3; stroke-dasharray: 6 9; stroke-linecap: round; marker-end: url(#arrow); opacity: .55; animation: dashMove 12s linear infinite; }
@keyframes dashMove { to { stroke-dashoffset: -150; } }

.tcc-node {
  position: absolute; width: 33%; aspect-ratio: 1; border-radius: 50%;
  background: var(--cs); border: 3px solid #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.tcc-node:hover { transform: scale(1.06); }
.tcc-node.active { background: var(--c); box-shadow: 0 14px 30px color-mix(in srgb, var(--c) 50%, transparent); transform: scale(1.1); }
.tcc-node.active .tcc-node-label { color: #fff; }
.tcc-node.active .tcc-node-emoji { animation: nodeBounce .6s; }
@keyframes nodeBounce { 0%,100% { transform: translateY(0); } 40% { transform: translateY(-8px) scale(1.15); } }
.tcc-node-emoji { font-size: clamp(1.6rem, 5vw, 2.4rem); }
.tcc-node-label { font-family: var(--font-display); font-weight: 600; font-size: clamp(.8rem, 2vw, 1rem); color: var(--brown); }
.node-top { top: 0; left: 50%; transform: translateX(-50%); }
.node-top:hover { transform: translateX(-50%) scale(1.06); }
.node-top.active { transform: translateX(-50%) scale(1.1); }
.node-right { bottom: 4%; right: 0; }
.node-left { bottom: 4%; left: 0; }

.tcc-example {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 42%; text-align: center; background: #fff; border-radius: 20px; padding: 1rem;
  box-shadow: var(--shadow-md); transition: background .4s ease;
}
.tcc-example.is-reframed { background: linear-gradient(135deg, #fff, var(--green-soft)); }
.tcc-example-tag { font-family: var(--font-display); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mauve); }
.tcc-example.is-reframed .tcc-example-tag { color: var(--green); filter: brightness(.8); }
.tcc-example p { font-size: clamp(.8rem, 1.6vw, .98rem); color: var(--brown); margin-top: .4rem; line-height: 1.45; }

@media (max-width: 880px) {
  .tcc-grid { grid-template-columns: 1fr; }
  .tcc-cycle { order: -1; max-width: 360px; }
}

/* ===========================================================
   JORNADA
   =========================================================== */
.como { background: var(--cream); }
.como-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.como-head h2 { font-size: clamp(2rem, 4vw, 3rem); }

.journey { position: relative; list-style: none; padding: 0; margin: 0; max-width: 820px; margin-inline: auto; }
.journey-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 60px; transform: translateX(-50%); z-index: 0; }
.journey-line svg { width: 100%; height: 100%; }

.journey-step { position: relative; display: flex; width: 50%; padding: 1.1rem 2.6rem; z-index: 1; }
.journey-step.left { margin-right: 50%; justify-content: flex-end; }
.journey-step.right { margin-left: 50%; justify-content: flex-start; }

.journey-card {
  background: #fff; border-radius: 24px; padding: 1.4rem 1.5rem; max-width: 360px;
  display: flex; gap: 1rem; box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--c);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
}
.journey-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.journey-emoji { font-size: 1.9rem; width: 52px; height: 52px; flex: none; display: grid; place-items: center; border-radius: 16px; background: color-mix(in srgb, var(--c) 22%, #fff); }
.journey-n { font-family: var(--font-display); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c); filter: brightness(.82); }
.journey-card h3 { font-size: 1.3rem; margin-top: .15rem; }
.journey-card p { margin-top: .5rem; color: var(--ink-soft); font-size: .98rem; }

.journey-marker {
  position: absolute; top: 1.6rem; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%; color: #fff; border: 4px solid var(--cream);
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
  display: grid; place-items: center; box-shadow: var(--shadow-sm); z-index: 2;
}

@media (max-width: 720px) {
  .journey-line { left: 28px; }
  .journey-step, .journey-step.left, .journey-step.right { width: 100%; margin: 0; padding: 0 0 1.6rem 64px; justify-content: flex-start; }
  .journey-marker { left: 28px; top: .4rem; }
  .journey-card { max-width: none; }
}

/* ===========================================================
   CONTATO
   =========================================================== */
.contato { background: linear-gradient(180deg, var(--cream) 0%, var(--blue-soft) 120%); overflow: hidden; }
.contato-shapes { position: absolute; inset: 0; pointer-events: none; }
.contato-shapes .cs { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; animation: bob 9s ease-in-out infinite; }
.cs1 { width: 120px; height: 120px; background: var(--mauve-soft); top: 12%; left: 6%; }
.cs2 { width: 80px; height: 80px; background: var(--green-soft); bottom: 16%; right: 10%; animation-duration: 11s; }
.cs3 { width: 50px; height: 50px; background: var(--rose-soft); top: 24%; right: 18%; animation-duration: 7s; }

.contato-card {
  position: relative; z-index: 2; background: #fff; border-radius: 38px;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem); text-align: center;
  box-shadow: var(--shadow-lg); max-width: 820px;
}
.contato-mascot { display: flex; justify-content: center; margin-top: -110px; margin-bottom: .5rem; }
.contato-card h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-top: 1rem; }

.contato-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.4rem; }
.contato-method {
  display: flex; align-items: center; gap: .9rem; text-align: left;
  background: var(--cream); border-radius: 20px; padding: 1.1rem 1.2rem;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s, background .2s;
}
.contato-method:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cm-icon { width: 50px; height: 50px; flex: none; border-radius: 14px; display: grid; place-items: center; color: #fff; }
.m-whats .cm-icon { background: #5fb37a; }
.m-phone .cm-icon { background: var(--blue); }
.m-ig .cm-icon { background: linear-gradient(135deg, #c799b2, #c79f99); }
.cm-text { display: flex; flex-direction: column; line-height: 1.2; }
.cm-text strong { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--brown); }
.cm-text small { color: var(--ink-soft); font-size: .85rem; margin-top: .15rem; }

.contato-note { margin-top: 2rem; font-family: var(--font-display); color: var(--ink-soft); }

@media (max-width: 680px) { .contato-methods { grid-template-columns: 1fr; } }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer { background: var(--brown); color: #f3e7e2; text-align: center; padding: 3rem 1rem 2.4rem; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.footer-logo { height: 96px; width: auto; filter: brightness(0) invert(1); opacity: .92; }
.footer-tag { font-family: var(--font-display); font-size: 1rem; color: #f3e7e2; margin-top: .4rem; }
.footer-crp { font-size: .9rem; opacity: .75; }
.footer-credit { font-size: .82rem; opacity: .6; margin-top: .8rem; }

/* ===========================================================
   Reduced motion
   =========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .word { transform: none !important; }
  .hero-sub, .hero-cta, .hero-hint { opacity: 1 !important; transform: none !important; }
}
