:root {
  --ink: #141210;
  --ink-soft: #2c2925;
  --cream: #f6f1e8;
  --cream-deep: #ebe4d8;
  --paper: #fbf8f3;
  --mist: #d9d2c6;
  --stone: #7a7368;
  --gold: #a67c3d;
  --gold-bright: #c49a55;
  --gold-dim: rgba(166, 124, 61, 0.18);
  --dark: #171512;
  --dark-elev: #1f1c18;
  --line: rgba(20, 18, 16, 0.1);
  --line-light: rgba(251, 248, 243, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --radius: 2px;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 20px 50px rgba(20, 18, 16, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  margin-bottom: 0.6rem;
}

p {
  margin: 0 0 1rem;
}

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.wrap.narrow {
  width: min(760px, calc(100% - 2.5rem));
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(23, 21, 18, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-light);
}

.site-header.is-menu-open {
  height: 100dvh;
  inset: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

.site-header.is-menu-open.is-scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #f7f2ea;
  z-index: 10;
  position: relative;
}

.logo-zoom {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
  background: #fff;
}

.logo-zoom-lg {
  width: 72px;
  height: 72px;
}

.logo-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  display: block;
  transform: scale(1.55);
  transform-origin: center center;
}

.brand-logo {
  border-radius: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(196, 154, 85, 0.55);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.brand-text small {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.55);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a:not(.btn) {
  position: relative;
  color: rgba(247, 242, 234, 0.82);
  font-size: 0.92rem;
  font-weight: 400;
  padding: 0.35rem 0;
  transition: color 0.25s;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease);
}

.site-nav a:not(.btn):hover,
.site-nav a:not(.btn).is-active {
  color: #fff;
}

.site-nav a:not(.btn):hover::after,
.site-nav a:not(.btn).is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 6px auto;
  background: #f7f2ea;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  min-height: 40px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-sm.btn-gold {
  border-radius: 10px;
}

.btn-gold,
.btn-ghost {
  border-radius: 10px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1510;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #d0ab68, var(--gold-bright));
}

.btn-ghost {
  background: transparent;
  border-color: rgba(247, 242, 234, 0.35);
  color: #f7f2ea;
}

.btn-ghost:hover {
  border-color: #f7f2ea;
  background: rgba(247, 242, 234, 0.06);
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4.5rem;
  color: #f7f2ea;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #0c0b09;
  background-image:
    linear-gradient(
      100deg,
      rgba(10, 9, 8, 0.97) 0%,
      rgba(10, 9, 8, 0.92) 28%,
      rgba(10, 9, 8, 0.55) 52%,
      rgba(10, 9, 8, 0.28) 72%,
      rgba(10, 9, 8, 0.45) 100%
    ),
    radial-gradient(ellipse at 78% 42%, rgba(166, 124, 61, 0.18), transparent 42%),
    url("../img/hero-balanca.jpg");
  background-size: cover;
  background-position: 72% center;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin: 72% center;
  will-change: transform;
}

.hero-bg.is-zooming {
  animation: heroKenSlow 60s ease-in-out infinite alternate;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 9, 8, 0.55) 0%, transparent 35%);
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-left: max(calc((100% - 1120px) / 2), 1.25rem);
  margin-right: auto;
  width: min(620px, calc(100% - 2.5rem));
}

.hero-brand {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin-bottom: 1.25rem;
  max-width: 14ch;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(247, 242, 234, 0.78);
  max-width: 40ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: rgba(247, 242, 234, 0.2);
  overflow: hidden;
  z-index: 1;
}

.hero-scroll span {
  display: block;
  width: 100%;
  height: 40%;
  background: var(--gold-bright);
  animation: scrollLine 2.2s var(--ease) infinite;
}

@keyframes heroKenSlow {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}

@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}

/* Sections */
.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.section-light {
  background: var(--paper);
}

.section-dark {
  background: var(--dark);
  color: #f3eee5;
}

