:root {
  --preto: #24272A;
  --ouro: #C3AA73;
  --creme: #F8F2E0;
  --azul: #2C4D56;
  --branco: #FFFFFF;
  --laranja: #DB7611;
  --vermelho: #BD3200;
}

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

html { scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }

body {
  font-family: 'Noto Sans', sans-serif;
  background: var(--creme);
  color: var(--preto);
  overflow-x: hidden;
}



/* ── HERO TAGLINE ── */
.hero-tagline {
  position: absolute;
  bottom: 36px;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 60px;
}
.hero-tagline-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: rgba(195,170,115,.35);
}
.hero-tagline-text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(195,170,115,.6);
  white-space: nowrap;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  transition: all .4s ease;
}
nav.scrolled {
  background: rgba(36,39,42,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 60px;
}
.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo-svg {
  height: 52px;
  width: auto;
  display: block;
  overflow: visible;
}
.footer-logo .site-logo-svg {
  height: 48px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(248,242,224,.6);
  text-decoration: none;
  transition: color .3s;
}
.nav-links a:hover { color: var(--ouro); }
.nav-cta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--preto);
  background: var(--ouro);
  padding: 10px 22px;
  text-decoration: none;
  transition: all .3s;
}
.nav-cta:hover { background: #d4bc85; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--preto);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 120px 60px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1920&q=80');
  background-size: cover;
  background-position: center 30%;
  opacity: .18;
  z-index: 0;
  transform: scale(1.02);
}
.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 300;
  color: rgba(195,170,115,.06);
  white-space: nowrap;
  user-select: none;
  letter-spacing: -.01em;
  pointer-events: none;
}
.hero-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 55%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(195,170,115,.2) 30%, rgba(195,170,115,.2) 70%, transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--creme);
  margin-bottom: 28px;
  letter-spacing: .01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--ouro);
}
.hero-kicker {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ouro);
  margin: -12px 0 28px;
}
.hero-sub {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(248,242,224,.55);
  max-width: 460px;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.btn-primary {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--preto);
  background: var(--ouro);
  padding: 16px 36px;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
}
.btn-primary:hover { background: #d4bc85; transform: translateY(-1px); }
.btn-ghost {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(248,242,224,.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(248,242,224,.2);
  padding-bottom: 2px;
  transition: all .3s;
}
.btn-ghost:hover { color: var(--creme); border-color: var(--creme); }
.hero-numbers {
  position: absolute;
  right: 60px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 2;
}
.hero-stat {
  text-align: right;
}
.hero-stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--ouro);
  line-height: 1;
}
.hero-stat-l {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(248,242,224,.35);
  margin-top: 4px;
}

/* ── SECTION BASE ── */
section { padding: 120px 60px; }
.section-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ouro);
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--preto);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.manifesto-bg {
  position: absolute;
  top: -40px; right: -60px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 320px;
  font-weight: 300;
  color: rgba(195,170,115,.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.manifesto-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: rgba(248,242,224,.82);
}
.manifesto-text strong {
  font-style: normal;
  color: var(--ouro);
  font-weight: 400;
}
.manifesto-sign {
  margin-top: 52px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ouro);
  border-top: 1px solid rgba(195,170,115,.2);
  padding-top: 24px;
  display: inline-block;
}

