:root {
  --navy: #0a1828;
  --navy-soft: #10243a;
  --teal: #178582;
  --gold: #bfa181;
  --paper: #f7f3ec;
  --paper-2: #eee7dc;
  --ink: #182231;
  --muted: #66717d;
  --line: rgba(191, 161, 129, 0.34);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(10, 24, 40, 0.18);
  --shadow-hover: 0 28px 90px rgba(10, 24, 40, 0.24);
  --radius: 26px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.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;
}

.site-header {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 72px;
  padding: 10px 14px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  background: rgba(247, 243, 236, 0.9);
  box-shadow: 0 20px 70px rgba(7, 17, 31, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--navy);
}

.brand-logo {
  width: auto;
  height: 64px;
  max-width: min(280px, 42vw);
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: rgba(10, 24, 40, 0.78);
  font-size: 0.92rem;
}

.main-nav a,
.footer-links a {
  position: relative;
  transition: color 0.24s var(--ease);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.34s var(--ease);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.header-cta {
  padding: 12px 18px;
  border: 1px solid rgba(191, 161, 129, 0.55);
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(191, 161, 129, 0.28);
  transition: background 0.24s var(--ease), color 0.24s var(--ease), transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.header-cta:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 15px 36px rgba(23, 133, 130, 0.28);
}

.section {
  padding: 104px 0;
}

.section-dark {
  background:
    radial-gradient(circle at 20% 10%, rgba(23, 133, 130, 0.22), transparent 32%),
    linear-gradient(135deg, var(--navy), #07111f 72%);
  color: var(--white);
}

.section-muted {
  background: var(--paper-2);
}

.hero {
  position: relative;
  min-height: clamp(760px, 100vh, 860px);
  display: grid;
  align-items: center;
  padding: 158px 0 96px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 34%;
  background: linear-gradient(180deg, rgba(10, 24, 40, 0), rgba(10, 24, 40, 0.82));
  pointer-events: none;
}

.hero > .container {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding-inline: clamp(24px, 5vw, 60px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 130%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.92) contrast(1.02) brightness(0.9);
  transform: scale(1.025);
  transform-origin: center center;
}

.motion-ready .hero-bg {
  animation: heroImageSettle 1.35s var(--ease) both;
}

@keyframes heroImageSettle {
  from {
    transform: scale(1.055);
  }

  to {
    transform: scale(1.025);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(10, 24, 40, 0.92) 0%,
      rgba(10, 24, 40, 0.78) 34%,
      rgba(23, 133, 130, 0.35) 62%,
      rgba(10, 24, 40, 0.08) 100%
    ),
    radial-gradient(circle at 78% 48%, rgba(10, 24, 40, 0), rgba(10, 24, 40, 0.22) 36%, rgba(10, 24, 40, 0.54) 100%);
}

.hero-grid,
.split-grid,
.team-photo-grid,
.reviews-grid,
.final-cta-grid,
.footer-grid {
  display: grid;
  gap: 54px;
}

.hero-grid {
  position: relative;
  z-index: 4;
  grid-template-columns: minmax(0, 820px) 1fr;
  align-items: center;
  min-height: 520px;
}

.hero-proof-wrap {
  position: relative;
  z-index: 4;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.light .eyebrow,
.hero .eyebrow {
  color: var(--gold);
}

.hero .eyebrow {
  font-size: calc(0.78rem + 5px);
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.8vw, 5.25rem);
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--gold);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 4vw, 3.55rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.hero-lead {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.32rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.035em;
}

.hero-actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.28s var(--ease), background 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease), color 0.28s var(--ease);
}

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

.button-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(23, 133, 130, 0.26);
}

.button-primary:hover {
  background: #126d6b;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(23, 133, 130, 0.32);
}

.hero .button-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 16px 38px rgba(191, 161, 129, 0.28);
}

.hero .button-primary:hover {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(23, 133, 130, 0.32);
}

.button-secondary {
  border: 1px solid rgba(191, 161, 129, 0.55);
  color: var(--gold);
}

