/* ============================================================
   EMBI Assessoria — Proposta 1 · "Essência Clara"
   Editorial claro · Cormorant Garamond + Montserrat
   ============================================================ */

:root {
  --gold: #D4B06A;
  --gold-dark: #B38B3D;
  --black: #1F1F24;
  --gray: #F2F2F2;
  --white: #FFFFFF;
  --cream: #FAF6EF;

  --ink: #1F1F24;
  --ink-soft: rgba(31, 31, 36, 0.72);
  --hairline: rgba(179, 139, 61, 0.35);
  --hairline-soft: rgba(179, 139, 61, 0.2);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --radius: 10px;
  --shadow-soft: 0 18px 45px -28px rgba(31, 31, 36, 0.22);
  --shadow-hover: 0 26px 55px -26px rgba(31, 31, 36, 0.3);

  --header-h: 88px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: calc(var(--header-h) + 12px);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

ul,
ol {
  list-style: none;
}

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

:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

/* ---------- Utilidades ---------- */
.container {
  width: min(1160px, 100% - 3rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s var(--ease);
}

.skip-link:focus-visible {
  top: 0;
}

/* ---------- Tipografia ---------- */
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  letter-spacing: -0.005em;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
}

.eyebrow,
.section-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ---------- Ornamento — ◆ — ---------- */
.ornament {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold);
}

.ornament::before,
.ornament::after {
  content: "";
  display: block;
  width: 3.4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament i {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--gold-dark);
  transform: rotate(45deg);
}

.ornament-light i {
  background: var(--gold);
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease), transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.btn-primary {
  background: var(--gold-dark);
  color: var(--white);
  box-shadow: 0 14px 30px -18px rgba(179, 139, 61, 0.8);
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -16px rgba(179, 139, 61, 0.75);
}

.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-outline:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(250, 246, 239, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline-soft);
  box-shadow: 0 12px 30px -24px rgba(31, 31, 36, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: var(--header-h);
  transition: height 0.35s var(--ease);
}

.site-header.is-scrolled .header-inner {
  height: 72px;
}

.brand {
  display: inline-flex;
  padding: 0.5rem 0;
  flex-shrink: 0;
}

.brand img {
  width: 160px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.nav-link {
  position: relative;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--gold-dark);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-nav {
  padding: 0.8rem 1.6rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(3rem, 8vw, 6rem)) 0 clamp(4rem, 9vw, 7.5rem);
  background: var(--cream);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 176, 106, 0.14), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.hero-copy .eyebrow {
  margin-bottom: 1rem;
}

.hero-copy .ornament {
  margin-bottom: 1.75rem;
}

.hero-copy h1 {
  max-width: 15ch;
  margin-bottom: 1.75rem;
}

.hero-sub {
  max-width: 46ch;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-figure {
  position: relative;
  justify-self: end;
  width: min(100%, 460px);
}

.hero-figure .frame {
  position: relative;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.9rem;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.hero-figure .frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transform: translate(18px, 18px);
  z-index: -1;
  pointer-events: none;
}

.hero-figure img {
  border-radius: calc(var(--radius) - 4px);
}

/* ---------- Seções ---------- */
.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

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

.section-cream {
  background: var(--cream);
}

.section-gray {
  background: var(--gray);
}

.section-dark {
  background: var(--black);
  color: var(--gray);
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}

.section-head .section-label {
  margin-bottom: 1rem;
}

.section-head h2 {
  margin-bottom: 1.25rem;
}

.section-head .ornament {
  margin-bottom: 0;
}

.section-intro {
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* ---------- Sobre ---------- */
.sobre-lead {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 1.4rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.sobre-lead p:first-child {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
}

.butterfly {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.butterfly-symbol {
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.butterfly-symbol img {
  width: min(100%, 190px);
}

.butterfly-text h3 {
  margin-bottom: 1rem;
}

.butterfly-text > p {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.initial-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  margin-bottom: 0.85rem;
  background: var(--white);
  border-left: 2px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-weight: 500;
  color: var(--ink);
}

.initial-line .initial {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-dark);
}

.butterfly-close {
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}

/* ---------- Pilares ---------- */
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 960px;
  margin-inline: auto;
}

.pilar-card {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.pilar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(2rem, 4vw, 3rem);
  width: 56px;
  height: 2px;
  background: var(--gold);
}

.pilar-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-hover);
}

.pilar-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
}

