:root {
  --navy: #071a36;
  --navy-soft: #102b50;
  --orange: #ff7300;
  --orange-soft: #fff1e5;
  --paper: #f7f8fa;
  --white: #ffffff;
  --ink: #0b1c35;
  --muted: #5d6675;
  --line: #dce1e7;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Manrope", Arial, sans-serif;
  --shadow: 0 28px 70px rgba(7, 26, 54, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.section-pad { padding: 128px 0; }

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  border-color: rgba(7, 26, 54, 0.08);
  box-shadow: 0 8px 30px rgba(7, 26, 54, 0.05);
}

.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }

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

.brand-mark {
  position: relative;
  display: flex;
  align-items: end;
  gap: 3px;
  width: 43px;
  height: 43px;
  padding: 9px 8px 8px;
  border-radius: 50%;
  background: var(--navy);
}

.brand-mark span { width: 5px; border-radius: 2px 2px 0 0; background: var(--white); }
.brand-mark span:nth-child(1) { height: 8px; }
.brand-mark span:nth-child(2) { height: 13px; }
.brand-mark span:nth-child(3) { height: 18px; }
.brand-mark span:nth-child(4) { height: 24px; background: var(--orange); }

.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: var(--display); font-size: 1.05rem; letter-spacing: -0.03em; }
.brand-copy small { margin-top: 5px; color: var(--orange); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 31px; font-size: 0.92rem; font-weight: 600; }
.main-nav a { position: relative; text-decoration: none; }
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { padding: 12px 18px; color: var(--white); background: var(--navy); border-radius: 999px; transition: background 180ms ease, transform 180ms ease; }
.nav-cta:hover, .nav-cta:focus-visible { background: var(--orange); transform: translateY(-2px); }

.menu-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 790px;
  padding-top: 84px;
  background: linear-gradient(108deg, #fff 0%, #fff 61%, #f3f5f8 61%, #f3f5f8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  top: 105px;
  left: -250px;
  border: 1px solid rgba(255, 115, 0, 0.22);
  border-radius: 50%;
}

.hero-grid { display: grid; grid-template-columns: 1.05fr 0.78fr; align-items: center; gap: 96px; min-height: 706px; }

.eyebrow, .section-kicker {
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 28px; height: 2px; background: var(--orange); }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 730px;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(3.25rem, 6.5vw, 6.25rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

h1 em { display: block; color: var(--orange); font-family: var(--serif); font-weight: 600; letter-spacing: -0.055em; }

.hero-lead { max-width: 610px; margin-bottom: 34px; color: var(--muted); font-size: 1.13rem; line-height: 1.75; }

.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 13px 23px;
  border-radius: 3px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button-primary { color: var(--white); background: var(--navy); border: 1px solid var(--navy); }
.button-primary:hover, .button-primary:focus-visible { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  text-decoration: none;
}
.text-link span { color: var(--orange); font-size: 1.2em; transition: transform 180ms ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translate(3px, 3px); }

.hero-tags { display: flex; gap: 9px; flex-wrap: wrap; margin: 40px 0 0; padding: 0; list-style: none; }
.hero-tags li { padding: 7px 12px; color: var(--navy-soft); background: var(--paper); border: 1px solid var(--line); border-radius: 999px; font-size: 0.78rem; font-weight: 600; }

.hero-visual { position: relative; align-self: end; padding-top: 50px; }
.portrait-frame { position: relative; z-index: 2; height: 636px; overflow: hidden; background: var(--navy); box-shadow: var(--shadow); }
.portrait-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1); pointer-events: none; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; }
.portrait-label { position: absolute; right: 0; bottom: 0; left: 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; color: var(--white); background: rgba(7, 26, 54, 0.92); font-family: var(--display); font-size: 0.95rem; font-weight: 700; }
.portrait-label small { color: rgba(255, 255, 255, 0.7); font-family: var(--sans); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.orbit-note { position: absolute; z-index: 3; top: 32px; right: -48px; display: grid; place-items: center; width: 120px; height: 120px; padding: 24px; color: var(--white); background: var(--orange); border: 8px solid var(--white); border-radius: 50%; font-size: 0.54rem; font-weight: 700; letter-spacing: 0.07em; line-height: 1.5; text-align: center; }
.hero-line { position: absolute; right: 0; bottom: 0; left: 0; height: 9px; background: linear-gradient(90deg, var(--navy) 0 64%, var(--orange) 64%); }

.intro { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 0.4fr 1.6fr; gap: 80px; }
.intro-copy h2, .section-heading h2, .method-content > h2, .about-copy h2, .contact-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2.45rem, 4.8vw, 4.7rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.05;
}
.intro-copy h2 { max-width: 900px; margin-bottom: 34px; }
.intro-copy > p { max-width: 720px; margin: 0 0 0 auto; color: var(--muted); font-size: 1.08rem; }