.button-secondary:hover {
  border-color: rgba(191, 161, 129, 0.9);
  background: rgba(191, 161, 129, 0.08);
}

.hero-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: 12px;
  max-width: 610px;
  margin-top: 38px;
}

.hero-proof div,
.note-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 18px;
}

.hero-proof div {
  display: grid;
  gap: 10px;
  align-content: start;
  border-color: rgba(191, 161, 129, 0.36);
  background: rgba(10, 24, 40, 0.36);
  backdrop-filter: blur(12px);
}

.hero-proof-card-cna {
  display: grid;
  gap: 12px;
  align-content: start;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--gold);
  font-size: 1.05rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.hero-cna-trigger,
.hero-proof-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(191, 161, 129, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), background 0.24s var(--ease), color 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.hero-cna-trigger:hover,
.hero-proof-link:hover {
  transform: translateY(-2px);
  border-color: rgba(191, 161, 129, 0.9);
  background: rgba(191, 161, 129, 0.16);
  box-shadow: 0 12px 28px rgba(10, 24, 40, 0.18);
}

.hero-cna-trigger img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
}

.hero-cna-trigger span {
  color: inherit;
  font-size: inherit;
}

.cna-modal-open {
  overflow: hidden;
}

.cna-modal[hidden],
.cna-modal__panel[hidden] {
  display: none;
}

.cna-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 28px;
}

.cna-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 40, 0.72);
  backdrop-filter: blur(5px);
}

.cna-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1340px, 100%);
  max-height: min(92vh, 980px);
  overflow: auto;
  padding: 36px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(10, 24, 40, 0.32);
}

.cna-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #1b2430;
  color: var(--white);
  cursor: pointer;
}

.cna-modal__close svg {
  width: 24px;
  height: 24px;
}

.cna-modal__tabs {
  display: flex;
  gap: 14px;
  padding-right: 72px;
  border-bottom: 1px solid #dfe6ef;
}

.cna-modal__tab {
  position: relative;
  padding: 0 14px 18px;
  border: 0;
  background: transparent;
  color: #99a6ba;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
}

.cna-modal__tab.is-active {
  color: #2452d0;
}

.cna-modal__tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  border-radius: 999px;
  background: #2452d0;
}

.cna-modal__panel {
  padding: 34px 14px 8px;
}

.cna-modal__ficha-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 40px;
  align-items: start;
}

.cna-modal__title {
  margin-bottom: 42px;
  color: #2a4eb8;
  font-family: inherit;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.cna-modal__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.cna-modal__stats--single {
  grid-template-columns: minmax(0, 260px);
  margin-top: 32px;
}

.cna-modal__label,
.cna-modal__value {
  display: block;
}

.cna-modal__label {
  margin-bottom: 2px;
  color: #465a77;
  font-size: 1rem;
  font-weight: 800;
}

.cna-modal__value {
  color: #617694;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  line-height: 1.2;
}

.cna-modal__aside {
  display: grid;
  gap: 22px;
  justify-items: end;
}

.cna-modal__flag {
  position: relative;
  width: 170px;
  aspect-ratio: 1.45;
  overflow: hidden;
  border: 1px solid #d9e1ec;
  box-shadow: 0 10px 24px rgba(10, 24, 40, 0.12);
  background: repeating-linear-gradient(to bottom, #1a1a1a 0 12%, #ffffff 12% 24%);
}

.cna-modal__flag-canton {
  position: absolute;
  inset: 0 auto auto 0;
  width: 38%;
  height: 40%;
  background: #da1515;
}

.cna-modal__flag-sphere {
  position: absolute;
  top: 13%;
  left: 10%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #7aa5ff 0 26%, #1d4eb8 27% 100%);
  border: 3px solid #ffffff;
}

.cna-modal__flag-sphere::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 16px;
  height: 4px;
  border-radius: 999px;
  background: #ffffff;
  transform: rotate(-12deg);
}

.cna-modal__flag-star {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ffd42a;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.cna-modal__flag-star--1 {
  top: 9%;
  left: 2%;
}

.cna-modal__flag-star--2 {
  top: 9%;
  left: 30%;
}

.cna-modal__flag-star--3 {
  top: 27%;
  left: 2%;
}

.cna-modal__flag-star--4 {
  top: 27%;
  left: 30%;
}

.cna-modal__photo {
  width: 170px;
  margin: 0;
  border: 1px solid #d9e1ec;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(10, 24, 40, 0.1);
}

.cna-modal__photo img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.cna-modal__status {
  min-width: 100%;
  padding: 18px 20px;
  border: 3px dashed #1ea74a;
  border-radius: 14px;
  background: #ffffff;
  color: #1ea74a;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(10, 24, 40, 0.08);
}

.cna-modal__sociedade-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px 32px;
  border: 1px solid #d8e0eb;
  border-radius: 24px;
  background: #eff4fb;
  box-shadow: 0 8px 22px rgba(10, 24, 40, 0.06);
}

.cna-modal__sociedade-index {
  color: #2d55d1;
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
}

.cna-modal__sociedade-content {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 42px;
  color: #35517c;
  font-size: 1rem;
}

.cna-modal__sociedade-content p {
  margin: 0;
}

.cna-modal__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}

