:root {
  --color-navy: #00213a;
  --color-blue: #335fa5;
  --color-sky: #6fadd2;
  --color-mist: #ebf3ff;
  --color-text: #12304f;
  --color-text-soft: rgba(18, 48, 79, 0.76);
  --color-line: rgba(0, 33, 58, 0.12);
  --color-white: #ffffff;
  --font-sans: "Plus Jakarta Sans", sans-serif;
  --font-display: "Zodiak", "Cormorant Garamond", serif;
  --header-height: 92px;
  --container: min(1220px, calc(100vw - 56px));
  --radius-lg: 36px;
  --radius-md: 24px;
  --shadow-soft: 0 30px 70px rgba(0, 33, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at top left, rgba(111, 173, 210, 0.16), transparent 22%),
    linear-gradient(180deg, #f7fbff 0%, var(--color-mist) 56%, #f9fbfe 100%);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.section-shell,
.hero-shell,
.footer-bottom {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
  padding: 18px 28px;
  background: rgba(247, 251, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 33, 58, 0.06);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.nav-toggle,
.mobile-menu {
  display: none;
}

.site-header.is-scrolled {
  background: rgba(0, 33, 58, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 33, 58, 0.24);
}

.site-header.is-scrolled .site-nav,
.site-header.is-scrolled .site-nav a,
.site-header.is-scrolled .header-portal,
.site-header.is-scrolled .header-whatsapp {
  color: rgba(255, 255, 255, 0.92);
}

.site-header.is-scrolled .header-portal,
.site-header.is-scrolled .header-whatsapp {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: min(320px, 32vw);
  min-width: 214px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.header-actions,
.hero-actions,
.form-shortcuts {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-whatsapp,
.header-portal,
.btn,
.header-cta,
.mobile-sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.header-whatsapp {
  border-color: rgba(0, 33, 58, 0.12);
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.64);
}

.header-portal,
.btn-secondary,
.mobile-sticky-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta,
.btn-primary,
.mobile-sticky-cta {
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: 0 18px 40px rgba(0, 33, 58, 0.18);
}

.btn-whatsapp,
.mobile-sticky-whatsapp {
  background: #1f9d53;
  color: var(--color-white);
  box-shadow: 0 18px 40px rgba(31, 157, 83, 0.22);
}

.hero {
  position: relative;
  overflow: clip;
  min-height: calc(100svh - var(--header-height));
  padding: 26px 0 48px;
  color: var(--color-text);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 14%, rgba(111, 173, 210, 0.22), transparent 18%),
    radial-gradient(circle at 86% 18%, rgba(51, 95, 165, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(235, 243, 255, 0.2));
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
  gap: 56px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(0, 33, 58, 0.08);
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 255, 0.92)),
    var(--color-white);
  box-shadow: 0 36px 90px rgba(0, 33, 58, 0.12);
}

.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-sky);
}

.hero-copy h1,
.section-heading h2,
.band-copy h2,
.team-copy h2,
.form-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.5rem, 6vw, 6rem);
}

.hero-lead,
.editorial-copy p,
.method-copy p,
.team-copy p,
.form-intro p,
.footer-brand p,
.footer-contact p,
.contact-form label,
.hero-caption,
.band-list div,
.values-grid div {
  line-height: 1.72;
}

.hero-lead {
  max-width: 56ch;
  margin: 24px 0 0;
  color: var(--color-text-soft);
  font-size: 1.04rem;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-points {
  display: grid;
  gap: 14px;
  list-style: none;
  padding: 28px 0 0;
  margin: 28px 0 0;
  border-top: 1px solid rgba(0, 33, 58, 0.12);
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
}

.hero-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: none;
  background: var(--color-sky);
}

.hero-visual {
  position: relative;
}

.hero-visual-frame {
  position: relative;
  min-height: 620px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: 34px 34px 112px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 26%, rgba(111, 173, 210, 0.26), transparent 0 20%),
    radial-gradient(circle at 50% 58%, rgba(51, 95, 165, 0.08), transparent 0 36%),
    linear-gradient(180deg, #f7fbff, #e5f0fb 58%, #dae7f5 100%);
  box-shadow: var(--shadow-soft);
}