.section-warm {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.eyebrow.light {
  color: var(--gold-bright);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-lead {
  color: var(--stone);
  font-size: 1.05rem;
  max-width: 48ch;
}

.section-dark .section-lead {
  color: rgba(243, 238, 229, 0.65);
}

/* Sobre */
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  overflow: hidden;
}

.split-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.pillars li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.pillars li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.portrait-frame {
  aspect-ratio: 4 / 5;
  background: var(--dark);
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(196, 154, 85, 0.25);
  border-radius: 5px;
  pointer-events: none;
}

.portrait-placeholder {
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.35rem;
  color: rgba(247, 242, 234, 0.55);
  background:
    radial-gradient(circle at 50% 30%, rgba(166, 124, 61, 0.2), transparent 55%),
    linear-gradient(160deg, #22201c, #151310);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.portrait-placeholder small {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  opacity: 0.7;
}

.portrait-open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.4s var(--ease);
}

.portrait-open:hover img {
  transform: scale(1.03);
}

/* Lightbox da foto */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox[hidden] {
  display: none;
}

.lightbox.is-open[hidden] {
  display: grid;
}

.lightbox-img {
  max-width: min(920px, 92vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  transform: scale(0.94);
  transition: transform 0.4s var(--ease);
}

.lightbox.is-open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(247, 242, 234, 0.12);
  color: #f7f2ea;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s;
}

.lightbox-close:hover {
  background: rgba(247, 242, 234, 0.22);
}

.portrait-meta {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.portrait-meta strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.portrait-meta span {
  color: var(--stone);
  font-size: 0.9rem;
}

.oab-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  margin-top: 0.15rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  transition: color 0.25s;
}

.oab-link span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.oab-link:hover {
  color: var(--gold);
}

/* Áreas */
#areas .wrap {
  overflow: hidden;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.area {
  padding: 2.25rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  outline: none;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    background 0.4s var(--ease);
}

.area:focus-visible {
  box-shadow: 0 0 0 2px rgba(201, 169, 98, 0.55), 0 18px 40px rgba(0, 0, 0, 0.28);
}

.area-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.area-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.area-modal[hidden] {
  display: none;
}

.area-modal.is-open[hidden] {
  display: grid;
}

.area-modal-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(86vh, 720px);
  overflow: auto;
  padding: 2.5rem 2rem 2rem;
  background:
    linear-gradient(160deg, rgba(247, 242, 234, 0.98) 0%, rgba(236, 228, 214, 0.98) 100%);
  color: var(--ink, #1a1714);
  border-radius: 16px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.4s var(--ease);
}

.area-modal.is-open .area-modal-panel {
  transform: translateY(0) scale(1);
}

.area-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(26, 23, 20, 0.08);
  color: #1a1714;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s;
}

.area-modal-close:hover {
  background: rgba(26, 23, 20, 0.14);
}

.area-modal-eyebrow {
  margin-bottom: 0.35rem;
}

.area-modal-panel h3 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  font-weight: 500;
  color: #1a1714;
  margin-bottom: 1rem;
  padding-right: 2rem;
}

.area-modal-body {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.area-modal-body p {
  color: rgba(26, 23, 20, 0.78);
  font-size: 1rem;
  line-height: 1.65;
  text-align: left;
}

.area-modal-cta {
  display: inline-flex;
}

.area:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  z-index: 2;
}

.area h3 {
  color: #f7f2ea;
}

.area p {
  color: rgba(243, 238, 229, 0.62);
  font-size: 0.98rem;
  margin-bottom: 1.25rem;
  max-width: 30ch;
}

.area a {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, color 0.25s;
}

.area a:hover {
  border-bottom-color: var(--gold-bright);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.steps li {
  display: grid;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.step-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.steps h3 {
  margin-bottom: 0.4rem;
}

.steps p {
  color: var(--stone);
  font-size: 0.98rem;
  margin: 0;
}

/* Commitments */
.commitments {
  margin-top: 2.5rem;
  display: grid;
  gap: 0;
}

.commitments li {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.commitments li:last-child {
  border-bottom: 1px solid var(--line);
}

.commitments strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.commitments span {
  color: var(--ink-soft);
}

/* CTA band */
.cta-band {
  background:
    linear-gradient(120deg, rgba(12, 11, 9, 0.94), rgba(26, 22, 16, 0.9)),
    radial-gradient(circle at 80% 50%, rgba(166, 124, 61, 0.25), transparent 40%);
  color: #f7f2ea;
  padding: clamp(4rem, 8vw, 5.5rem) 0;
  text-align: center;
}

.cta-inner {
  max-width: 640px;
}

.cta-band h2 {
  margin-bottom: 0.85rem;
}

.cta-band p {
  color: rgba(247, 242, 234, 0.7);
  margin-bottom: 1.75rem;
}

/* Depoimentos */
.testimonials {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "prev viewport next"
    "dots dots dots";
  align-items: center;
  gap: 1rem 0.75rem;
  max-width: 820px;
  margin: 0 auto;
}

.testimonials-viewport {
  grid-area: viewport;
  overflow: hidden;
  min-width: 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.testimonial {
  flex: 0 0 100%;
  min-width: 0;
  padding: 2.25rem 1.75rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(247, 242, 234, 0.1);
  border-radius: 16px;
  text-align: center;
  opacity: 0.45;
  transform: scale(0.96);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}

.testimonial.is-active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-stars {
  color: var(--gold-bright);
  letter-spacing: 0.18em;
  font-size: 1.05rem;
  margin-bottom: 1.15rem;
  line-height: 1;
}

.testimonial blockquote {
  margin: 0 0 1.35rem;
}

.testimonial blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(247, 242, 234, 0.92);
}

.testimonial cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.55);
}

.testimonials-source {
  margin: 1rem 0 0;
}

.testimonials-source a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, color 0.25s;
}