/* ── SOBRE ── */
.sobre {
  background: var(--creme);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 120px 60px;
  position: relative;
}
.sobre-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--preto);
  margin-bottom: 28px;
}
.sobre-text h2 em { font-style: italic; color: var(--azul); }
.sobre-text p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(36,39,42,.65);
  margin-bottom: 20px;
}
.sobre-text p strong { font-weight: 500; color: var(--preto); }
.sobre-fundadores {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}
.fundador-card {
  background: var(--preto);
  padding: 28px 32px;
  border-left: 3px solid var(--ouro);
  position: relative;
}
.fundador-nome {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--creme);
  margin-bottom: 4px;
}
.fundador-cargo {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 14px;
}
.fundador-bio {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(248,242,224,.55);
}
.sobre-quote {
  background: var(--azul);
  padding: 48px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sobre-quote::before {
  content: '"';
  position: absolute;
  top: -30px; left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  font-weight: 300;
  color: rgba(248,242,224,.05);
  line-height: 1;
}
.sobre-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--creme);
  position: relative;
  z-index: 1;
}
.sobre-quote cite {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-top: 28px;
  display: block;
  font-style: normal;
}
.sobre-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(36,39,42,.1);
  margin-top: 40px;
}
.value-item {
  background: var(--creme);
  padding: 24px 20px;
}
.value-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--preto);
  margin-bottom: 8px;
}
.value-desc {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(36,39,42,.55);
}

/* ── METODOLOGIA ── */
.metodologia {
  background: var(--preto);
  padding: 120px 60px;
}
.metodologia-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.metodologia-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--creme);
}
.metodologia-header h2 em { font-style: italic; color: var(--ouro); }
.metodologia-header p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(248,242,224,.45);
}
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(195,170,115,.15);
}
.pilares-grid .pilar:nth-child(5),
.pilares-grid .pilar:nth-child(6),
.pilares-grid .pilar:nth-child(7) {
  grid-column: span 1;
}
.pilares-grid-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(195,170,115,.15);
  margin-top: 1px;
}
.pilar {
  background: rgba(36,39,42,.9);
  padding: 32px 22px;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}
.pilar:hover { background: rgba(44,77,86,.5); }
.pilar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--ouro);
  transform: scaleX(0);
  transition: transform .3s;
}
.pilar:hover::before { transform: scaleX(1); }
.pilar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: rgba(195,170,115,.15);
  line-height: 1;
  margin-bottom: 16px;
}
.pilar-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 10px;
}
.pilar-desc {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(248,242,224,.4);
}

/* ── SERVIÇOS ── */
.servicos {
  background: var(--creme);
  padding: 120px 60px;
}
.servicos h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--preto);
  margin-bottom: 60px;
  max-width: 500px;
}
.servicos h2 em { font-style: italic; color: var(--azul); }
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(36,39,42,.1);
}
.servico-card {
  background: var(--creme);
  padding: 44px 36px;
  transition: background .35s;
  cursor: default;
}
.servico-card:hover { background: var(--azul); }
.servico-card:hover .servico-title { color: var(--creme); }
.servico-card:hover .servico-desc { color: rgba(248,242,224,.55); }
.servico-card:hover .servico-num { color: rgba(248,242,224,.12); }
.servico-card:hover .servico-tag { background: rgba(195,170,115,.2); color: var(--ouro); }
.servico-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(36,39,42,.07);
  line-height: 1;
  margin-bottom: 20px;
  transition: color .35s;
}
.servico-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--preto);
  margin-bottom: 14px;
  transition: color .35s;
}
.servico-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(36,39,42,.55);
  margin-bottom: 24px;
  transition: color .35s;
}
.servico-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.servico-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--azul);
  background: rgba(44,77,86,.1);
  padding: 5px 10px;
  transition: all .35s;
}

/* ── DIFERENCIAIS ── */
.diferenciais {
  background: var(--preto);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.diferenciais-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: var(--creme);
  margin-bottom: 24px;
}
.diferenciais-left p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(248,242,224,.5);
}
.diferenciais-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.diferencial-item {
  border-bottom: 1px solid rgba(248,242,224,.1);
  padding: 22px 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
}
.diferencial-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--ouro);
  line-height: 1;
  margin-top: 2px;
}
.diferencial-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--creme);
  margin-bottom: 6px;
}
.diferencial-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(248,242,224,.45);
}