.hero-visual-frame::before {
  content: "";
  position: absolute;
  inset: auto auto 84px 48px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(51, 95, 165, 0.1);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.38), transparent 62%),
    conic-gradient(
      from 40deg,
      rgba(51, 95, 165, 0.08),
      rgba(111, 173, 210, 0.02),
      rgba(51, 95, 165, 0.08)
    );
  box-shadow:
    inset 0 0 0 24px rgba(255, 255, 255, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  z-index: 0;
}

.hero-visual-frame::after {
  content: "";
  position: absolute;
  inset: 52px auto auto 54px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(51, 95, 165, 0.95), rgba(0, 33, 58, 0.96));
  box-shadow:
    42px 172px 0 -30px rgba(111, 173, 210, 0.34),
    0 18px 40px rgba(51, 95, 165, 0.12);
  clip-path: path("M59 0C86 0 109 9 118 33V85C111 107 88 118 59 118C25 118 0 94 0 59C0 24 25 0 59 0ZM49 22C34 22 21 34 21 50C21 78 49 102 79 102C92 102 103 98 111 90C110 59 86 22 49 22Z");
  opacity: 0.16;
  z-index: 0;
}

.doctor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.profile-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(235, 243, 255, 0.92), rgba(210, 226, 244, 0.92));
}

.profile-fallback.hidden {
  display: none;
}

.hero-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(0, 33, 58, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.hero-caption span,
.band-list span,
.discipline-list span,
.team-facts span,
.values-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-caption strong {
  font-size: 1.05rem;
}

.hero-brand-block {
  position: relative;
  z-index: 1;
  max-width: none;
  padding-right: 0;
}

.hero-visual-intro {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  max-width: 30ch;
}

.hero-visual-intro span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 33, 58, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual-intro strong {
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-logo-stage {
  position: relative;
  z-index: 1;
  min-height: 320px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.hero-logo-aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
}

.hero-logo-aura-primary {
  width: 290px;
  height: 290px;
  background: radial-gradient(circle, rgba(51, 95, 165, 0.22), rgba(51, 95, 165, 0));
}

.hero-logo-aura-secondary {
  width: 390px;
  height: 180px;
  transform: translateY(74px);
  background: radial-gradient(circle, rgba(0, 33, 58, 0.16), rgba(0, 33, 58, 0));
}

.hero-logo-3d {
  width: min(100%, 320px);
  filter:
    drop-shadow(0 24px 28px rgba(0, 33, 58, 0.14))
    drop-shadow(0 54px 60px rgba(51, 95, 165, 0.16));
  transform-style: preserve-3d;
  animation:
    heroLogoSpin 16s linear infinite,
    heroLogoFloat 5.6s ease-in-out infinite;
}

.hero-discipline {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 33, 58, 0.08);
  box-shadow: 0 18px 36px rgba(0, 33, 58, 0.08);
  color: var(--color-navy);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  animation: heroDisciplineFloat 6s ease-in-out infinite;
}

.discipline-top-left {
  top: 20px;
  left: 8px;
}

.discipline-top-right {
  top: 52px;
  right: 0;
  animation-delay: -1.2s;
}

.discipline-bottom-left {
  bottom: 64px;
  left: 12px;
  animation-delay: -2s;
}

.discipline-bottom-right {
  right: 18px;
  bottom: 28px;
  animation-delay: -2.8s;
}

.hero-brand-line {
  max-width: 10.4ch;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 3.8vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
  text-wrap: balance;
  color: var(--color-navy);
}

.hero-brand-support {
  max-width: 28ch;
  margin: 18px 0 0;
  color: var(--color-text-soft);
}

.section {
  padding: 112px 0;
}

.section-editorial {
  position: relative;
}

.section-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center top / 980px auto no-repeat url("assets/images/emagreser-pattern.jpg");
  opacity: 0.045;
  pointer-events: none;
}

.editorial-layout,
.band-layout,
.method-grid,
.values-layout,
.team-layout,
.form-layout,
.footer-layout {
  display: grid;
  gap: 36px;
}

.editorial-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.92fr);
  align-items: start;
}

.section-heading {
  max-width: 860px;
}

.section-heading h2,
.band-copy h2,
.team-copy h2,
.form-intro h2 {
  font-size: clamp(2.6rem, 4.2vw, 4.8rem);
  color: var(--color-navy);
}

.editorial-copy {
  display: grid;
  gap: 24px;
  align-content: start;
}

.editorial-copy p,
.method-copy p,
.team-copy p,
.form-intro p,
.footer-brand p,
.footer-contact p {
  margin: 0;
  color: var(--color-text-soft);
}

