:root {
  --ink: #092f3a;
  --ink-deep: #05252e;
  --ink-soft: #31545c;
  --turquoise: #20bcb5;
  --turquoise-bright: #45d4cb;
  --mist: #eaf7f6;
  --white: #ffffff;
  --paper: #f7faf9;
  --line: rgba(9, 47, 58, 0.14);
  --shadow: 0 24px 80px rgba(5, 37, 46, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sr-only, .skip-link {
  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:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(5, 37, 46, 0.96);
  box-shadow: 0 8px 32px rgba(0,0,0,.13);
  backdrop-filter: blur(14px);
}
.header-inner, .section, .footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { display: block; width: 72px; height: 72px; object-fit: contain; border-radius: 6px; }
section[id] { scroll-margin-top: 100px; }
.contact-channels { display: grid; gap: 18px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.contact-channel { min-width: 0; overflow-wrap: anywhere; }
.contact-channel small { display: block; color: var(--ink-soft); font-size: 14px; }
.contact-channel strong { font-size: 17px; }
.contact-channel:hover strong { text-decoration: underline; }
.contact-channels .button { text-align: center; padding: 12px 16px; }
:focus-visible { outline: 3px solid var(--turquoise); outline-offset: 5px; }
.brand-symbol {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -3px;
  color: var(--white);
}
.brand-symbol::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: -2px;
  width: 23px;
  height: 3px;
  border-radius: 99px;
  background: var(--turquoise-bright);
  transform: rotate(-8deg);
}
.brand-g { color: var(--turquoise-bright); }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font: 700 15px/1 "Manrope", sans-serif; letter-spacing: .12em; }
.brand-copy small { margin-top: 5px; font-size: 10px; font-weight: 600; letter-spacing: .16em; color: rgba(255,255,255,.7); }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 600; }
.main-nav > a:not(.nav-cta) { color: rgba(255,255,255,.82); transition: color .2s; }
.main-nav > a:not(.nav-cta):hover { color: var(--turquoise-bright); }
.nav-cta {
  padding: 11px 20px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  transition: background .2s, border-color .2s;
}
.nav-cta:hover { background: var(--turquoise); border-color: var(--turquoise); }
.menu-button { display: none; background: none; border: 0; padding: 8px; }
.menu-button span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px; background: var(--white); }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}
.hero-image, .hero-shade { position: absolute; inset: 0; }
.hero-image {
  background: url("./assets/hero-gfc.png") center center / cover no-repeat;
  transform: scale(1.01);
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(4,32,40,.97) 0%, rgba(5,37,46,.86) 38%, rgba(5,37,46,.28) 68%, rgba(5,37,46,.08) 100%),
    linear-gradient(0deg, rgba(4,32,40,.35), transparent 38%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 58px auto 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span { width: 30px; height: 2px; background: var(--turquoise-bright); }
.eyebrow-dark { color: var(--ink-soft); }
.hero h1, h2 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -.045em;
  line-height: 1.08;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 700;
}
.hero h1 em { color: var(--turquoise-bright); font-style: normal; }
.hero-text { max-width: 590px; margin: 28px 0 0; color: rgba(255,255,255,.78); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 700;
  transition: transform .2s, background .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; }
.button-primary { color: var(--ink-deep); background: var(--turquoise-bright); }
.button-primary:hover { background: #63e2d9; }
.button-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.34); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.hero-note {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 0;
  min-width: 250px;
  padding: 25px 30px;
  background: var(--turquoise);
  color: var(--ink-deep);
}
.hero-note strong, .hero-note span { display: block; }
.hero-note strong { font-family: "Manrope"; font-size: 17px; }
.hero-note span { font-size: 14px; opacity: .8; }

.section { padding-top: 112px; padding-bottom: 112px; }
.intro {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 240px;
  gap: 54px;
  align-items: start;
}
.section-tag {
  padding-top: 9px;
  color: var(--turquoise);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.intro h2, .section-heading h2, .difference h2, .contact h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
}
.intro-copy > p { max-width: 680px; margin: 28px 0 0; color: var(--ink-soft); font-size: 18px; }
.experience {
  padding: 20px 0 16px 28px;
  border-left: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 17px;
}
.experience-number {
  font: 700 72px/1 "Manrope", sans-serif;
  color: var(--turquoise);
  letter-spacing: -.08em;
}
.experience > span:last-child { line-height: 1.4; color: var(--ink-soft); }
.experience strong { display: block; color: var(--ink); }