/* ── DEPOIMENTO ── */
.depoimento {
  background: var(--creme);
  padding: 100px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.depo-inner {
  max-width: 780px;
  text-align: center;
}
.depo-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--preto);
  margin-bottom: 36px;
  position: relative;
}
.depo-quote::before {
  content: '"';
  position: absolute;
  top: -30px; left: -20px;
  font-size: 120px;
  font-weight: 300;
  color: rgba(195,170,115,.15);
  line-height: 1;
}
.depo-author {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ouro);
}
.depo-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}
.depo-star {
  width: 12px; height: 12px;
  fill: var(--ouro);
}

/* ── CTA ── */
.cta-section {
  background: var(--preto);
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 340px;
  font-weight: 300;
  color: rgba(195,170,115,.04);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.cta-section .section-label { justify-content: center; }
.cta-section .section-label::before { display: none; }
.section-label-center { justify-content: center; }
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--creme);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.cta-section h2 em { font-style: italic; color: var(--ouro); }
.cta-section p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(248,242,224,.45);
  max-width: 420px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* ── FOOTER ── */
footer {
  background: var(--preto);
  border-top: 1px solid rgba(195,170,115,.15);
  padding: 60px 60px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo-link { display: block; margin-bottom: 20px; }
.footer-brand .site-logo-svg { height: 44px; }
.footer-brand p {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(248,242,224,.35);
  max-width: 280px;
}
.footer-col h4 {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  font-size: 12px;
  font-weight: 300;
  color: rgba(248,242,224,.4);
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(248,242,224,.4);
  text-decoration: none;
  transition: color .3s;
}
.footer-col ul li a:hover { color: var(--ouro); }
.footer-bottom {
  border-top: 1px solid rgba(248,242,224,.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .1em;
  color: rgba(248,242,224,.2);
}
.footer-insta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ouro);
  text-decoration: none;
  transition: color .3s;
}
.footer-insta:hover { color: #d4bc85; }
.footer-email-first { margin-top: 16px; }


/* ── CTA EMAILS ── */
.cta-emails {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.cta-email-link {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .12em;
  color: rgba(248,242,224,.35);
  text-decoration: none;
  transition: color .3s;
}
.cta-email-link:hover { color: rgba(195,170,115,.85); }
.cta-email-dot {
  color: rgba(248,242,224,.12);
  font-size: 10px;
}

/* ── DIFERENCIAIS BADGE ── */
.diferenciais-badge {
  margin-top: 32px;
  padding: 18px 24px;
  background: var(--azul);
  display: inline-block;
}
.diferenciais-badge p {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(248,242,224,.65);
  font-family: 'Noto Sans', sans-serif;
  line-height: 1 !important;
}

/* ── DEPOIMENTO LABEL ── */
.depo-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.depo-label::before,
.depo-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--ouro);
  opacity: .5;
}


/* ── SCROLL MARGIN (nav offset) ── */
section[id], div[id] {
  scroll-margin-top: 80px;
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--creme);
  transition: all .3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(36,39,42,.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 150;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.mobile-nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 300;
  font-style: italic;
  color: rgba(248,242,224,.7);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .3s;
}
.mobile-nav-link:hover { color: var(--ouro); }
.mobile-nav-cta {
  font-family: 'Noto Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--preto);
  background: var(--ouro);
  padding: 16px 40px;
  text-decoration: none;
  margin-top: 8px;
  transition: background .3s;
}
.mobile-nav-cta:hover { background: #d4bc85; }

/* ── MANIFESTO / SOBRE DIVIDER ── */
.manifesto { border-bottom: 1px solid rgba(195,170,115,.08); }

/* ── CTA SECTION-LABEL FIX ── */
.cta-section .section-label::before { display: none; }
.section-label-center { justify-content: center; }

/* ── RESPONSIVE ── */




@media (max-width: 380px) {
  .hero h1 { font-size: 36px; }
  .hero-tagline { display: none; }
}


/* ── SERVIÇO CARD IMAGEM ── */
.servico-card {
  position: relative;
  overflow: hidden;
}
.servico-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .12;
  transition: opacity .6s ease;
  z-index: 0;
}
.servico-card:hover .servico-card-img {
  opacity: .22;
}
.servico-card > *:not(.servico-card-img) {
  position: relative;
  z-index: 1;
}