.editorial-quote {
  margin: 0;
  padding: 32px 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
  color: var(--color-blue);
}

.section-band {
  background: linear-gradient(180deg, rgba(111, 173, 210, 0.08), rgba(111, 173, 210, 0.02));
}

.band-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.band-list {
  display: grid;
  gap: 20px;
}

.band-list div,
.values-grid div,
.team-facts div {
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 42px;
}

.pillar {
  position: relative;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 33, 58, 0.14);
}

.pillar-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(180deg, rgba(111, 173, 210, 0.22), rgba(51, 95, 165, 0.08));
  color: var(--color-blue);
  font-weight: 800;
}

.pillar h3,
.method-copy h3,
.team-card-copy h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.34rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.08;
  text-wrap: balance;
  color: var(--color-navy);
}

.pillar p,
.discipline-list li {
  margin: 0;
  color: var(--color-text-soft);
}

.method-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  margin-top: 68px;
}

.discipline-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.discipline-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--color-line);
}

.section-values {
  background:
    radial-gradient(circle at 12% 20%, rgba(111, 173, 210, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(235, 243, 255, 0.7), rgba(247, 251, 255, 0.92));
}

.values-layout {
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}

.section-team {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.92)),
    var(--color-white);
}

.team-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
  align-items: center;
}

.team-facts {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.team-card {
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(235, 243, 255, 0.92));
  border: 1px solid rgba(0, 33, 58, 0.08);
  box-shadow: var(--shadow-soft);
}

.team-card-image {
  position: relative;
  min-height: 560px;
  background: linear-gradient(180deg, rgba(111, 173, 210, 0.2), rgba(0, 33, 58, 0.08));
}

.team-card-copy {
  padding: 28px;
}

.section-form {
  position: relative;
  overflow: hidden;
}

.section-form::before {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 173, 210, 0.24), transparent 64%);
  pointer-events: none;
}

.form-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.98fr);
  align-items: start;
}

.form-shortcuts {
  align-items: start;
  flex-direction: column;
  margin-top: 28px;
}

.form-shortcuts p {
  max-width: 48ch;
}

.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  padding: 34px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 33, 58, 0.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--color-navy);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(0, 33, 58, 0.12);
  background: rgba(248, 251, 255, 0.94);
  color: var(--color-text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(51, 95, 165, 0.16);
  border-color: rgba(51, 95, 165, 0.34);
}

.form-hint {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.94rem;
}

.site-footer {
  padding-top: 72px;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(180deg, #0a2b46, #001729);
}

.footer-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  align-items: end;
}

.footer-logo {
  width: min(420px, 100%);
  margin-bottom: 28px;
}

.footer-contact strong {
  color: var(--color-white);
}