.services { color: var(--white); background: var(--navy); }
.section-heading { display: grid; grid-template-columns: 1.4fr 0.6fr; align-items: end; gap: 80px; margin-bottom: 66px; }
.section-heading h2 { max-width: 790px; margin-bottom: 0; }
.section-heading > p { margin-bottom: 7px; color: rgba(255, 255, 255, 0.65); }
.service-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255, 255, 255, 0.2); }
.service-card { position: relative; display: grid; grid-template-columns: 38px 54px 1fr 24px; gap: 18px; min-height: 225px; padding: 42px 34px 38px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.2); transition: background 220ms ease, padding 220ms ease; }
.service-card:nth-child(odd) { padding-right: 42px; border-right: 1px solid rgba(255, 255, 255, 0.2); }
.service-card:nth-child(even) { padding-left: 42px; }
.service-card:hover { background: rgba(255, 255, 255, 0.045); }
.service-number { color: var(--orange); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; }
.service-icon { display: grid; place-items: center; width: 48px; height: 48px; color: var(--orange); background: rgba(255, 115, 0, 0.1); border: 1px solid rgba(255, 115, 0, 0.28); border-radius: 50%; }
.service-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin-bottom: 12px; font-family: var(--display); font-size: 1.38rem; letter-spacing: -0.025em; }
.service-card p { margin: 0; color: rgba(255, 255, 255, 0.63); font-size: 0.94rem; }
.service-arrow { color: var(--orange); font-size: 1.35rem; transition: transform 180ms ease; }
.service-card:hover .service-arrow { transform: translate(3px, -3px); }

.method { background: var(--paper); }
.method-grid { display: grid; grid-template-columns: minmax(330px, 0.82fr) 1fr; align-items: start; gap: 104px; }
.method-visual { position: sticky; top: 112px; }
.method-visual::before { content: ""; position: absolute; z-index: 0; inset: -20px 22px 22px -20px; border: 1px solid var(--orange); }
.method-visual img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; box-shadow: var(--shadow); }
.method-content > h2 { margin-bottom: 30px; }
.method-lead { max-width: 650px; margin-bottom: 42px; color: var(--muted); font-size: 1.05rem; }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.steps li { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.steps li > span { color: var(--orange); font-size: 0.77rem; font-weight: 700; letter-spacing: 0.1em; }
.steps h3 { margin-bottom: 7px; font-family: var(--display); font-size: 1.16rem; letter-spacing: -0.02em; }
.steps p { margin: 0; color: var(--muted); }

.about { overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 0.95fr 0.88fr; align-items: center; gap: 116px; }
.about-copy h2 { margin-bottom: 34px; }
.about-copy > p { max-width: 610px; margin-bottom: 20px; color: var(--muted); font-size: 1.05rem; }
.about-copy .text-link { margin-top: 19px; }
.about-photo { position: relative; }
.about-photo::after { content: ""; position: absolute; z-index: -1; width: 62%; height: 82%; right: -42px; bottom: -42px; background: var(--orange-soft); }
.about-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 24%; box-shadow: var(--shadow); }
.about-stamp { position: absolute; right: -36px; bottom: 45px; display: flex; align-items: center; gap: 12px; min-width: 178px; padding: 14px 17px; color: var(--white); background: var(--navy); box-shadow: 0 12px 35px rgba(7, 26, 54, 0.2); }
.about-stamp strong { display: grid; place-items: center; width: 39px; height: 39px; background: var(--orange); border-radius: 50%; font-family: var(--serif); font-size: 1.1rem; }
.about-stamp span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; line-height: 1.45; text-transform: uppercase; }