/* ── PORTFÓLIO ── */
.portfolio {
  background: var(--preto);
  padding: 100px 60px;
}
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.portfolio-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--creme);
  line-height: 1.2;
}
.portfolio-header p {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .12em;
  color: rgba(248,242,224,.35);
  max-width: 220px;
  text-align: right;
  line-height: 1.6;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.portfolio-item:first-child {
  grid-row: span 1;
}
.portfolio-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: brightness(.75) saturate(.85);
  transition: filter .6s ease, transform .6s ease;
}
.portfolio-item:first-child .portfolio-img {
  height: 420px;
}
.portfolio-item:hover .portfolio-img {
  filter: brightness(.55) saturate(.7);
  transform: scale(1.04);
}
.portfolio-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(36,39,42,.92) 0%, transparent 100%);
  transform: translateY(8px);
  transition: transform .4s ease;
}
.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}
.portfolio-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 6px;
  opacity: .8;
}
.portfolio-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--creme);
  line-height: 1.3;
}


/* ── ANIMATIONS ── */
.fade-up {
  opacity: 1;
  transform: none;
}
.fade-up.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
  -webkit-transition: opacity .6s ease, transform .6s ease;
}
.fade-up.animate.visible {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
}
.fade-up-d1 { transition-delay: .1s; }
.fade-up-d2 { transition-delay: .2s; }
.fade-up-d3 { transition-delay: .3s; }
.fade-up-d4 { transition-delay: .4s; }
.fade-up-d5 { transition-delay: .5s; }
.fade-up-d6 { transition-delay: .5s; }
.fade-up-d7 { transition-delay: .6s; }

/* ── RESPONSIVE ── */






@media (max-width: 1024px) {

  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item:nth-child(3) { display: none; }

  .nav-hamburger { display: flex; }
  .nav-cta-desktop { display: none; }
  .pilares-grid-row2 { grid-template-columns: repeat(3, 1fr); }
  .hero-tagline { padding: 0 32px; }
  .hero-tagline-line { max-width: 60px; }
  nav { padding: 18px 32px; }
  nav.scrolled { padding: 12px 32px; }
  .nav-links { display: none; }
  section, .manifesto, .metodologia, .servicos, .diferenciais, .depoimento, .cta-section { padding: 80px 32px; }
  .hero { padding: 0 32px 60px; }
  .hero-numbers { display: none; }
  .hero-line { display: none; }
  .sobre { grid-template-columns: 1fr; padding: 80px 32px; }
  .sobre-quote { min-height: 300px; }
  .pilares-grid { grid-template-columns: repeat(4, 1fr); }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .metodologia-header { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {

  .portfolio { padding: 60px 24px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:nth-child(3) { display: block; }
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .portfolio-header p { text-align: left; }
  .portfolio-img { height: 260px; }

  .hero-tagline-text { font-size: 8px; letter-spacing: .2em; }
  .hero-tagline-line { max-width: 32px; }
  .pilares-grid-row2 { grid-template-columns: repeat(2, 1fr); }
  .depo-quote { font-size: 22px; }
  .sobre-quote { padding: 32px 24px; }
  .fundador-card { padding: 22px 24px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-emails { gap: 12px; flex-direction: column; }
  .cta-email-dot { display: none; }
  footer { padding: 48px 24px 32px; }
  .hero { padding: 0 24px 100px; }
  nav { padding: 16px 24px; }
  .section-label { font-size: 10px; }
  .pilar-title { font-size: 11px; }
  .diferencial-title { font-size: 12px; }
  .footer-col ul li { font-size: 13px; }
  .footer-bottom p { font-size: 11px; }
  .depo-author { font-size: 11px; }
  .pilares-grid { grid-template-columns: repeat(2, 1fr); }
  .servicos-grid { grid-template-columns: 1fr; }
  .sobre-values { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}


/* ── PÁGINAS DE SERVIÇO / LOCAIS (multi-página) ── */
.page-header {
  padding: 180px 60px 80px;
  background: var(--preto);
  color: var(--creme);
}
.page-header .section-label { color: var(--ouro); }
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  margin: 12px 0 24px;
  color: var(--creme);
}
.page-header h1 em { font-style: italic; color: var(--ouro); }
.page-header .breadcrumb {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(248,242,224,.45);
  margin-bottom: 16px;
}
.page-header .breadcrumb a { color: rgba(248,242,224,.7); text-decoration: none; border-bottom: 1px solid rgba(195,170,115,.3); }
.page-header .breadcrumb a:hover { color: var(--ouro); }
.page-header .lead {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(248,242,224,.7);
  max-width: 680px;
}

.content-section {
  padding: 100px 60px;
  background: var(--creme);
}
.content-section.alt { background: var(--branco); }
.content-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--preto);
  margin-bottom: 24px;
  max-width: 700px;
}
.content-section h2 em { font-style: italic; color: var(--azul); }
.content-section p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(36,39,42,.7);
  max-width: 760px;
  margin-bottom: 20px;
}
.content-section p strong { font-weight: 500; color: var(--preto); }
.content-section ul.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
  max-width: 760px;
  margin: 32px 0;
}
.content-section ul.check-list li {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(36,39,42,.75);
  padding-left: 28px;
  position: relative;
}
.content-section ul.check-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--ouro);
  font-weight: 700;
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.related-links a {
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--azul);
  text-decoration: none;
  border: 1px solid rgba(44,77,86,.25);
  padding: 12px 22px;
  transition: all .25s ease;
}
.related-links a:hover {
  background: var(--azul);
  color: var(--creme);
}