.cna-modal__official-link,
.cna-modal__copy,
.cna-modal__footer-close {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 14px;
  font: inherit;
  font-weight: 800;
}

.cna-modal__official-link {
  border: 1px solid #1b4db9;
  background: #1b4db9;
  color: #ffffff;
}

.cna-modal__copy,
.cna-modal__footer-close {
  border: 1px solid #1b4db9;
  background: #ffffff;
  color: #1b4db9;
  cursor: pointer;
}

.cna-modal__copy.is-copied {
  border-color: #1ea74a;
  color: #1ea74a;
}

.cna-modal__official-link:hover,
.cna-modal__copy:hover,
.cna-modal__footer-close:hover {
  transform: translateY(-2px);
}

@media (max-width: 960px) {
  .cna-modal {
    padding: 16px;
  }

  .cna-modal__dialog {
    padding: 28px 20px 24px;
  }

  .cna-modal__ficha-layout {
    grid-template-columns: 1fr;
  }

  .cna-modal__aside {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: stretch;
    align-items: start;
  }

  .cna-modal__flag,
  .cna-modal__photo {
    width: 100%;
    max-width: 190px;
  }

  .cna-modal__status {
    min-width: 0;
    align-self: center;
  }
}

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(191, 161, 129, 0.38);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(191, 161, 129, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(7, 17, 31, 0.62);
  box-shadow: var(--shadow);
  padding: clamp(10px, 1.4vw, 18px);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: clamp(10px, 1.4vw, 18px);
  border-radius: 24px;
  background: linear-gradient(180deg, transparent 58%, rgba(10, 24, 40, 0.72));
  pointer-events: none;
}

.hero-media img {
  aspect-ratio: 16 / 11;
  object-fit: contain;
  border-radius: 24px;
  background: #07111f;
}

.hero-media figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 3px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
}

.hero-media figcaption strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 500;
}

.hero-media figcaption span {
  color: rgba(255, 255, 255, 0.76);
}

