:root {
  --deep-teal: #005466;
  --teal: #008fa3;
  --bright-teal: #00b3c7;
  --light-teal: #d8f7f8;
  --ink: #243236;
  --muted: #637174;
  --paper: #f5faf9;
  --white: #ffffff;
  --gold: #c79a46;
  --line: #d8e3e3;
  --shadow: 0 18px 50px rgba(0, 84, 102, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 124px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(245, 250, 249, 0.92);
  border-bottom: 1px solid rgba(0, 143, 163, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  height: clamp(56px, 7vw, 84px);
  width: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-teal), var(--teal));
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--deep-teal);
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.04;
}

.brand small {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2.2vw, 26px);
  color: var(--ink);
}

.nav-links a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--teal);
}

.hero {
  position: relative;
  min-height: min(680px, calc(86svh - 78px));
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 179, 199, 0.42), transparent 30%),
    linear-gradient(135deg, #003f4e, var(--deep-teal) 52%, #007f91);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 54, 66, 0.98), rgba(0, 84, 102, 0.9) 42%, rgba(0, 143, 163, 0.28) 70%, rgba(0, 0, 0, 0.02)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 179, 199, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(600px, 100%);
  min-height: min(680px, calc(86svh - 78px));
  padding: 64px clamp(20px, 7vw, 104px) 60px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 7vw, 84px);
}

.hero-logo {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.4vw, 18px);
  max-width: 760px;
  margin: 0;
  color: var(--white);
}

.hero-logo-name {
  font-family: var(--serif);
  font-size: clamp(48px, 7.4vw, 88px);
  font-weight: 500;
  line-height: 1;
}

.hero-logo-sub {
  font-family: var(--serif);
  font-size: clamp(15px, 1.5vw, 22px);
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.hero-copy {
  max-width: 560px;
  margin: 0;
  color: var(--white);
  font-size: clamp(17px, 1.9vw, 22px);
  text-shadow: 0 1px 18px rgba(0, 34, 42, 0.55);
}

/* Textos de corpo alinhados à esquerda para preservar leitura natural. */
main p:not(.eyebrow):not(.section-kicker) {
  text-align: left;
  hyphens: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-intro {
  padding: clamp(38px, 5.5vw, 66px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 179, 199, 0.26), transparent 36%),
    linear-gradient(135deg, #003f4e, var(--deep-teal) 60%, #007f91);
}

.hero-intro-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero-intro .hero-copy {
  max-width: 860px;
  margin: 0;
  font-size: clamp(18px, 2.05vw, 24px);
  text-shadow: none;
}

.hero-intro .hero-actions {
  margin-top: clamp(22px, 3vw, 32px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--bright-teal));
  box-shadow: 0 14px 30px rgba(0, 179, 199, 0.22);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, var(--white), var(--light-teal));
}

.quick-strip span {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 18px;
  color: var(--deep-teal);
  border-right: 1px solid rgba(0, 143, 163, 0.2);
  font-family: var(--serif);
  font-size: clamp(17px, 1.7vw, 24px);
  text-align: center;
}

.quick-strip span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
  scroll-margin-top: 0;
}

#inicio {
  scroll-margin-top: 0;
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.split,
.contact-grid,
.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.intro-band,
.profile-band {
  background: var(--white);
}

.section h2 {
  max-width: 760px;
  color: var(--deep-teal);
  font-size: clamp(34px, 5vw, 60px);
}

.text-flow p,
.profile-copy p,
.contact-grid p,
.practice-card p {
  color: var(--muted);
  font-size: 18px;
}

.text-flow p {
  margin: 0 0 20px;
}

.text-flow p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.practice-card {
  display: block;
  min-height: 340px;
  padding: 28px;
  border: 1px solid rgba(0, 143, 163, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.practice-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 179, 199, 0.42);
}

.practice-number {
  width: fit-content;
  margin-bottom: 48px;
  padding-bottom: 8px;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: 24px;
}

.practice-card h3 {
  margin: 0 0 14px;
  color: var(--deep-teal);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.08;
}

.practice-card p {
  margin: 0;
}