.contact { padding-top: 70px; background: var(--white); }
.contact-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 0.47fr 1fr; align-items: center; min-height: 500px; color: var(--white); background: var(--navy); }
.contact-panel::after { content: ""; position: absolute; right: -110px; bottom: -180px; width: 420px; height: 420px; border: 1px solid rgba(255, 115, 0, 0.32); border-radius: 50%; }
.contact-logo { position: relative; align-self: stretch; overflow: hidden; background: #0c2344; }
.contact-logo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(7, 26, 54, 0.22), rgba(7, 26, 54, 0.8)); }
.contact-logo img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: screen; opacity: 0.46; transform: scale(1.18); }
.contact-copy { position: relative; z-index: 2; padding: 70px 76px; }
.section-kicker-light { color: var(--orange); }
.contact-copy h2 { max-width: 760px; margin-bottom: 26px; }
.contact-copy > p { max-width: 650px; margin-bottom: 32px; color: rgba(255, 255, 255, 0.68); }
.button-light { color: var(--navy); background: var(--white); border: 1px solid var(--white); }
.button-light:hover, .button-light:focus-visible { color: var(--white); background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }

.site-footer { padding: 52px 0 26px; background: var(--paper); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 0.8fr 1fr auto; align-items: center; gap: 70px; padding-bottom: 43px; }
.footer-grid > p { max-width: 440px; margin: 0; color: var(--muted); font-size: 0.92rem; }
.footer-links { display: flex; gap: 25px; font-size: 0.86rem; font-weight: 700; }
.footer-links a { text-decoration: none; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; color: #7a8290; border-top: 1px solid var(--line); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.22,.7,.2,1); }
.reveal[data-delay="1"] { transition-delay: 120ms; }
.reveal.visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 3px solid rgba(255, 115, 0, 0.72); outline-offset: 4px; }