.trust-bar {
  margin-top: -1px;
  background: var(--navy);
  color: var(--white);
  border-top: 1px solid rgba(191, 161, 129, 0.24);
  border-bottom: 1px solid rgba(191, 161, 129, 0.24);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid article {
  padding: 34px 28px;
  border-right: 1px solid rgba(191, 161, 129, 0.22);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.trust-grid h2 {
  margin-bottom: 8px;
  font-size: 1.42rem;
  letter-spacing: -0.02em;
}

.trust-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.split-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.section-heading p,
.rich-text p,
.team-photo-grid p,
.reviews-copy p,
.final-cta p,
.site-footer p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark p,
.final-cta p,
.light p {
  color: rgba(255, 255, 255, 0.76);
}

.rich-text p {
  margin-bottom: 18px;
}

.note-card {
  margin-top: 32px;
  border-color: #ead27a;
  background: #fff4bf;
  box-shadow: 0 18px 55px rgba(139, 97, 0, 0.12);
}

.note-card .note-card-alert {
  margin-bottom: 10px;
  color: #6b1111;
  font-size: 1.18rem;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.note-card h3 {
  color: #6b1111;
}

.note-card p:not(.note-card-alert) {
  color: #6b1111;
  font-weight: 700;
}

.team-photo-grid {
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
}

.team-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.team-photo img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.center {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  justify-content: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.person-card {
  overflow: hidden;
  border: 1px solid rgba(10, 24, 40, 0.08);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(10, 24, 40, 0.08);
  transition: transform 0.34s var(--ease), box-shadow 0.34s var(--ease), border-color 0.34s var(--ease);
}

.person-card:hover,
.area-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(191, 161, 129, 0.64);
}

.person-featured {
  border-color: rgba(191, 161, 129, 0.7);
}

.person-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.person-content {
  padding: 24px;
}

.role {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.person-content h3 {
  font-size: 1.35rem;
}

.person-content p:not(.role) {
  color: var(--muted);
  font-size: 0.96rem;
}

.person-content a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--navy);
  font-weight: 800;
}

.text-link,
.area-card__link,
.artigo-card__link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(191, 161, 129, 0.65);
  text-underline-offset: 0.16em;
}

.text-link:hover,
.area-card__link:hover,
.artigo-card__link:hover {
  text-decoration-color: currentColor;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.area-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(191, 161, 129, 0.34);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 0.34s var(--ease), box-shadow 0.34s var(--ease), border-color 0.34s var(--ease), background 0.34s var(--ease);
}

.area-card:hover {
  background: rgba(255, 255, 255, 0.078);
}

.area-card h3 {
  color: var(--gold);
}

.area-card__link {
  color: var(--gold);
}

.area-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.principais-areas {
  background: var(--paper-2);
}

.principais-areas .section-heading h2 {
  max-width: 820px;
  margin-inline: auto;
}

.artigos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 52px;
}

.artigo-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: start;
  gap: 36px;
  padding: 28px;
  border: 1px solid rgba(10, 24, 40, 0.08);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(10, 24, 40, 0.08);
  transition: transform 0.34s var(--ease), box-shadow 0.34s var(--ease), border-color 0.34s var(--ease);
}

.artigo-intro,
.artigo-copy {
  min-width: 0;
}

.artigo-intro {
  display: grid;
  gap: 22px;
  align-content: start;
}

.artigo-copy {
  align-self: start;
}

.artigo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(191, 161, 129, 0.46);
}

.artigo-imagem {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
}

.artigo-imagem img {
  aspect-ratio: 16 / 10;
  max-height: 240px;
  object-fit: cover;
}

.artigo-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(10, 24, 40, 0.08);
  color: var(--muted);
  font-size: 0.85rem;
}

.artigo-meta time {
  color: var(--teal);
  font-weight: 700;
  white-space: nowrap;
}

.artigo-meta time::after {
  content: "•";
  margin-left: 12px;
}

.artigo-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.3;
}

.artigo-conteudo {
  max-height: none;
  overflow: visible;
  padding-right: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.artigo-conteudo::-webkit-scrollbar {
  width: 0;
}

.artigo-conteudo::-webkit-scrollbar-track {
  background: transparent;
}

.artigo-conteudo::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 999px;
}

.artigo-conteudo p {
  margin: 0 0 12px;
}

.artigo-conteudo p:last-child {
  margin-bottom: 0;
}

.artigo-detalhes {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  overflow: hidden;
}