.pilar-card h3 {
  margin-bottom: 0.9rem;
}

.pilar-card p {
  color: var(--ink-soft);
}

/* ---------- Essência (escura) ---------- */
.essencia {
  position: relative;
  overflow: hidden;
}

.essencia::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(720px, 90vw);
  aspect-ratio: 184 / 159;
  transform: translate(-50%, -50%);
  background: url("assets/symbol-gold.png") center / contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.essencia .container {
  position: relative;
}

.essencia .section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-label-gold {
  color: var(--gold);
  font-size: 0.8rem;
}

.essencia-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}

.essencia-item {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1rem, 2vw, 1.75rem);
  border-top: 1px solid rgba(212, 176, 106, 0.3);
  transition: border-color 0.35s var(--ease);
}

.essencia-item:hover {
  border-top-color: var(--gold);
}

.essencia-item h3 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  color: var(--gold);
  margin-bottom: 1rem;
}

.essencia-item p {
  color: rgba(242, 242, 242, 0.82);
  font-size: 0.95rem;
}

.valores {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}

.valores-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.valores-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.valores-list li {
  padding: 0.55rem 1.3rem;
  border: 1px solid rgba(212, 176, 106, 0.4);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gray);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease),
    background-color 0.3s var(--ease);
}

.valores-list li:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 176, 106, 0.06);
}

/* ---------- Serviços ---------- */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.servico-card {
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 2.75rem);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.servico-card:hover {
  transform: translateY(-7px);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-hover);
}

.servico-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.servico-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
}

.servico-tag {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  white-space: nowrap;
}

.servico-card h3 {
  margin-bottom: 0.9rem;
}

.servico-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.card-cta {
  margin-top: auto;
  align-self: flex-start;
  position: relative;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding-bottom: 0.35rem;
  transition: color 0.3s var(--ease);
}

.card-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-dark);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.35s var(--ease), background-color 0.3s var(--ease);
}

.card-cta:hover {
  color: var(--black);
}

.card-cta:hover::after {
  transform: scaleX(1);
  background: var(--gold);
}

/* ---------- Método ---------- */
.metodo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(2rem, 3.5vw, 3rem);
  counter-reset: passo;
}

.metodo-step {
  position: relative;
  padding-top: 1.5rem;
}

.metodo-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 176, 106, 0.1));
}

.metodo-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 1rem;
}

.metodo-step h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.metodo-step p {
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.metodo-nota {
  margin-top: clamp(3rem, 5vw, 4rem);
  text-align: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}

.nota-diamond {
  color: var(--gold-dark);
  font-style: normal;
  font-size: 0.7em;
  vertical-align: 0.15em;
  margin-right: 0.5rem;
}

/* ---------- Para quem ---------- */
.publico-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 2rem;
  max-width: 980px;
  margin-inline: auto;
}

.publico-list li {
  position: relative;
  padding: 1.1rem 1.4rem 1.1rem 2.6rem;
  background: var(--white);
  border: 1px solid var(--hairline-soft);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.publico-list li::before {
  content: "◆";
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.55rem;
  color: var(--gold-dark);
}

.publico-list li:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

/* ---------- Fundadoras ---------- */
.fundadoras-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 960px;
  margin-inline: auto;
}

.fundadora-card {
  text-align: center;
  padding: clamp(2.25rem, 4vw, 3.25rem) clamp(1.75rem, 3vw, 2.75rem);
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.fundadora-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-hover);
}

.monograma {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 5px var(--cream);
}