@media (max-width: 980px) {
  .section-pad { padding: 100px 0; }
  .menu-toggle { position: relative; z-index: 60; display: grid; place-content: center; gap: 7px; width: 46px; height: 46px; padding: 0; color: var(--navy); background: transparent; border: 1px solid var(--line); border-radius: 50%; }
  .menu-toggle span:not(.sr-only) { width: 20px; height: 2px; background: currentColor; transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-4.5px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 28px; padding: 100px 48px; color: var(--white); background: var(--navy); font-family: var(--display); font-size: 1.9rem; transform: translateX(100%); transition: transform 300ms cubic-bezier(.22,.7,.2,1); }
  .main-nav.open { transform: translateX(0); }
  .main-nav .nav-cta { color: var(--navy); background: var(--white); font-family: var(--sans); font-size: 0.95rem; }
  .menu-toggle[aria-expanded="true"] { color: var(--white); border-color: rgba(255,255,255,.3); }
  .hero { min-height: auto; background: linear-gradient(115deg, #fff 0%, #fff 58%, #f3f5f8 58%); }
  .hero-grid { grid-template-columns: 1fr 0.7fr; gap: 42px; min-height: 680px; }
  h1 { font-size: clamp(3.1rem, 7vw, 5.2rem); }
  .portrait-frame { height: 540px; }
  .orbit-note { right: -22px; width: 96px; height: 96px; }
  .intro-grid { grid-template-columns: 1fr; gap: 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .method-grid { gap: 60px; }
  .about-grid { gap: 70px; }
  .contact-panel { grid-template-columns: 0.33fr 1fr; }
  .contact-copy { padding: 58px 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 32px, 1180px); }
  .section-pad { padding: 78px 0; }
  .nav-wrap { min-height: 72px; }
  .brand-mark { width: 39px; height: 39px; }
  .main-nav { padding-inline: 28px; }
  .hero { padding-top: 72px; background: var(--white); }
  .hero-grid { display: flex; flex-direction: column; align-items: stretch; gap: 48px; padding-top: 72px; }
  .hero-copy { padding-bottom: 0; }
  h1 { font-size: clamp(3.05rem, 14vw, 4.6rem); }
  .hero-lead { font-size: 1.03rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 21px; }
  .button { width: 100%; }
  .hero-tags { margin-top: 32px; }
  .hero-visual { align-self: stretch; padding-top: 0; }
  .portrait-frame { height: min(132vw, 630px); }
  .orbit-note { top: -30px; right: -6px; }
  .hero-line { height: 7px; }
  .intro-copy h2, .section-heading h2, .method-content > h2, .about-copy h2, .contact-copy h2 { font-size: clamp(2.35rem, 10.5vw, 3.4rem); }
  .intro-copy > p { margin-left: 0; }
  .service-list { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(odd), .service-card:nth-child(even) { grid-template-columns: 31px 48px 1fr 19px; min-height: 0; padding: 31px 0; border-right: 0; }
  .service-card { gap: 12px; }
  .service-icon { width: 42px; height: 42px; }
  .method-grid { grid-template-columns: 1fr; gap: 72px; }
  .method-visual { position: relative; top: auto; margin-left: 20px; }
  .about-grid { display: flex; flex-direction: column; gap: 66px; }
  .about-copy { order: 1; }
  .about-photo { width: calc(100% - 20px); }
  .about-stamp { right: -20px; }
  .contact { padding-top: 16px; }
  .contact-panel { display: block; }
  .contact-logo { position: absolute; inset: 0; }
  .contact-copy { position: relative; padding: 58px 26px; }
  .contact-copy .button { width: fit-content; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-links { grid-column: auto; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 5px; }
}

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

/* Direção editorial refinada: fotografia inteira, sobreposição leve e movimento discreto. */
:root { --paper: #f6f7f8; --muted: #536174; --line: #e5e9ed; }
.site-header { position: sticky; border-bottom-color: var(--line); background: var(--white); }
.nav-wrap { min-height: 80px; }
.brand-mark { display: block; width: 44px; height: 44px; padding: 0; background: none; overflow: hidden; border: 1px solid var(--line); }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.main-nav { gap: clamp(16px,2vw,28px); }
.nav-social, .footer-social { display: flex; align-items: center; gap: 10px; }
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; text-decoration: none; transition: background .2s,color .2s; }
.social-icon:hover { color: var(--white); background: var(--orange); }
.social-icon svg, .contact-instagram svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.social-icon .ig-dot, .contact-instagram .ig-dot { fill: currentColor; stroke: none; }
.whatsapp-link svg { flex: 0 0 auto; width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.nav-cta { display: inline-flex; align-items: center; gap: 9px; border-radius: 3px; }

.hero { min-height: 0; padding-top: 0; background: linear-gradient(90deg,#fff 0 73%,#f6f7f8 73% 100%); }
.hero::before, .hero-line, .orbit-note, .hero-tags { display: none; }
.hero-grid { grid-template-columns: minmax(0,1.12fr) minmax(350px,.88fr); gap: 0; min-height: 0; padding-block: 46px 76px; }
.hero-copy { position: relative; z-index: 2; width: calc(100% + 65px); padding: 42px 44px 45px 0; background: var(--white); }
.eyebrow { display: block; }
.eyebrow span { display: none; }
h1 { max-width: 700px; font-family: var(--display); font-size: clamp(3.4rem,5.25vw,5.1rem); font-weight: 500; letter-spacing: -.068em; line-height: 1.1; }
h1 em { display: inline; font-family: var(--display); font-style: normal; font-weight: 500; letter-spacing: inherit; }
.hero-lead { font-size: 1.08rem; }
.hero-visual { align-self: center; width: 100%; padding: 20px 0 0 24px; }
.portrait-frame { height: auto; overflow: visible; box-shadow: none; background: none; }
.portrait-frame::after { display: none; }
.portrait-frame img { width: 100%; height: auto; aspect-ratio: 3/4; object-fit: contain; background: #141b24; }
.portrait-label { position: relative; z-index: 3; right: auto; bottom: auto; left: auto; display: flex; flex-direction: column; width: 100%; min-width: 0; padding: 13px 20px; }
.portrait-label small { margin-top: 3px; }

.intro-grid { grid-template-columns: 1fr 2.4fr; gap: 64px; }
.intro-copy h2, .section-heading h2, .method-content > h2, .about-copy h2, .contact-copy h2 { font-family: var(--display); font-size: clamp(2.6rem,4.4vw,4.25rem); font-weight: 500; letter-spacing: -.065em; line-height: 1.17; }
.intro-copy > p { margin-left: 0; }
.services { color: var(--ink); background: var(--paper); }
.services .section-heading > p { color: var(--muted); }
.service-list { gap: 18px; border-top: 0; }
.service-card, .service-card:nth-child(odd), .service-card:nth-child(even) { grid-template-columns: 42px 1fr; gap: 10px 19px; min-height: 240px; padding: 30px; background: var(--white); border: 1px solid var(--line); transition: transform .2s,box-shadow .2s; }
.service-card:hover { transform: translateY(-4px); background: var(--white); box-shadow: 0 16px 36px rgba(7,26,54,.06); }
.service-number { grid-column: 1/-1; }
.service-icon { align-self: start; width: 39px; height: 39px; color: var(--navy); background: #eaf0f5; border: 0; border-radius: 3px; }
.service-card h3 { font-size: 1.25rem; }
.service-card p { color: var(--muted); }
.service-arrow { display: none; }

.method { overflow: visible; background: var(--white); }
.method-grid { grid-template-columns: minmax(0,1fr) minmax(0,1.08fr); gap: 0; }
.method-visual { position: sticky; top: 104px; min-width: 0; padding: 30px 76px 30px 0; }
.method-visual::before { display: none; }
.method-visual img { width: 100%; height: auto; aspect-ratio: 1229/1536; object-fit: contain; box-shadow: none; transform: translate3d(0,var(--parallax-y,0px),0); will-change: transform; }
.method-content { position: relative; z-index: 2; min-height: 770px; margin: 110px 0 0 -60px; padding: 54px 0 48px 58px; background: var(--white); }

.about { overflow: clip; background: var(--paper); }
.about-grid { grid-template-columns: 1fr .78fr; gap: clamp(45px,7vw,110px); }
.about-photo { padding: 26px 0; }
.about-photo::after, .about-stamp { display: none; }
.about-photo img { width: 100%; height: auto; aspect-ratio: 3/4; object-fit: contain; background: #eef0f2; box-shadow: none; transform: translate3d(0,var(--parallax-y,0px),0); will-change: transform; }

.contact-panel { grid-template-columns: .36fr 1fr; min-height: 440px; }
.contact-panel::after, .contact-logo::after { display: none; }
.contact-logo { display: grid; place-items: center; padding: 25px; background: #102a4b; }
.contact-logo img { width: min(100%,255px); height: auto; aspect-ratio: 1; object-fit: contain; opacity: 1; mix-blend-mode: normal; transform: none; border-radius: 50%; }
.contact-copy { padding: 60px clamp(30px,5vw,75px); }
.contact-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.contact-instagram { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; text-decoration: none; }
.contact-instagram:hover { color: var(--orange); }
.footer-grid { grid-template-columns: .8fr 1fr 1.4fr; gap: 36px; }
.footer-links { justify-content: flex-end; flex-wrap: wrap; }
.footer-whatsapp { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 9px 14px; color: var(--white); background: var(--navy); border-radius: 3px; font-size: .82rem; text-decoration: none; }
.footer-whatsapp:hover { color: var(--white) !important; background: var(--orange); }

@media (max-width: 1050px) {
  .main-nav { position: fixed; inset: 0; z-index: 55; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 25px; padding: 90px 36px 36px; color: var(--navy); background: var(--white); font: 600 1.6rem var(--display); transform: translateX(100%); transition: transform .3s; }
  .main-nav.open { transform: translateX(0); }
  .menu-toggle { position: relative; z-index: 60; display: grid; place-content: center; gap: 7px; width: 46px; height: 46px; padding: 0; color: var(--navy); background: var(--white); border: 1px solid var(--line); border-radius: 3px; }
  .menu-toggle[aria-expanded="true"] { color: var(--navy); border-color: var(--line); }
  .menu-toggle span:not(.sr-only) { width: 20px; height: 2px; background: currentColor; }
  .nav-social { margin-top: 8px; }
  .nav-cta { font: 700 .95rem var(--sans); }
  .main-nav .nav-cta { color: var(--white); background: var(--navy); }
  .hero-grid { grid-template-columns: 1.05fr .82fr; }
  .method-visual { padding-right: 45px; }
  .method-content { margin-left: -35px; padding-left: 35px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1/-1; justify-content: flex-start; }
}
@media (max-width: 720px) {
  .nav-wrap { min-height: 68px; }
  .hero { padding-top: 0; background: var(--white); }
  .hero-grid { display: flex; flex-direction: column; gap: 0; min-height: 0; padding: 55px 0 64px; }
  .hero-copy { width: 100%; padding: 0 0 34px; }
  h1 { font-size: clamp(3rem,10vw,4.2rem); }
  .hero-visual { width: min(100%,490px); align-self: center; padding: 18px 0 18px 14px; background: var(--paper); }
  .intro-grid,.section-heading,.method-grid,.about-grid,.contact-panel,.footer-grid { grid-template-columns: 1fr; }
  .intro-grid,.section-heading { gap: 18px; }
  .intro-copy h2,.section-heading h2,.method-content > h2,.about-copy h2,.contact-copy h2 { font-size: clamp(2.35rem,8.9vw,3.2rem); }
  .service-list { grid-template-columns: 1fr; gap: 12px; }
  .service-card,.service-card:nth-child(odd),.service-card:nth-child(even) { min-height: 0; padding: 27px 23px; }
  .method { overflow: visible; }
  .method-visual { position: relative; top: auto; width: min(100%,520px); padding: 0; margin: 0; }
  .method-content { min-height: 0; margin: 28px 0 0; padding: 0; }
  .about-grid { gap: 42px; }
  .about-photo { width: min(100%,490px); margin-inline: auto; padding: 14px 0; }
  .contact-logo { display: none; }
  .contact-copy { padding: 42px 25px; }
  .contact-actions { align-items: stretch; flex-direction: column; gap: 17px; }
  .contact-actions .button { width: 100%; }
  .footer-grid { gap: 22px; }
  .footer-links { grid-column: auto; flex-wrap: wrap; }
  .footer-social { flex-basis: 100%; margin-top: 5px; }
}
@media (prefers-reduced-motion: reduce) {
  [data-parallax] img { transform: none !important; }
}

/* Contactos visíveis e menu móvel com contraste. */
.site-header { backdrop-filter: none; }
.nav-social .nav-cta { white-space: nowrap; }
.portrait-label { max-width: none; }
.portrait-label small { color: #eef3f7; letter-spacing: .025em; text-transform: none; font-size: .78rem; }
@media (max-width: 1050px) {
  .main-nav, .main-nav.open { min-height: 100dvh; color: var(--white); background: var(--navy); overflow-y: auto; }
  .main-nav > a { color: var(--white); }
  .main-nav > a:hover, .main-nav > a:focus-visible { color: #ffa254; }
  .main-nav .social-icon { color: var(--white); border-color: rgba(255,255,255,.52); }
  .main-nav .social-icon:hover { color: var(--navy); background: var(--white); }
  .main-nav .nav-cta { color: var(--navy); background: var(--white); }
  .main-nav .nav-cta:hover { color: var(--white); background: var(--orange); }
  .menu-toggle[aria-expanded="true"] { color: var(--white); background: var(--navy); border-color: rgba(255,255,255,.42); }
}
@media (min-width: 721px) and (max-width: 1050px) {
  .main-nav, .main-nav.open {
    inset: 0 0 0 auto;
    width: min(430px, 100vw);
    padding: 112px 42px 48px;
    box-shadow: -18px 0 45px rgba(7,26,54,.22);
  }
  .main-nav .nav-social { flex-wrap: wrap; }
}

/* Capa editorial com menção ao BNI junto da imagem. */
.method-visual { isolation: isolate; }
.bni-feature {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: -16px 0 0;
  padding: 21px 25px 23px;
  color: var(--ink);
  background: var(--white);
  border-left: 5px solid #d11f2b;
  box-shadow: 0 20px 45px rgba(7,26,54,.12);
}
.bni-heading { display: flex; align-items: baseline; gap: 11px; margin-bottom: 10px; color: #bb1b26; }
.bni-heading strong { font: 800 1.8rem/1 var(--display); letter-spacing: -.055em; }
.bni-heading span { font: 700 .7rem/1.3 var(--sans); letter-spacing: .035em; text-transform: uppercase; }
.bni-feature p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.bni-feature p strong { color: var(--ink); }
@media (max-width: 720px) {
  .bni-feature { width: calc(100% - 12px); margin: -12px 0 0 12px; padding: 18px 18px 20px; }
  .bni-heading { flex-wrap: wrap; gap: 5px 9px; }
  .bni-heading strong { font-size: 1.6rem; }
  .bni-heading span { font-size: .66rem; }
}

/* Mais cor e movimento nos serviços sem alterar o conteúdo. */
.service-card:nth-child(1) { --accent: #f47817; --tint: #fff0e3; }
.service-card:nth-child(2) { --accent: #2875bd; --tint: #e9f3fc; }
.service-card:nth-child(3) { --accent: #d78b21; --tint: #fff3df; }
.service-card:nth-child(4) { --accent: #1e568a; --tint: #e7f0f8; }
.service-card, .service-card:nth-child(odd), .service-card:nth-child(even) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  grid-template-columns: 52px minmax(0,1fr);
  min-height: 252px;
  padding: 31px;
  border-color: #e0e6ec;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
}
.service-card::before { content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; left: 0; width: 5px; background: var(--accent); transform: scaleY(.25); transform-origin: bottom; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.service-card::after { content: ""; position: absolute; z-index: 0; top: -85px; right: -105px; width: 245px; height: 245px; border-radius: 50%; background: radial-gradient(circle,var(--tint),transparent 70%); opacity: .6; transform: translate(20px,-20px); transition: opacity .4s,transform .4s; }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { transform: translateY(-7px); border-color: var(--accent); box-shadow: 0 22px 40px rgba(7,26,54,.11); }
.service-card:hover::before, .service-card.visible::before { transform: scaleY(1); }
.service-card:hover::after { opacity: 1; transform: translate(0,0); }
.service-card .service-number { color: var(--accent); font-size: .82rem; }
.service-card .service-icon { width: 48px; height: 48px; color: var(--accent); background: var(--tint); border: 1px solid transparent; border-radius: 12px; transition: transform .4s cubic-bezier(.2,.8,.2,1),background .4s; }
.service-card .service-icon svg { width: 26px; height: 26px; transition: transform .4s; }
.service-card:hover .service-icon { transform: translateY(-4px) rotate(-6deg); }
.service-card:hover .service-icon svg { transform: scale(1.12); }
.service-card.visible .service-icon { animation: service-arrive .75s cubic-bezier(.2,.8,.2,1) both; }
@keyframes service-arrive { from { transform: translateY(12px) scale(.9); opacity: .4; } to { transform: translateY(0) scale(1); opacity: 1; } }
@media (max-width: 720px) {
  .service-card, .service-card:nth-child(odd), .service-card:nth-child(even) { grid-template-columns: 50px minmax(0,1fr); min-height: 0; padding: 27px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .service-card, .service-card::before, .service-card::after, .service-card .service-icon, .service-card .service-icon svg { animation: none !important; transition: none !important; }
}