.artigo-detalhes > summary {
  padding: 16px 24px;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.artigo-detalhes > summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.artigo-detalhes[open] > summary::before {
  content: "−";
}

.artigo-detalhes > summary::-webkit-details-marker {
  display: none;
}

.faq-list {
  padding: 0 24px 24px;
  display: grid;
  gap: 8px;
}

.faq-item {
  border: 1px solid rgba(10, 24, 40, 0.06);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
}

.faq-item > summary {
  padding: 14px 20px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
}

.faq-item > summary::-webkit-details-marker {
  display: none;
}

.faq-item > summary::after {
  content: "+";
  float: right;
  color: var(--teal);
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.24s var(--ease);
}

.faq-item[open] > summary::after {
  content: "−";
}

.faq-item[open] > summary {
  border-bottom: 1px solid rgba(10, 24, 40, 0.06);
}

.faq-item > p {
  padding: 16px 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

@media (max-width: 1060px) {
  .artigo-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .artigo-imagem img {
    aspect-ratio: 16 / 9;
    max-height: 300px;
  }
}

.reviews-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
}

.reviews-card {
  padding: clamp(32px, 6vw, 58px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 15%, rgba(23, 133, 130, 0.28), transparent 32%),
    var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.reviews-score {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px;
}

.reviews-card strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.5rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.reviews-stars {
  padding-bottom: 14px;
  color: var(--gold);
  font-size: clamp(1.35rem, 2.8vw, 1.95rem);
  letter-spacing: 0.18em;
  line-height: 1;
}

.reviews-subtitle {
  display: block;
  margin-top: 14px;
  font-size: 1.28rem;
  font-weight: 800;
}

.reviews-card p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.reviews-note {
  margin-top: 26px;
  background: var(--white);
  border: 1px solid rgba(10, 24, 40, 0.08);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 16px 45px rgba(10, 24, 40, 0.07);
}

.reviews-note h3 {
  color: var(--navy);
}

.reviews-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--gold);
  font-weight: 800;
  transition: color 0.24s var(--ease), transform 0.24s var(--ease);
}

.reviews-link:hover {
  color: var(--white);
  transform: translateX(4px);
}

.google-reviews-shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.google-reviews-shell:empty {
  display: none;
}

.review-card {
  display: grid;
  gap: 18px;
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(10, 24, 40, 0.08);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(10, 24, 40, 0.08);
  transition: transform 0.34s var(--ease), box-shadow 0.34s var(--ease), border-color 0.34s var(--ease);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.45;
}

.review-card a {
  color: var(--teal);
  font-weight: 800;
  transition: color 0.24s var(--ease), transform 0.24s var(--ease);
}

.review-card a:hover {
  color: var(--navy);
  transform: translateX(4px);
}

.review-card footer {
  display: grid;
  gap: 3px;
  align-self: end;
}

.review-card strong {
  color: var(--navy);
}

.review-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.reviews-fallback {
  margin-top: 34px;
}

.reviews-fallback p {
  margin: 0;
  padding: 22px 24px;
  border: 1px solid rgba(191, 161, 129, 0.34);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
}

.has-google-reviews .reviews-fallback {
  display: none;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 50%;
  background: rgba(191, 161, 129, 0.2);
  box-shadow: 0 22px 54px rgba(7, 17, 31, 0.26);
  backdrop-filter: blur(8px);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), background 0.24s var(--ease);
}

.whatsapp-float:hover {
  background: rgba(191, 161, 129, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 28px 64px rgba(7, 17, 31, 0.34);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(191, 161, 129, 0.3);
}

.whatsapp-float__icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8ab87 0%, #b18f6d 100%);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(191, 161, 129, 0.38);
}

.whatsapp-float__icon svg {
  width: 28px;
  height: 28px;
}