.testimonials-source a:hover {
  border-bottom-color: var(--gold-bright);
}

.testimonials-source a::after {
  content: "↗";
  font-size: 0.8em;
  opacity: 0.85;
}

.proof-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin: 0 auto 2.25rem;
  max-width: 820px;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(247, 242, 234, 0.12);
}

.clients-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  margin: 0;
}

.clients-proof strong {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1;
  color: var(--gold-bright);
}

.clients-proof span {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.62);
}

.testimonials-nav {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(247, 242, 234, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #f7f2ea;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
}

.testimonials-nav svg {
  width: 22px;
  height: 22px;
}

.testimonials-nav:hover {
  background: rgba(196, 154, 85, 0.16);
  border-color: rgba(196, 154, 85, 0.55);
  color: var(--gold-bright);
}

.testimonials-prev { grid-area: prev; }
.testimonials-next { grid-area: next; }

.testimonials-dots {
  grid-area: dots;
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.testimonials-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(247, 242, 234, 0.28);
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s;
}

.testimonials-dot.is-active {
  background: var(--gold-bright);
  transform: scale(1.25);
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-trigger {
  width: 100%;
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 0.25rem 1.15rem 0;
  line-height: 1.3;
}

.faq-trigger::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.35s var(--ease);
}

.faq-item.is-open .faq-trigger::after {
  content: "–";
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-panel-inner p {
  color: var(--stone);
  margin: 0 0 1.15rem;
  max-width: 52ch;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.faq-item.is-open .faq-panel-inner p {
  opacity: 1;
  transform: none;
  transition-delay: 0.08s;
}

/* Contato */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-list {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}

.contact-list li span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 238, 229, 0.45);
  margin-bottom: 0.3rem;
}

.contact-list a,
.contact-list p {
  margin: 0;
  font-size: 1.05rem;
  color: #f7f2ea;
}

.contact-sub {
  margin-top: 0.25rem !important;
  font-size: 0.92rem !important;
  color: rgba(243, 238, 229, 0.55) !important;
}

.contact-list a:hover {
  color: var(--gold-bright);
}

.contact-form {
  background: var(--dark-elev);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line-light);
}

.field {
  margin-bottom: 1rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 238, 229, 0.5);
  margin-bottom: 0.45rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(243, 238, 229, 0.22);
  border-radius: 0;
  color: #f7f2ea;
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.7rem 0;
  outline: none;
  transition: border-color 0.25s;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--gold-bright);
}

.field select option {
  background: var(--dark);
  color: #f7f2ea;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(243, 238, 229, 0.35);
}

.form-note {
  font-size: 0.82rem;
  color: rgba(243, 238, 229, 0.45);
  margin: 0.5rem 0 1.25rem;
}

.form-feedback {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  border: 1px solid transparent;
}

.form-feedback:not([hidden]):not(.is-ok):not(.is-error) {
  color: rgba(247, 242, 234, 0.85);
  border-color: rgba(196, 154, 85, 0.35);
  background: rgba(196, 154, 85, 0.1);
}