.fundadora-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.fundadora-card .cargo {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.1rem;
}

.fundadora-card p:last-child {
  color: var(--ink-soft);
  font-size: 0.93rem;
}

/* ---------- Faixa de fé ---------- */
.fe {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.fe::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, 80vw);
  aspect-ratio: 184 / 159;
  transform: translate(-50%, -50%);
  background: url("assets/symbol-gold.png") center / contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.fe-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

.fe-quote {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}

.fe-apoio {
  max-width: 52ch;
  margin: 0.75rem auto 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ---------- Contato ---------- */
.contato-card {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.75rem, 5vw, 4.5rem);
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
}

.contato-card::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid var(--hairline);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}

.contato-card h2 {
  margin-bottom: 1.25rem;
}

.contato-card .ornament {
  margin-bottom: 1.5rem;
}

.contato-texto {
  max-width: 46ch;
  margin: 0 auto 2.25rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.contato-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contato-apoio {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

/* ---------- Rodapé ---------- */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--hairline-soft);
  padding: clamp(3.5rem, 6vw, 5rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.footer-brand img {
  width: 180px;
  height: auto;
  margin-bottom: 1.25rem;
}

.footer-tagline {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink-soft);
}

.footer-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: grid;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
}

.footer-col a:hover {
  color: var(--gold-dark);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--hairline-soft);
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* ---------- Botão flutuante WhatsApp ---------- */
.whats-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-dark);
  color: var(--white);
  box-shadow: 0 16px 34px -14px rgba(31, 31, 36, 0.45);
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.whats-float:hover {
  background: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 20px 38px -14px rgba(31, 31, 36, 0.5);
}

/* ---------- Reveal on scroll (estado oculto só com JS ativo) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .pilar-card,
  .servico-card,
  .fundadora-card,
  .publico-list li,
  .whats-float {
    transition: none;
  }

  .btn-primary:hover,
  .btn-outline:hover,
  .pilar-card:hover,
  .servico-card:hover,
  .fundadora-card:hover,
  .publico-list li:hover,
  .whats-float:hover {
    transform: none;
  }
}

/* ============================================================
   Responsividade
   ============================================================ */

@media (max-width: 1080px) {
  .nav-list {
    gap: 1.35rem;
  }

  .nav-link {
    font-size: 0.72rem;
  }
}

@media (max-width: 960px) {
  :root {
    --header-h: 76px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 1.75rem;
    background: rgba(250, 246, 239, 0.98);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--hairline-soft);
    box-shadow: 0 24px 40px -28px rgba(31, 31, 36, 0.4);
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }

  .nav-panel.is-open {
    display: flex;
  }

  .servico-tag {
    white-space: normal;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--hairline-soft);
  }

  .nav-link {
    display: block;
    padding: 1rem 0.25rem;
    font-size: 0.82rem;
  }

  .nav-link::after {
    display: none;
  }

  .btn-nav {
    margin-top: 1.25rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-figure {
    justify-self: center;
    width: min(100%, 420px);
  }

  .butterfly {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .butterfly-symbol img {
    width: min(100%, 160px);
  }

  .initial-line {
    justify-content: center;
    text-align: left;
  }

  .essencia-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  .metodo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .publico-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1160px, 100% - 2.5rem);
  }

  .brand img {
    width: 138px;
  }

  .hero {
    padding-top: calc(var(--header-h) + 2.5rem);
  }

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

  .pilares-grid,
  .servicos-grid,
  .metodo-grid,
  .publico-list,
  .fundadoras-grid {
    grid-template-columns: 1fr;
  }

  .servico-top {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .contato-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .container {
    width: min(1160px, 100% - 2rem);
  }

  .hero-figure .frame::before {
    transform: translate(10px, 10px);
  }

  .valores-list li {
    font-size: 0.78rem;
    padding: 0.5rem 1rem;
  }

  .whats-float {
    width: 52px;
    height: 52px;
  }
}