.footer-bottom {
  padding: 24px 0 34px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.mobile-sticky-actions {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mobile-menu-head,
.mobile-menu-actions {
  display: grid;
  gap: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-group .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.stagger-group .reveal:nth-child(3) {
  transition-delay: 180ms;
}

.stagger-group .reveal:nth-child(4) {
  transition-delay: 270ms;
}

.stagger-group .reveal:nth-child(5) {
  transition-delay: 360ms;
}

@media (hover: hover) {
  .site-nav a:hover,
  .header-portal:hover,
  .header-whatsapp:hover,
  .header-cta:hover,
  .btn:hover,
  .mobile-sticky-cta:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 1160px) {
  .hero-shell,
  .editorial-layout,
  .band-layout,
  .method-grid,
  .values-layout,
  .team-layout,
  .form-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .pillars {
    grid-template-columns: 1fr;
  }

  .hero-visual-frame {
    min-height: 580px;
  }

  .hero-brand-block {
    padding-right: 0;
  }

  .hero-discipline {
    font-size: 0.8rem;
  }
}

@media (min-width: 861px) {
  .hero-copy h1,
  .section-heading h2,
  .band-copy h2,
  .team-copy h2,
  .form-intro h2 {
    line-height: 1.08;
    letter-spacing: -0.018em;
  }

  .hero-copy h1 {
    max-width: 9.6ch;
    font-size: clamp(3.25rem, 5.1vw, 5.45rem);
  }

  .section-heading h2,
  .band-copy h2,
  .team-copy h2,
  .form-intro h2 {
    font-size: clamp(2.45rem, 3.55vw, 4.3rem);
  }

  .hero-brand-line {
    max-width: 10.8ch;
    font-size: clamp(2.3rem, 3.1vw, 3.7rem);
    line-height: 1.08;
    letter-spacing: -0.018em;
  }

  .editorial-quote {
    line-height: 1.14;
    letter-spacing: -0.01em;
  }

  .pillar h3,
  .method-copy h3,
  .team-card-copy h3 {
    line-height: 1.12;
    letter-spacing: -0.01em;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100vw - 32px, 1220px);
    --header-height: 76px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    padding: 14px 16px;
    gap: 14px;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    padding: 0;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 16px;
    place-content: center;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 36px rgba(0, 33, 58, 0.1);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-navy);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(0, 23, 41, 0.46);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .mobile-menu.is-open {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-panel {
    position: absolute;
    inset: 14px 14px auto;
    padding: 18px;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 250, 255, 0.95)),
      var(--color-white);
    box-shadow: 0 28px 60px rgba(0, 33, 58, 0.18);
    transform: translateY(-12px);
    transition: transform 220ms ease;
  }

  .mobile-menu.is-open .mobile-menu-panel {
    transform: translateY(0);
  }

  .mobile-menu-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-line);
  }

  .mobile-menu-head strong {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--color-navy);
  }

  .mobile-menu-close {
    border: 0;
    border-radius: 999px;
    min-height: 40px;
    padding: 0 14px;
    background: rgba(0, 33, 58, 0.06);
    color: var(--color-navy);
    font-weight: 700;
    cursor: pointer;
  }

  .mobile-menu-nav {
    display: grid;
    gap: 10px;
    padding: 16px 0;
  }

  .mobile-menu-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-line);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--color-navy);
  }

  .brand img {
    min-width: 190px;
    width: 200px;
  }

  .hero {
    padding-top: 10px;
  }

  .hero-shell {
    min-height: calc(100svh - var(--header-height) - 20px);
    align-content: end;
    padding: 112px 18px 24px;
    border: 0;
    border-radius: 34px;
    background:
      linear-gradient(180deg, rgba(0, 23, 41, 0.06), rgba(0, 23, 41, 0.78)),
      center 18% / cover no-repeat url("assets/images/joao-paulo.jpeg");
    box-shadow: 0 34px 80px rgba(0, 33, 58, 0.24);
  }

  .hero-backdrop,
  .hero-visual {
    display: none;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: 8.8ch;
    font-size: clamp(2.9rem, 12vw, 4.35rem);
    color: var(--color-white);
  }

  .hero-visual-frame {
    min-height: 500px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px 22px 136px;
  }

  .hero-visual-frame::before {
    inset: auto auto 92px 16px;
    width: 138px;
    height: 138px;
    box-shadow:
      inset 0 0 0 14px rgba(255, 255, 255, 0.14),
      inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  }

  .hero-visual-frame::after {
    inset: 34px auto auto 22px;
    width: 70px;
    height: 70px;
    box-shadow:
      24px 100px 0 -18px rgba(111, 173, 210, 0.4),
      0 12px 24px rgba(51, 95, 165, 0.12);
  }

  .hero-shell {
    gap: 0;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-lead {
    max-width: 29ch;
    color: rgba(255, 255, 255, 0.88);
  }

  .hero-points {
    border-top-color: rgba(255, 255, 255, 0.18);
  }

  .hero-points li {
    color: rgba(255, 255, 255, 0.94);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .band-copy h2,
  .team-copy h2,
  .form-intro h2 {
    font-size: clamp(2.15rem, 9vw, 3.1rem);
  }

  .contact-form {
    padding: 24px;
  }

  .team-card-image {
    min-height: 420px;
  }

  .mobile-sticky-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-sticky-actions a:last-child {
    grid-column: 1 / -1;
  }

  body {
    padding-bottom: 132px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible,
  .header-whatsapp,
  .header-cta,
  .btn,
  .mobile-sticky-cta,
  .hero-logo-3d,
  .hero-discipline {
    transition: none;
    transform: none;
    opacity: 1;
    animation: none;
  }
}

@keyframes heroLogoSpin {
  from {
    transform: rotateY(0deg) rotateZ(-7deg);
  }

  50% {
    transform: rotateY(180deg) rotateZ(7deg);
  }

  to {
    transform: rotateY(360deg) rotateZ(-7deg);
  }
}

@keyframes heroLogoFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@keyframes heroDisciplineFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}