.process-band {
  background:
    radial-gradient(circle at 88% 8%, rgba(0, 179, 199, 0.35), transparent 32%),
    linear-gradient(135deg, #003f4e, var(--deep-teal) 62%, #007f91);
}

.process-band .section-kicker,
.process-band h2 {
  color: var(--white);
}

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

.process-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(216, 247, 248, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.process-card span,
.values-grid span,
.content-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.process-card h3,
.content-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.08;
}

.process-card h3,
.process-card p {
  color: var(--white);
}

.process-card p,
.values-grid p {
  margin: 14px 0 0;
  font-size: 17px;
}

.process-card p {
  color: rgba(255, 255, 255, 0.78);
}

.values-grid {
  margin-top: clamp(42px, 6vw, 72px);
}

.values-grid article {
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(0, 143, 163, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.values-grid p {
  color: var(--muted);
}

.values-grid span {
  margin-bottom: 14px;
}

.content-card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(0, 143, 163, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.content-card h3 {
  color: var(--deep-teal);
}

.content-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.profile-image {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(0, 92, 109, 0.12);
  box-shadow: var(--shadow);
}

.profile-copy p {
  max-width: 560px;
  margin: 24px 0;
}

.subpage-hero {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
  color: var(--ink);
  background: linear-gradient(165deg, var(--white) 0%, #e6f2f2 100%);
  border-bottom: 1px solid var(--line);
}

.subpage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.subpage-hero h1 {
  margin: 0;
  color: var(--deep-teal);
  font-family: var(--serif);
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 500;
  line-height: 1.04;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.subpage-hero .button.secondary {
  color: var(--deep-teal);
  border-color: rgba(0, 84, 102, 0.4);
  background: transparent;
}

.subpage-hero .button.secondary:hover {
  border-color: var(--deep-teal);
  background: rgba(0, 84, 102, 0.06);
}

.subpage-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 37, 43, 0.28);
}

.about-portrait {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 16%;
  border-radius: 14px;
  box-shadow: 0 26px 55px rgba(0, 54, 66, 0.18);
}

.partner-band {
  background: linear-gradient(180deg, var(--paper), var(--white));
}

.partner-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  max-width: 1040px;
}

.partner-media {
  margin: 0;
}

.partner-media img {
  width: min(100%, 390px);
  height: auto;
  margin-inline: auto;
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(0, 54, 66, 0.18);
}

.partner-copy {
  max-width: 570px;
}

.partner-copy h2 {
  margin: 0 0 28px;
  color: var(--deep-teal);
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 500;
  line-height: 1.06;
}

#a-socia .partner-copy p:not(.section-kicker) {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.58;
  text-align: left;
}

#a-socia .partner-copy p:last-child {
  margin-bottom: 0;
}

#a-socia .text-link {
  margin-top: 6px;
}

.training-band {
  background: var(--white);
}

.training-band h2 {
  max-width: 620px;
}

.training-cta {
  margin-top: 30px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(0, 143, 163, 0.18);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), var(--paper));
  box-shadow: var(--shadow);
}

.training-cta span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.training-cta p {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
}

.content-social {
  background:
    linear-gradient(90deg, rgba(216, 247, 248, 0.28) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, var(--white), var(--paper));
  background-size: 120px 100%, auto;
  overflow: hidden;
}

.social-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.social-copy {
  max-width: 690px;
}

.social-copy h2 {
  margin: 0;
  color: var(--deep-teal);
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 124px);
  font-weight: 500;
  line-height: 0.92;
}

.social-copy p:not(.section-kicker) {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.56;
}

.social-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: clamp(26px, 4vw, 42px);
}

.social-handle {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  color: var(--gold);
  background: transparent;
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.social-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 84, 102, 0.16);
  border-radius: 50%;
  color: var(--white);
  background: var(--deep-teal);
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.social-icon-button:hover {
  transform: translateY(-1px);
  background: var(--teal);
  box-shadow: 0 14px 26px rgba(0, 84, 102, 0.18);
}

.social-icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.phone-stage::before,
.phone-stage::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0, 143, 163, 0.22);
  pointer-events: none;
}

.phone-stage::before {
  width: 520px;
  height: 520px;
  border-radius: 50%;
}

.phone-stage::after {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  transform: translate(52px, -34px);
}

.phone-mockup {
  position: relative;
  z-index: 1;
  width: min(100%, 276px);
  padding: 12px;
  border-radius: 38px;
  background: #0e1518;
  box-shadow:
    0 26px 70px rgba(0, 54, 66, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.phone-speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 3;
  width: 78px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
}

.phone-screen-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1320 / 2558;
  object-fit: cover;
  object-position: center top;
}

.areas-hero {
  padding: clamp(68px, 9vw, 116px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(0, 84, 102, 0.96), rgba(0, 143, 163, 0.82)),
    url("assets/hero-marca-tognetti-moreto.png") right center / min(44vw, 520px) auto no-repeat;
  color: var(--white);
}

.areas-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: end;
}