.services {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - 1180px) / 2));
  padding-right: max(24px, calc((100% - 1180px) / 2));
  background: var(--paper);
}
.section-heading {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}
.section-heading > div { max-width: 700px; }
.section-heading > p { margin: 0 0 6px; color: var(--ink-soft); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card {
  position: relative;
  min-height: 300px;
  padding: 34px 34px 40px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover { z-index: 2; transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card-featured { color: var(--white); background: var(--ink); }
.service-number { color: var(--turquoise); font-size: 13px; font-weight: 800; letter-spacing: .16em; }
.service-card h3 { margin: 54px 0 16px; font: 700 22px/1.25 "Manrope", sans-serif; }
.service-card p { margin: 0; color: var(--ink-soft); line-height: 1.6; }
.service-card-featured p { color: rgba(255,255,255,.7); }
.service-line { position: absolute; left: 34px; bottom: 24px; width: 36px; height: 3px; background: var(--turquoise); transition: width .25s; }
.service-card:hover .service-line { width: 72px; }

.difference { width: min(1280px, calc(100% - 32px)); }
.difference-panel {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  padding: 88px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0, rgba(32,188,181,.16), transparent 38%),
    var(--ink-deep);
  border-radius: 24px;
  overflow: hidden;
}
.difference-panel::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -220px;
  bottom: -220px;
  border: 58px solid rgba(69,212,203,.11);
  border-radius: 50%;
}
.difference-copy > p:last-child { margin: 26px 0 0; color: rgba(255,255,255,.68); font-size: 17px; }
.difference-list { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,.16); }
.difference-item { display: grid; grid-template-columns: 44px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.difference-item > span { color: var(--turquoise-bright); font-size: 13px; font-weight: 800; }
.difference-item h3 { margin: 0 0 5px; font: 700 19px "Manrope", sans-serif; }
.difference-item p { margin: 0; color: rgba(255,255,255,.65); }

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.contact-copy > p:last-child { margin: 26px 0 0; color: var(--ink-soft); font-size: 18px; }
.contact-card { padding: 44px; background: var(--mist); border-radius: 18px; }
.contact-detail { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid rgba(9,47,58,.12); }
.contact-detail:first-child { padding-top: 0; }
.contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--turquoise);
  background: var(--white);
  border-radius: 50%;
}
.contact-icon svg { width: 22px; }
.contact-detail small { display: block; margin-bottom: 4px; color: var(--ink-soft); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-detail strong { display: block; font: 700 18px "Manrope", sans-serif; }
.contact-detail p { margin: 3px 0 0; color: var(--ink-soft); }
.map-link { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; font-weight: 800; color: var(--ink); }
.map-link svg { width: 21px; transition: transform .2s; }
.map-link:hover svg { transform: translate(3px, -3px); }

footer { color: rgba(255,255,255,.7); background: var(--ink-deep); }
.footer-inner {
  min-height: 180px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.brand-footer { color: var(--white); }
.footer-inner > p { margin: 0; text-align: center; }
.footer-inner > small { text-align: right; font-size: 12px; }

@media (max-width: 920px) {
  .menu-button { display: block; }
  .main-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 78px;
    display: none;
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: var(--ink-deep);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 9px 12px; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .hero { min-height: 720px; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,32,40,.97), rgba(5,37,46,.74)); }
  .hero-content { margin-top: 40px; }
  .intro { grid-template-columns: 1fr; gap: 24px; }
  .experience { max-width: 320px; padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .section-heading, .difference-panel, .contact { grid-template-columns: 1fr; gap: 40px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .difference-panel { padding: 60px; }
  .footer-inner { grid-template-columns: 1fr; padding-top: 42px; padding-bottom: 42px; text-align: center; gap: 22px; }
  .brand-footer { justify-self: center; }
  .footer-inner > small { text-align: center; }
}

@media (max-width: 620px) {
  .header-inner, .section, .footer-inner, .hero-content { width: min(100% - 32px, 1180px); }
  .header-inner { min-height: 74px; }
  .brand-logo { width: 62px; height: 62px; }
  .brand-copy { display: none; }
  .main-nav { left: 16px; right: 16px; top: 68px; }
  .hero { min-height: 700px; align-items: end; padding-bottom: 104px; }
  .hero-image { background-position: 61% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,32,40,.96), rgba(5,37,46,.72)), linear-gradient(0deg, rgba(4,32,40,.7), transparent); }
  .hero-content { margin-bottom: 30px; }
  .hero h1 { font-size: clamp(40px, 12vw, 56px); }
  .hero-text { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-note { left: 16px; right: 16px; min-width: 0; padding: 18px 22px; }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .intro h2, .section-heading h2, .difference h2, .contact h2 { font-size: 36px; }
  .services { padding-left: 16px; padding-right: 16px; }
  .section-heading { margin-bottom: 38px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }
  .difference { width: calc(100% - 24px); }
  .difference-panel { padding: 40px 24px; border-radius: 16px; }
  .contact-card { padding: 30px 22px; }
  .contact-detail { grid-template-columns: 42px 1fr; gap: 14px; }
  .contact-icon { width: 42px; height: 42px; }
}

.site-header, .site-header.scrolled { background: #fff; color: var(--ink); box-shadow: 0 2px 20px rgba(5,37,46,.08); }
.brand { gap: 12px; }
.brand-mark { position: relative; display: block; flex: 0 0 70px; width: 70px; height: 74px; overflow: hidden; background: #fff; }
.brand-mark img { position: absolute; max-width: none; width: 150px; height: 150px; left: -39px; top: -19px; mix-blend-mode: multiply; }
.brand-copy { display: flex; color: var(--ink); }
.brand-copy strong { font-size: 30px; letter-spacing: .1em; }
.brand-copy small { color: var(--ink-soft); font-size: 12px; letter-spacing: .09em; line-height: 1.35; }
.main-nav > a:not(.nav-cta) { color: var(--ink); }
.nav-cta { background: var(--ink); color: white; border-color: var(--ink); }
.menu-button span:not(.sr-only) { background: var(--ink); }
.main-nav { background: white; }
.hero { min-height: 790px; padding-top: 90px; }
.hero-image { left: 56%; background-image: url("./assets/sala-atendimento.jpeg"); background-position: center; transform: none; }
.hero-shade { background: linear-gradient(90deg, var(--ink-deep) 49%, rgba(5,37,46,.08) 68%, transparent); }
.hero-content { margin-top: 0; }
.hero h1 { max-width: 55%; font-size: clamp(44px,4.8vw,66px); line-height: 1.12; }
.hero-text { max-width: 49%; font-size: 18px; }
.hero-actions { max-width: 52%; }
.hero-note { min-width: 0; padding: 20px 26px; }
.experience { flex-direction: column; align-items: flex-start; gap: 14px; }
.experience-number { font-size: 50px; letter-spacing: -.05em; }
.office { padding-top: 0; }
.office-gallery { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.office-gallery figure { margin: 0; min-width: 0; }
.office-gallery img { display: block; width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; border-radius: 12px; }
.office-gallery figcaption { padding-top: 16px; font-size: 15px; color: var(--ink-soft); }
.brand-footer { background: white; padding: 6px 14px 6px 6px; border-radius: 8px; }
.footer-inner { padding-bottom: 100px; padding-top: 40px; }
.whatsapp-fixed { position: fixed; z-index: 45; bottom: max(20px,env(safe-area-inset-bottom)); right: 20px; display: flex; align-items: center; gap: 10px; background: var(--turquoise-bright); color: var(--ink-deep); padding: 15px 22px; border-radius: 999px; font-size: 16px; font-weight: 700; box-shadow: 0 6px 24px rgba(0,0,0,.2); }
.whatsapp-fixed svg { width: 25px; height: 25px; }
.whatsapp-fixed:hover { background: #79e9e0; }
@media (max-width: 920px) {
  .hero h1 { max-width: 62%; font-size: 48px; }
  .hero-text, .hero-actions { max-width: 57%; }
  .hero-image { left: 48%; }
  .hero-shade { background: linear-gradient(90deg,var(--ink-deep) 37%,rgba(5,37,46,.45) 67%,rgba(5,37,46,.12)); }
  .office-gallery { gap: 16px; }
}
@media (max-width: 620px) {
  .brand-copy strong { font-size: 25px; }
  .brand-copy small { font-size: 12px; }
  .brand-mark { flex-basis: 60px; width: 60px; height: 65px; }
  .brand-mark img { width: 132px; height: 132px; left: -35px; top: -17px; }
  .hero { display: flex; flex-direction: column; align-items: stretch; min-height: 0; padding: 110px 0 0; }
  .hero-content { margin: 0 auto; }
  .hero h1 { max-width: none; font-size: clamp(38px,10vw,52px); }
  .hero-text, .hero-actions { max-width: none; }
  .hero-actions { margin-bottom: 36px; }
  .hero-shade { display: none; }
  .hero-image { position: relative; inset: auto; order: 2; width: calc(100% - 32px); margin: 0 16px; aspect-ratio: 3/4; background-size: cover; border-radius: 12px 12px 0 0; }
  .hero-note { position: relative; order: 3; left: auto; right: auto; margin: 0 16px; }
  .office-gallery { grid-template-columns: 1fr; gap: 32px; }
  .office { padding-top: 0; }
  .whatsapp-fixed { right: 14px; padding: 13px 18px; font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Institutional refresh — September 2026 */
:root { --ink: #102b40; --ink-deep: #0b1c2d; --ink-soft: #445d70; --turquoise: #007f8b; --turquoise-bright: #43d6dc; --paper: #f3f8fa; }
.hero { min-height: 720px; }
.hero-image { left: 55%; }
.hero-shade { background: linear-gradient(90deg,var(--ink-deep) 45%,rgba(11,28,45,.72) 57%,rgba(11,28,45,.05) 78%); }
.hero h1 { font-size: clamp(42px,4.5vw,64px); max-width: 57%; }
.hero-text { color: #dfebef; }
.hero-note { background: #43d6dc; border-radius: 16px 0 0 0; }
.nav-cta { border-radius: 8px; }
.intro { grid-template-columns: 90px minmax(0,1fr) 220px; gap: 40px; }
.experience { padding: 26px; border: 0; border-radius: 16px; background: var(--paper); }
.experience-number { font-size: 44px; letter-spacing: -.045em; }
.service-grid { gap: 20px; border: 0; }
.service-card { border: 1px solid var(--line); border-radius: 14px; padding: 30px; display:flex; flex-direction:column; }
.service-card h3 { margin-top: 26px; }
.service-card p { margin-bottom: 26px; }
.service-action { display:flex; justify-content:space-between; gap:14px; padding-top:18px; margin-top:auto; border-top:1px solid var(--line); font-weight:700; font-size:14px; }
.service-card-featured .service-action { border-color:rgba(255,255,255,.25); color:var(--turquoise-bright); }
.service-card-featured p { color:#dce8ee; }
.difference-panel { border-radius:18px; padding:64px; gap:64px; }
.difference-copy > p:last-child, .difference-item p { color:#d1dfe7; }
.office-gallery img { aspect-ratio:4/5; }
.contact { padding-top:0; }
.footer-location { width:min(1180px,calc(100% - 48px)); margin:auto; display:grid; grid-template-columns:.85fr 1.3fr; gap:40px 70px; padding:70px 0 42px; }
.footer-address h2 { color:white; margin:0; font-size:clamp(30px,3vw,42px); }
.footer-address p { color:#d1dfe7; }
.footer-map { min-width:0; align-self:center; }
.footer-map iframe { display:block; width:100%; height:300px; border:0; border-radius:18px; background:#eaf0f3; }
.footer-map > a { display:inline-block; margin-top:14px; color:#fff; text-decoration:underline; text-underline-offset:4px; font-size:14px; }
.footer-social { grid-column:1/-1; display:flex; flex-wrap:wrap; align-items:center; gap:18px 36px; font-size:14px; }
.footer-social strong { color:var(--turquoise-bright); }
.footer-social a { color:#fff; }
.footer-inner { border-top:1px solid rgba(255,255,255,.16); }
.contact-detail small { font-size:14px; }
@media(max-width:920px) {
 .intro { grid-template-columns:1fr; gap:24px; }
 .experience { width:fit-content; max-width:100%; }
 .hero h1 { max-width:62%; font-size:48px; }
 .difference-panel { padding:44px; gap:36px; }
 .footer-location { gap:32px; }
}
@media(max-width:620px) {
 .hero { min-height:0; }
 .hero h1 { max-width:none; font-size:clamp(38px,10vw,52px); }
 .hero-image { left:auto; }
 .hero-note { border-radius:0 0 12px 12px; }
 .service-card { padding:26px; }
 .difference-panel { padding:36px 24px; }
 .footer-location { width:calc(100% - 32px); grid-template-columns:1fr; padding-top:48px; }
 .footer-map iframe { height:260px; }
 .footer-social { align-items:flex-start; flex-direction:column; }
 .contact { padding-top:0; }
}