.form-botcheck {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.form-feedback.is-ok {
  color: #d8f5e2;
  border-color: rgba(37, 211, 102, 0.35);
  background: rgba(37, 211, 102, 0.1);
}

.form-feedback.is-error {
  color: #f8d7da;
  border-color: rgba(220, 100, 100, 0.35);
  background: rgba(220, 100, 100, 0.1);
}

/* Footer */
.site-footer {
  background: #141210;
  color: rgba(247, 242, 234, 0.72);
  padding: clamp(3.5rem, 7vw, 5rem) 0 0;
  border-top: 1px solid var(--line-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: clamp(1.75rem, 3vw, 2.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo-link {
  display: inline-block;
  margin: 0 0 0.85rem;
  border-radius: 50%;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.footer-logo-link:hover {
  transform: scale(1.06);
  opacity: 0.92;
}

.footer-logo {
  pointer-events: none;
}

.footer-name {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: #f7f2ea;
  margin: 0 0 0.15rem;
  line-height: 1.2;
}

.footer-tag {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin: 0 0 1rem;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(247, 242, 234, 0.62);
  max-width: 28ch;
  margin: 0;
}

.footer-col h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 1.1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.65rem;
}

.footer-col a {
  color: rgba(247, 242, 234, 0.78);
  font-size: 0.95rem;
  transition: color 0.25s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact ul {
  gap: 0.9rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: rgba(247, 242, 234, 0.78);
  line-height: 1.45;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--gold-bright);
}

.footer-bottom {
  border-top: 1px solid rgba(247, 242, 234, 0.1);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 1.5rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(247, 242, 234, 0.45);
  text-align: center;
}

.footer-dev {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.58rem !important;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.footer-dev a {
  color: var(--gold-bright);
  transition: color 0.25s;
}

.footer-dev a:hover {
  color: #fff;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 90;
  transition: transform 0.25s var(--ease);
  animation: waPulse 2.8s ease-in-out infinite;
}

.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  z-index: -1;
  animation: waRing 2.8s ease-out infinite;
}

.wa-float.is-entering {
  animation: waFloatIn 2.5s var(--ease) both;
}

.wa-float.is-entering::before {
  animation: none;
  opacity: 0;
}

.wa-float:hover {
  animation: waShake 0.55s ease-in-out infinite;
}

.wa-float:hover::before {
  animation: none;
  opacity: 0;
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

@keyframes waFloatIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.7);
  }
  60% {
    opacity: 1;
    transform: translateY(-4px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes waRing {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

@keyframes waShake {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  15% { transform: translate(-2px, -1px) rotate(-6deg); }
  30% { transform: translate(3px, 1px) rotate(6deg); }
  45% { transform: translate(-3px, 2px) rotate(-4deg); }
  60% { transform: translate(2px, -1px) rotate(5deg); }
  75% { transform: translate(-1px, 1px) rotate(-3deg); }
  90% { transform: translate(1px, -1px) rotate(2deg); }
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-up {
  transform: translateY(56px);
  transition:
    opacity 2.5s var(--ease),
    transform 2.5s var(--ease);
}

.reveal-right {
  transform: translateX(72px);
  transition:
    opacity 2.5s var(--ease),
    transform 2.5s var(--ease);
}

.reveal-left {
  transform: translateX(-72px);
  transition:
    opacity 2.5s var(--ease),
    transform 2.5s var(--ease);
}

.reveal-down {
  transform: translateY(-56px);
  transition:
    opacity 2.5s var(--ease),
    transform 2.5s var(--ease);
}

.reveal-up.is-visible,
.reveal-right.is-visible,
.reveal-left.is-visible,
.reveal-down.is-visible {
  opacity: 1;
  transform: none;
}

#sobre .reveal-right.delay-1 {
  transition-delay: 0.35s;
}

#areas .reveal-left.delay-1 {
  transition-delay: 0.35s;
}

#atendimento .wrap {
  overflow: hidden;
}

#diferenciais .wrap {
  overflow: hidden;
}

#cta {
  overflow: hidden;
}

#faq .wrap {
  overflow: hidden;
}

#faq .reveal-down.delay-1 {
  transition-delay: 0.35s;
}

#depoimentos .wrap {
  overflow: hidden;
}

#depoimentos .reveal-right.delay-1 {
  transition-delay: 0.35s;
}

#depoimentos .reveal-up.delay-2 {
  transition-delay: 0.7s;
}

#contato .wrap {
  overflow: hidden;
}

#contato .reveal-down.delay-1 {
  transition-delay: 0.35s;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Hero: animação mais lenta (entrada e replay) */
.hero .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 2.5s var(--ease),
    transform 2.5s var(--ease);
}

.hero .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero .delay-1 { transition-delay: 0.45s; }
.hero .delay-2 { transition-delay: 0.9s; }
.hero .delay-3 { transition-delay: 1.35s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-bg,
  .hero-scroll span,
  .faq-panel,
  .faq-panel-inner p,
  .faq-trigger::after,
  .wa-float,
  .wa-float::before {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .split,
  .faq-layout,
  .contact-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: 1fr 1fr;
  }

  .area {
    min-height: 220px;
    padding: 1.75rem 1.25rem;
  }

  .commitments li {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .proof-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .testimonials {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "viewport viewport"
      "prev next"
      "dots dots";
    gap: 1rem;
  }

  .testimonial {
    padding: 1.75rem 1.25rem 1.5rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 5;
    background: #0f0e0c;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.35rem;
    padding: calc(var(--header-h) + 1rem) 1.5rem 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    font-size: 1.35rem;
    font-family: var(--serif);
  }

  .site-nav .btn {
    margin-top: 0.75rem;
    flex-shrink: 0;
  }

  .site-nav a:not(.btn)::after {
    bottom: -0.15rem;
    height: 2px;
  }

  body.menu-open .wa-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .area {
    min-height: 200px;
    padding: 1.6rem 1.25rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: center;
    padding-bottom: 4rem;
  }

  .hero-bg {
    background-position: 62% center;
    background-image:
      linear-gradient(
        180deg,
        rgba(10, 9, 8, 0.88) 0%,
        rgba(10, 9, 8, 0.72) 45%,
        rgba(10, 9, 8, 0.9) 100%
      ),
      url("../img/hero-balanca.jpg");
    transform-origin: 62% center;
  }

  .hero h1 {
    max-width: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
  }

  .footer-dev {
    position: static;
    transform: none;
    text-align: center;
  }
}