.motion-ready [data-reveal],
.motion-ready [data-reveal-group] > * {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready [data-reveal].is-visible,
.motion-ready [data-reveal-group].is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready [data-reveal-group] > *:nth-child(2) {
  --reveal-delay: 70ms;
}

.motion-ready [data-reveal-group] > *:nth-child(3) {
  --reveal-delay: 140ms;
}

.motion-ready [data-reveal-group] > *:nth-child(4) {
  --reveal-delay: 210ms;
}

.motion-ready [data-reveal-group] > *:nth-child(5) {
  --reveal-delay: 280ms;
}

.motion-ready [data-reveal-group] > *:nth-child(6) {
  --reveal-delay: 350ms;
}

.localizacao {
  background: var(--white);
}

.localizacao-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.localizacao-mapa {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.localizacao-mapa iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  aspect-ratio: 4 / 3;
  border: 0;
  object-fit: cover;
}

.localizacao-card {
  padding: 40px;
  border: 1px solid rgba(10, 24, 40, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(10, 24, 40, 0.08);
}

.localizacao-card h2 {
  color: var(--navy);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-bottom: 18px;
}

.localizacao-card address {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
  font-style: normal;
  color: var(--muted);
  font-size: 1.05rem;
}

.localizacao-card address a {
  color: var(--teal);
  font-weight: 700;
  transition: color 0.24s var(--ease);
}

.localizacao-card address a:hover {
  color: var(--navy);
}

.localizacao-card .button {
  width: 100%;
}

@media (max-width: 1060px) {
  .localizacao-grid {
    grid-template-columns: 1fr;
  }

  .localizacao-mapa iframe {
    aspect-ratio: 16 / 9;
    min-height: 320px;
  }
}

.final-cta-grid {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.final-cta .button {
  white-space: nowrap;
}

.site-footer {
  padding: 70px 0 30px;
  background: #07111f;
  color: var(--white);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.95fr) minmax(0, 0.8fr);
  align-items: start;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 1.8rem;
}

.site-footer h6,
.footer-heading {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p,
.site-footer span,
.site-footer a,
.site-footer small {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand-block,
.footer-stack,
.footer-links {
  display: grid;
  gap: 10px;
}

.footer-brand-block {
  gap: 16px;
}

.footer-logo-link {
  display: inline-flex;
  width: fit-content;
}

.footer-logo {
  width: auto;
  height: 118px;
  max-width: min(100%, 190px);
  object-fit: contain;
}

.footer-brand-title {
  margin: 0;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(191, 161, 129, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  transition: transform 0.24s var(--ease), color 0.24s var(--ease), border-color 0.24s var(--ease), background 0.24s var(--ease);
}

.social-link:hover {
  transform: translateY(-2px);
  color: var(--gold);
  border-color: rgba(191, 161, 129, 0.72);
  background: rgba(191, 161, 129, 0.12);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-stack {
  align-content: start;
}

.footer-stack h6:not(:first-child),
.footer-stack .footer-heading:not(:first-child) {
  margin-top: 16px;
}

.footer-stack p {
  margin: 0;
}

.footer-links {
  align-content: start;
}

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

.footer-credit:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(191, 161, 129, 0.22);
}

.site-header--solid {
  position: sticky;
  top: 0;
  padding: 14px 0;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(12px);
}

.site-header--solid .header-grid {
  box-shadow: 0 18px 40px rgba(10, 24, 40, 0.12);
}

.page-main {
  background: var(--paper);
}

.page-hero {
  padding: 92px 0 52px;
  background: var(--paper-2);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a:hover {
  color: var(--teal);
}

.page-lead {
  max-width: 880px;
  color: var(--muted);
  font-size: 1.14rem;
}

.page-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.prose {
  padding: 34px;
  border: 1px solid rgba(10, 24, 40, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(10, 24, 40, 0.08);
}

.prose h2,
.prose h3 {
  color: var(--navy);
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
}

.prose blockquote {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  border-radius: 0 18px 18px 0;
  background: rgba(191, 161, 129, 0.12);
  color: var(--ink);
}

.sidebar-card {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(10, 24, 40, 0.08);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(10, 24, 40, 0.08);
}

.sidebar-card h2,
.sidebar-card h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 1.45rem;
}

.sidebar-card p,
.sidebar-card li,
.sidebar-card a {
  color: var(--muted);
}

.sidebar-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.sidebar-card .button {
  width: 100%;
}

.related-links {
  display: grid;
  gap: 10px;
}

.related-links a {
  color: var(--teal);
  font-weight: 700;
}

.related-links a:hover {
  color: var(--navy);
}

.page-meta-list {
  display: grid;
  gap: 8px;
}

.page-meta-list strong {
  color: var(--ink);
}

@media (max-width: 1060px) {
  .site-header {
    top: 16px;
  }

  .header-grid {
    grid-template-columns: 1fr auto;
    border-radius: 30px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 14px;
  }

  .hero-grid,
  .split-grid,
  .team-photo-grid,
  .reviews-grid,
  .final-cta-grid,
  .footer-grid,
  .localizacao-grid,
  .page-content-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 860px;
    padding-top: 170px;
  }

  .hero-bg {
    width: 130%;
    object-position: center center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(10, 24, 40, 0.94) 0%,
        rgba(10, 24, 40, 0.82) 48%,
        rgba(23, 133, 130, 0.28) 74%,
        rgba(10, 24, 40, 0.18) 100%
      ),
      radial-gradient(circle at 80% 42%, rgba(10, 24, 40, 0), rgba(10, 24, 40, 0.42) 58%, rgba(10, 24, 40, 0.68) 100%);
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 760px);
  }

  .team-grid,
  .areas-grid,
  .google-reviews-shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta .button {
    justify-self: start;
    white-space: normal;
  }

  .sidebar-card {
    position: static;
    top: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    position: absolute;
    top: 12px;
  }

  .header-grid {
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding: 10px 10px 10px 12px;
    gap: 10px;
    border-radius: 24px;
  }

  .main-nav {
    display: none;
  }

  .brand-logo {
    height: 54px;
    max-width: min(220px, 50vw);
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    display: flex;
    min-height: auto;
    align-items: stretch;
    flex-direction: column;
    padding: 96px 0 0;
  }

  .page-hero {
    padding: 72px 0 40px;
  }

  .hero-bg {
    width: 130%;
    object-position: center top;
    filter: saturate(0.9) contrast(1.02) brightness(0.82);
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(10, 24, 40, 0.88) 0%,
        rgba(10, 24, 40, 0.78) 45%,
        rgba(10, 24, 40, 0.95) 100%
      ),
      linear-gradient(
        90deg,
        rgba(10, 24, 40, 0.84) 0%,
        rgba(23, 133, 130, 0.18) 54%,
        rgba(10, 24, 40, 0.22) 100%
      );
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 8.8vw, 2.9rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .hero-lead {
    font-size: clamp(1rem, 3.7vw, 1.3rem);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-proof-wrap {
    order: 3;
    padding-bottom: 22px;
  }

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

  .hero-proof div {
    padding: 12px;
  }

  .hero-cna-trigger,
  .hero-proof-link {
    width: 100%;
    justify-content: center;
  }

  .hero-cna-trigger {
    font-size: 1.08rem;
  }

  .hero-proof-link {
    font-size: 0.78rem;
  }

  .hero-proof strong {
    font-size: 0.9rem;
  }

  .hero-proof span {
    font-size: 0.78rem;
  }

  .hero-proof,
  .trust-grid,
  .team-grid,
  .areas-grid,
  .google-reviews-shell {
    grid-template-columns: 1fr;
  }

  .reviews-score {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .reviews-stars {
    flex: 1;
    padding-bottom: 0;
    font-size: 1.55rem;
    letter-spacing: 0.14em;
    text-align: right;
    white-space: nowrap;
  }

  .trust-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(191, 161, 129, 0.22);
    padding-inline: 0;
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .hero-actions,
  .section-cta {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .cna-modal__tabs {
    padding-right: 56px;
  }

  .cna-modal__panel {
    padding-inline: 0;
  }

  .cna-modal__stats,
  .cna-modal__aside,
  .cna-modal__sociedade-card {
    grid-template-columns: 1fr;
  }

  .cna-modal__sociedade-card {
    padding: 22px;
    text-align: left;
  }

  .cna-modal__sociedade-index {
    text-align: left;
  }

  .cna-modal__footer {
    justify-content: stretch;
  }

  .cna-modal__official-link,
  .cna-modal__copy,
  .cna-modal__footer-close {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 82px;
    height: 82px;
  }

  .whatsapp-float__icon {
    width: 50px;
    height: 50px;
  }

  .whatsapp-float__icon svg {
    width: 24px;
    height: 24px;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready [data-reveal],
  .motion-ready [data-reveal-group] > * {
    opacity: 1;
    transform: none;
  }

  .motion-ready .hero-bg {
    animation: none;
  }
}