@media (max-width: 720px) {
  .page-header { padding: 140px 24px 60px; }
  .content-section { padding: 60px 24px; }
  .content-section ul.check-list { grid-template-columns: 1fr; }
}

/* Cards de serviço clicáveis (link para páginas internas) */
a.servico-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.servico-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--azul);
  transition: color .35s;
}
.servico-card:hover .servico-link { color: var(--ouro); }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0 60px 100px;
  background: var(--creme);
}
.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--branco);
  border: 1px solid rgba(44,77,86,.1);
  transition: transform .35s, box-shadow .35s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(36,39,42,.08);
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.blog-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.blog-card-date {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--azul);
  opacity: .7;
}
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--preto);
}
.blog-card-desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(36,39,42,.7);
  flex: 1;
}
.blog-card-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--azul);
  transition: color .35s;
}
.blog-card:hover .blog-card-link { color: var(--ouro); }

.blog-card.blog-card-empty {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  border-style: dashed;
  color: rgba(36,39,42,.4);
  font-size: 13px;
  font-weight: 300;
}
.blog-card.blog-card-empty:hover { transform: none; box-shadow: none; }

/* Artigo de blog */
.blog-article {
  padding: 100px 60px;
  background: var(--creme);
  max-width: 760px;
  margin: 0 auto;
}
.blog-article .blog-meta {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--azul);
  opacity: .7;
  margin-bottom: 18px;
}
.blog-article h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  margin: 48px 0 18px;
  color: var(--preto);
}
.blog-article h2 em { font-style: italic; color: var(--azul); }
.blog-article p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(36,39,42,.78);
  margin-bottom: 18px;
}
.blog-article p strong { font-weight: 500; color: var(--preto); }
.blog-article ul.check-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding: 0;
}
.blog-article ul.check-list li {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(36,39,42,.78);
  position: relative;
  padding-left: 24px;
}
.blog-article ul.check-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--ouro);
}
.blog-article .blog-cta {
  margin-top: 56px;
  padding: 40px;
  background: var(--branco);
  text-align: center;
}
.blog-article .blog-cta p {
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); padding: 0 40px 80px; }
}
@media (max-width: 720px) {
  .blog-grid { grid-template-columns: 1fr; padding: 0 24px 60px; gap: 24px; }
  .blog-article { padding: 60px 24px; }
}