.areas-hero h1 {
  max-width: 840px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 500;
  line-height: 1.04;
}

.areas-hero p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
}

.areas-list {
  background: var(--white);
}

.area-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 46px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px) 0;
  border-bottom: 1px solid rgba(0, 143, 163, 0.18);
  text-decoration: none;
}

.area-row:first-child {
  border-top: 1px solid rgba(0, 143, 163, 0.18);
}

.area-row > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
}

.area-row h2 {
  margin: 0;
  color: var(--deep-teal);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.05;
}

.area-row p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.area-row strong {
  color: var(--teal);
  font-size: 14px;
  text-transform: uppercase;
}

.area-row:hover h2,
.area-row:hover strong {
  color: var(--bright-teal);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--deep-teal);
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.contact-band {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 179, 199, 0.32), transparent 34%),
    linear-gradient(135deg, #004453, var(--deep-teal) 58%, #008094);
}

.contact-band .section-kicker,
.contact-band h2,
.contact-band p {
  color: var(--white);
}

.contact-grid p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 56px rgba(0, 37, 43, 0.22);
  backdrop-filter: blur(12px);
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 14px 20px;
  border-radius: 8px;
  color: var(--white);
  background: #25d366;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.28);
}

.whatsapp-cta:hover {
  background: #20bf5a;
}

.whatsapp-cta svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: currentColor;
}

.whatsapp-cta span {
  margin: 0;
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  text-transform: none;
}

.contact-link {
  display: block;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
}

.contact-link:hover strong {
  color: var(--light-teal);
}

.contact-panel span,
.contact-panel strong {
  display: block;
}

.contact-panel span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-panel strong {
  color: var(--white);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer small {
  flex-basis: 100%;
  color: #7b898c;
  font-size: 12px;
}

.wa-float {
  position: fixed;
  right: clamp(16px, 4vw, 28px);
  bottom: clamp(16px, 4vw, 28px);
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.wa-float:hover {
  transform: translateY(-2px);
  background: #20bf5a;
}

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

  .wa-float,
  .button,
  .practice-card {
    transition: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    row-gap: 10px;
  }

  .hero,
  .hero-content {
    min-height: min(600px, 78svh);
  }

  .hero-image {
    width: 100%;
    object-position: 70% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 68, 80, 0.94), rgba(0, 92, 109, 0.72) 62%, rgba(0, 0, 0, 0.2)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0));
  }

  .quick-strip,
  .split,
  .contact-grid,
  .profile-grid,
  .partner-grid,
  .social-cta,
  .subpage-grid,
  .areas-hero-grid,
  .process-grid,
  .values-grid,
  .content-grid,
  .practice-grid {
    grid-template-columns: 1fr;
  }

  .area-row {
    grid-template-columns: 1fr;
  }

  .quick-strip span {
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .practice-card {
    min-height: auto;
  }

  .practice-number {
    margin-bottom: 32px;
  }

  .partner-copy {
    order: 1;
    max-width: none;
  }

  .partner-media {
    order: 2;
  }

  .partner-media img {
    width: min(100%, 360px);
  }

  .phone-stage {
    min-height: auto;
  }

  .phone-stage::before {
    width: min(88vw, 420px);
    height: min(88vw, 420px);
  }

  .phone-stage::after {
    width: min(62vw, 280px);
    height: min(62vw, 280px);
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 0;
  }

  .site-header {
    position: static;
  }

  .brand {
    align-items: flex-start;
  }

  .brand small {
    max-width: 210px;
  }

  .brand strong {
    max-width: 260px;
  }

  .hero,
  .hero-content {
    min-height: 520px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 54px;
  }

  .hero-image {
    width: 100%;
    object-position: 80% center;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .training-cta .button {
    width: auto;
    max-width: calc(100% - 32px);
    padding-inline: 18px;
    white-space: nowrap;
  }

  .section {
    padding-block: 58px;
    scroll-margin-top: 24px;
  }

  #inicio {
    scroll-margin-top: 24px;
  }

  .partner-grid {
    gap: 28px;
  }

  .partner-copy h2 {
    margin-bottom: 20px;
  }

  .social-copy h2 {
    font-size: clamp(56px, 17vw, 72px);
  }

  .social-actions {
    padding-right: 74px;
  }

  .social-handle {
    min-width: 0;
    flex: 1 1 auto;
    justify-content: flex-start;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .social-icon-button {
    width: 54px;
    height: 54px;
  }

  .phone-mockup {
    width: min(100%, 286px);
    border-radius: 32px;
  }

  .phone-screen {
    border-radius: 24px;
  }
}
