:root {
  --nav-offset: 96px;
  --gold: #9d7b50;
  --gold-light: #b8935f;
  --gold-pale: #c9a87a;
  --black: #000000;
  --near-black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --white: #ffffff;
  --white-soft: #f0ebe4;
  --burgundy: #4e3215;
  --teal: #2b3a2c;
  --blue-teal: #225a65;
  --brown: #402715;
  --text-muted: #888880;
  --text-dim: #555550;
  --border: rgba(157, 123, 80, 0.15);
  --border-bright: rgba(157, 123, 80, 0.35);
  --text-primary: #402715;
  --bg-primary: #ffffff;
  --bg-secondary: #f9f7f4;
  --bg-tertiary: #f5f2ed;

  /* ── Escala tipográfica ── */
  --fs-display: clamp(48px, 6vw, 88px);
  /* Hero H1 */
  --fs-h2: clamp(32px, 3.5vw, 52px);
  /* Títulos de seção */
  --fs-h3: clamp(22px, 2.5vw, 32px);
  /* Subtítulos de bloco */
  --fs-h4: 20px;
  /* Títulos de card/item */
  --fs-body: 18px;
  /* Texto corrido */
  --fs-small: 15px;
  /* Listas, complementos */
  --fs-label: 12px;
  /* Labels, eyebrow, meta */
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: clip;
}

.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(157, 123, 80, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  transition: all 0.35s ease;
  transform: translate(-50%, -50%);
}

.cursor-ring.hover {
  transform: translate(-50%, -50%) scale(1.8);
  border-color: var(--gold);
}

h1,
h2,
h3,
h4 {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 300;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: #9d7b50;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
}

nav.scrolled {
  background: #9d7b50;
  backdrop-filter: blur(20px);
  padding: 20px 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  cursor: pointer;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-family: 'IBM Plex Serif', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.08em;
}

.nav-logo-sub {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.6;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
  cursor: pointer;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white) !important;
  font-size: 10px !important;
  transition: all 0.3s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--white) !important;
  color: #402715 !important;
  border-color: var(--white) !important;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
  line-height: 1;
}

.nav-social a:hover {
  color: #ffffff;
}

.nav-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 32px;
  height: 32px;
}

.nav-menu-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: all 0.3s;
}

.nav-menu-icon::before,
.nav-menu-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--white);
  left: 0;
  transition: all 0.3s;
}

.nav-menu-icon::before {
  top: -8px;
}

.nav-menu-icon::after {
  top: 8px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 10000;
  padding: 60px 40px;
  animation: slideIn 0.4s ease;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.mobile-menu .close {
  position: absolute;
  top: 28px;
  right: 30px;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  padding: 0;
}

.close-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: #402715;
  position: relative;
  transform: rotate(45deg);
}

.close-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: #402715;
  transform: rotate(-90deg);
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.mobile-links li {
  border-bottom: 1px solid var(--border);
}

.mobile-links a {
  display: block;
  padding: 24px 0;
  text-decoration: none;
  color: rgba(64, 39, 21, 0.7);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s;
  cursor: pointer;
}

.mobile-links a:hover {
  color: var(--gold);
  padding-left: 12px;
}

.mobile-links .nav-cta {
  color: var(--gold);
  font-weight: 500;
}

section {
  position: relative;
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 35%, transparent 65%),
    linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 80%);
  z-index: 2;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  z-index: 1;
}

/* Garante que todo conteúdo do hero fique acima do fundo */
#hero>*:not(.hero-bg):not(.hero-stamp-wrapper) {
  position: relative;
  z-index: 3;
}

/* Stamp mantém position:absolute próprio com z-index acima do fundo */
.hero-stamp-wrapper {
  z-index: 4;
}

.hero-line {
  position: absolute;
  top: 0;
  right: 160px;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom,
      transparent,
      rgba(157, 123, 80, 0.2) 30%,
      rgba(157, 123, 80, 0.2) 70%,
      transparent);
}

.hero-bg-letter {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(200px, 28vw, 380px);
  font-weight: 300;
  color: rgba(157, 123, 80, 0.04);
  position: absolute;
  bottom: -20px;
  right: -20px;
  letter-spacing: -0.05em;
  user-select: none;
  line-height: 1;
}

.hero-o-letter {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(220px, 30vw, 420px);
  font-weight: 300;
  color: rgba(157, 123, 80, 0.18);
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  letter-spacing: -0.05em;
  user-select: none;
  line-height: 1;
  pointer-events: none;
  font-style: italic;
}

.hero-o-img {
  width: clamp(260px, 32vw, 480px);
  height: auto;
  display: block;
  opacity: 0.82;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 40px rgba(157, 123, 80, 0.3));
}

/* BADGE CIRCULAR GIRATÓRIO */
.hero-stamp-wrapper {
  position: absolute;
  right: -120px;
  top: 10%;
  width: clamp(250px, 25vw, 370px);
  height: clamp(250px, 25vw, 370px);
  z-index: 4;
  pointer-events: none;
}

.hero-stamp-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: hero-stamp-spin 18s linear infinite;
  opacity: 0.92;
}

@keyframes hero-stamp-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: 'IBM Plex Serif', serif;
  font-size: var(--fs-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-bottom: 32px;
  animation: fadeUp 0.9s ease 0.5s both;
  color: #ffffff;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: var(--fs-h4);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 52px;
  letter-spacing: 0.02em;
  animation: fadeUp 0.8s ease 0.7s both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: fadeUp 0.8s ease 0.9s both;
}

.btn-primary {
  padding: 18px 48px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-pale);
  transform: translateY(-1px);
}

.btn-ghost {
  padding: 18px 40px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s;
  display: inline-block;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  right: 60px;
  bottom: 80px;
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-label {
  font-size: 13px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label.center {
  justify-content: center;
}

.section-label::before {
  content: '—';
  color: var(--gold);
}

.section-label.center::before,
.section-label.center::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-label.center::before {
  margin-right: 0;
}

/* SOBRE */
#sobre {
  padding: 140px 60px;
  background: var(--bg-secondary);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.sobre-title {
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  color: var(--text-primary);
}

.sobre-title em {
  font-style: italic;
  color: var(--gold);
}

.sobre-right {
  padding-top: 43px;
}

.sobre-right p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(64, 39, 21, 0.7);
  line-height: 1.9;
  margin-bottom: 24px;
}

.diferenciais-title {
  margin-top: 40px;
  margin-bottom: 8px;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.diferenciais {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}

.dif-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(64, 39, 21, 0.8);
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.dif-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.dif-item::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
}

/* DIFERENCIAIS SECTION */
#diferenciais {
  padding: 140px 60px;
  background: var(--bg-primary);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 120px;
  align-items: start;
}

.dif-section-header {
  position: sticky;
  top: 120px;
}

.dif-section-title {
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-primary);
  margin-top: 16px;
}

.dif-section-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.dif-section-list {
  display: flex;
  flex-direction: column;
}

.dif-section-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 6px 20px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.dif-section-item:first-child {
  border-top: 1px solid var(--border);
}

.dif-section-num {
  grid-row: 1;
  font-family: 'IBM Plex Serif', serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.15em;
  padding-top: 6px;
  opacity: 0.7;
}

.dif-section-name {
  font-family: 'IBM Plex Serif', serif;
  font-size: var(--fs-h4);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.3;
}

.dif-section-desc {
  grid-column: 2;
  font-size: var(--fs-body);
  font-weight: 300;
  color: rgba(64, 39, 21, 0.6);
  line-height: 1.8;
}

@media (max-width: 900px) {
  #diferenciais {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 30px;
  }

  .dif-section-header {
    position: static;
  }

  .dif-section-item {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    gap: 12px 20px;
  }

  .dif-section-desc {
    grid-column: 2;
  }
}

/* NOME */
#nome {
  padding: 140px 60px;
  background-color: #f5f0e8;
  background-image: url('../img/pattern-01.png');
  background-repeat: repeat;
  background-size: 1100px auto;
  position: relative;
  overflow: hidden;
  text-align: center;
}

#nome::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 55%,
      rgba(255, 255, 255, 0.90) 0%,
      rgba(255, 255, 255, 0.55) 40%,
      rgba(255, 255, 255, 0) 70%),
    radial-gradient(ellipse 100% 100% at 50% 50%,
      rgba(0, 0, 0, 0) 55%,
      rgba(0, 0, 0, 0.22) 100%);
  pointer-events: none;
  z-index: 0;
}


.nome-bg {
  display: none;
}

.nome-inner {
  position: relative;
  z-index: 1;
  max-width: 1150px;
  margin: 0 auto;
  padding: 60px 80px;
}

.nome-title {
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 56px;
  color: #402715;
  letter-spacing: -0.01em;
}

.nome-title-highlight {
  font-size: 1.35em;
  font-weight: 500;
  display: block;
  margin: 0;
  color: #442a17;
}

.nome-text {
  font-size: 18px;
  font-weight: 300;
  color: rgba(64, 39, 21, 0.55);
  line-height: 1.9;
  letter-spacing: 0.02em;
  max-width: 900px;
  margin: 0 auto;
}

.nome-text p {
  margin-bottom: 24px;
}

.nome-text p:last-child {
  margin-bottom: 0;
}

/* ÉTICA */
#etica {
  padding: 140px 60px;
  background: var(--bg-tertiary);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 120px;
  align-items: start;
}

.etica-sticky {
  position: sticky;
  top: 120px;
}

.etica-title {
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-primary);
}

.etica-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-top: 4px;
}

.etica-list {
  display: flex;
  flex-direction: column;
}

.etica-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px 20px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.etica-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.etica-num {
  font-family: 'IBM Plex Serif', serif;
  font-size: 13px;
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: 0.2em;
  margin-bottom: 0;
  padding-top: 6px;
}

.etica-text {
  font-size: 20px;
  font-weight: 300;
  color: rgba(64, 39, 21, 0.8);
  line-height: 1.6;
}

/* METODOLOGIA */
#metodologia {
  padding: 140px 60px;
  background: var(--bg-secondary);
}

.metodologia-header {
  text-align: center;
  margin-bottom: 80px;
}

.metodologia-header h2 {
  font-size: var(--fs-h2);
  font-weight: 300;
  color: var(--text-primary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.step {
  background: var(--bg-primary);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.step:hover {
  background: var(--bg-tertiary);
}

.step-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.step:hover .step-bar {
  transform: scaleX(1);
}

.step-num {
  font-family: 'IBM Plex Serif', serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(157, 123, 80, 0.1);
  line-height: 1;
  margin-bottom: 24px;
}

.step h3 {
  font-size: var(--fs-h4);
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.step p {
  font-size: var(--fs-small);
  font-weight: 300;
  color: rgba(64, 39, 21, 0.6);
  line-height: 1.8;
}

.step-note {
  text-align: center;
  margin-top: 60px;
  font-size: var(--fs-small);
  font-weight: 300;
  color: rgba(64, 39, 21, 0.45);
  letter-spacing: 0.08em;
  font-style: italic;
  font-family: 'IBM Plex Serif', serif;
}

/* SERVIÇOS — sticky card stack */
#servicos {
  position: relative;
}

.svc-section {
  padding: 140px 60px;
  background: #f5f0e8;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  color: #1a1a1a;
  position: relative;
}

.svc-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/pattern2a.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

.svc-left-col,
.svc-right {
  position: relative;
  z-index: 1;
}

.svc-left-col {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 140px;
  align-self: flex-start;
}



.svc-label {
  color: #9d7b50;
  margin-bottom: 40px;
}

.svc-heading {
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.2;
  font-family: 'IBM Plex Serif', serif;
}


.svc-right {
  flex: 1;
  /* Reduced padding so cards "lock" sooner after the last one stacks */
  padding-bottom: 20px;
  /* Reduces extra useless scroll at the very end so they are perfectly aligned without waiting */
}

.svc-stack-card {
  position: sticky;
  /* top & z-index set inline per card */
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-bottom: 20px;
  transform-origin: top center;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-stack-card:last-child {
  margin-bottom: 0;
}

/* Entrance animation: fade + slide up */
.svc-card-active {
  opacity: 1;
  transform: translateY(0);
}

.svc-stack-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.svc-stack-h3 {
  font-size: var(--fs-h4);
  font-weight: 600;
  color: #1a1a1a;
  font-family: 'IBM Plex Sans', sans-serif;
}

.svc-stack-num {
  font-size: var(--fs-h4);
  font-weight: 500;
  color: #9d7b50;
  font-family: 'IBM Plex Sans', sans-serif;
}

.svc-stack-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
}

.svc-stack-list li {
  font-size: var(--fs-body);
  color: #4a4a4a;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
}

.svc-stack-bullet {
  color: #9d7b50;
}

.svc-sticky-wrap {
  position: sticky;
  top: 0;
  height: 70vh;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}

.svc-sticky-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.svc-sticky-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.svc-content {
  position: relative;
  z-index: 1;
  margin-top: -200px;
  padding: 0 60px 120px;
  background: transparent;
}

.svc-header {
  margin-bottom: 56px;
  padding-top: 40px;
}

.svc-header h2 {
  font-size: var(--fs-h2);
  font-weight: 300;
  max-width: 600px;
  color: #ffffff;
  font-family: 'IBM Plex Serif', serif;
}

.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Scroll reveal state */
.svc-card {
  padding: 40px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #ffffff;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  /* Initial hidden state */
  opacity: 0;
  transform: translateY(50px);
}

.svc-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease-out, transform 600ms ease-out, box-shadow 0.4s ease;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.svc-card-arrow {
  font-size: 22px;
  color: #9d7b50;
  transition: transform 0.3s;
  display: inline-block;
  width: fit-content;
}

.svc-card:hover .svc-card-arrow {
  transform: translateX(6px);
}

.svc-card h3 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.svc-card h3 strong {
  font-weight: 600;
}

.svc-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.svc-card ul li {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  padding: 9px 0 9px 14px;
  position: relative;
  font-family: 'IBM Plex Sans', sans-serif;
}

.svc-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #9d7b50;
  font-size: 10px;
}

/* Keep old .svc classes for backward compat but hide */
.servicos-grid {
  display: none;
}

/* PLANOS — sticky full-screen stack */
#planos {
  padding: 0;
  background: transparent;
}

.planos-intro {
  padding: 100px 60px 60px;
  background: #f5f0e8;
}

.planos-intro-title {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  margin: 20px 0 0 0;
}

.planos-intro-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.planos-intro-sub {
  margin-top: 20px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: rgba(64, 39, 21, 0.65);
  line-height: 1.5;
}

.planos-stack {
  position: relative;
}

.plan-sticky {
  position: sticky;
  top: var(--nav-offset, 96px);
  height: calc(100vh - var(--nav-offset, 96px));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 40vh;
}

.plan-sticky:last-child {
  margin-bottom: 0;
}

.plan-sticky-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  width: 100%;
  max-width: 1400px;
  height: clamp(600px, calc(100vh - 80px), 980px);
  background: transparent;
  align-items: stretch;
}

.plan-sticky-left {
  position: relative;
  overflow: hidden;
}

.plan-sticky-img {
  width: 100%;
  height: 100%;
  border-radius: 4px 0 0 4px;
  overflow: hidden;
  /* área de cor do fundo ao redor da imagem */
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-sticky-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 2px;
}

.plan-sticky-right {
  display: flex;
  flex-direction: column;
  padding: 60px 48px 40px;
  background: inherit;
  border-radius: 0 4px 4px 0;
  border-left: 1px solid rgba(64, 39, 21, 0.05);
  overflow-y: auto;
  scrollbar-width: none;
}

.plan-sticky-right::-webkit-scrollbar {
  display: none;
}

.plan-sticky-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 16px;
}

.plan-sticky-header .section-label {
  margin-bottom: 0;
  /* Override generic margin */
  opacity: 0.6;
  min-width: 0;
}

.plan-sticky-num {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
  user-select: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.plan-sticky-badge {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid var(--gold);
  padding: 6px 14px;
  border-radius: 2px;
  width: auto;
  text-align: left;
}

.plan-sticky-badge--gold {
  background: var(--gold);
  color: #fff;
}

.plan-sticky-badge--white {
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.8);
}

.plan-sticky-name {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.plan-sticky-name em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.plan-sticky-div {
  height: 1px;
  background: var(--border);
  margin-bottom: 40px;
}

.plan-sticky-for {
  font-size: 16px;
  font-weight: 300;
  color: rgba(64, 39, 21, 0.6);
  line-height: 1.8;
}

.plan-sticky-for strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.plan-block {
  margin-top: 24px;
}

.plan-block-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.plan-block-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(64, 39, 21, 0.6);
  line-height: 1.6;
  margin: 0 0 4px 0;
}

.plan-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-block ul li {
  font-size: 15px;
  font-weight: 300;
  color: rgba(64, 39, 21, 0.7);
  line-height: 1.3;
  padding: 3px 0 3px 20px;
  position: relative;
}

.plan-block ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 16px;
  line-height: 1.5;
}

.plan-model {
  margin-top: auto;
  padding-top: 16px;
  margin-bottom: 8px;
  border-top: 1px solid rgba(64, 39, 21, 0.08);
}

.plan-model-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.plan-model ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-model ul li {
  font-size: 13px;
  font-weight: 300;
  color: rgba(64, 39, 21, 0.55);
  line-height: 1.6;
}

.plan-complementar {
  text-align: center;
  padding: 48px 60px;
  background: #f5f0e8;
  border-top: 1px solid rgba(64, 39, 21, 0.08);
}

.plan-complementar p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(64, 39, 21, 0.55);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.plan-complementar strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

/* Dark card overrides */
.plan-sticky-right--dark .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.plan-sticky-right--dark .plan-sticky-name {
  color: #ffffff;
}

.plan-sticky-right--dark .plan-sticky-name em {
  color: var(--gold);
}

.plan-sticky-right--dark .plan-sticky-div {
  background: rgba(255, 255, 255, 0.1);
}

.plan-sticky-right--dark .plan-block-label,
.plan-sticky-right--dark .plan-model-label {
  color: rgba(201, 169, 110, 0.8);
}

.plan-sticky-right--dark .plan-block-text,
.plan-sticky-right--dark .plan-block ul li,
.plan-sticky-right--dark .plan-model ul li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.plan-sticky-right--dark .plan-block ul li::before {
  color: var(--gold);
  content: '•';
  font-size: 16px;
}

.plan-sticky-right--dark .plan-model {
  border-top-color: rgba(255, 255, 255, 0.1);
}

/* STEFANI */
#stefani {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: var(--bg-tertiary);
}

.stefani-img-col {
  position: relative;
  overflow: hidden;
}

.stefani-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 600px;
  background: #c9b89a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(64, 39, 21, 0.4);
  font-size: var(--fs-small);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  line-height: 2;
}

.stefani-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  height: 100%;
  gap: 28px;
}

.stefani-title {
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-primary);
}

.stefani-title em {
  font-style: italic;
  color: var(--gold);
}

.stefani-bio {
  font-size: var(--fs-body);
  font-weight: 300;
  color: rgba(64, 39, 21, 0.7);
  line-height: 1.9;
}

.stefani-exp {
  margin-top: 8px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stefani-exp-label {
  font-size: var(--fs-body);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}

.stefani-exp-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stefani-exp-list li {
  font-size: var(--fs-body);
  font-weight: 300;
  color: rgba(64, 39, 21, 0.7);
  line-height: 1.9;
  padding-left: 16px;
  position: relative;
}

.stefani-exp-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

@media (max-width: 900px) {
  #stefani {
    grid-template-columns: 1fr;
  }

  .stefani-img-col {
    min-height: 400px;
  }

  .stefani-img-placeholder {
    min-height: 360px;
  }

  .stefani-content {
    padding: 60px 30px;
  }
}

/* BLOG */
#blog {
  padding: 140px 60px;
  background: var(--bg-primary);
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.blog-header h2 {
  font-size: var(--fs-h2);
  font-weight: 300;
  color: var(--text-primary);
}

.blog-link {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s;
  cursor: pointer;
}

.blog-link:hover {
  gap: 16px;
}

.blog-link::after {
  content: '→';
}

.blog-featured-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  margin-bottom: 2px;
}

.bpost {
  background: var(--bg-tertiary);
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background 0.4s;
}

.bpost:hover {
  background: var(--bg-secondary);
}

.bpost.big {
  grid-column: 1 / -1;
  padding: 80px 60px;
}

.blog-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.bpost.small {
  padding: 40px;
}

.post-img-placeholder {
  width: 100%;
  height: 240px;
  background-color: rgba(157, 123, 80, 0.08);
  /* slight gold tint on border/primary bg */
  margin-bottom: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(64, 39, 21, 0.3);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'IBM Plex Sans', sans-serif;
  overflow: hidden;
  transition: opacity 0.4s, transform 0.4s;
}

.post-img-placeholder::after {
  content: 'Imagem / Foto';
}

.post-img-placeholder.post-img-svg::after,
.post-img-placeholder:has(img)::after {
  content: '';
}

.post-img-placeholder.post-img-svg {
  padding: 0;
  background-color: transparent;
}

.bpost:hover .post-img-placeholder {
  opacity: 0.8;
}

.bpost.big .post-img-placeholder {
  height: 400px;
}

.post-cat {
  font-size: var(--fs-label);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-cat::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.post-h {
  font-family: 'IBM Plex Serif', serif;
  font-size: var(--fs-h4);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
  transition: color 0.3s;
  color: var(--text-primary);
}

.bpost:hover .post-h {
  color: var(--gold-pale);
}

.bpost.big .post-h {
  font-size: var(--fs-h3);
}

.bpost.small .post-h {
  font-size: var(--fs-h4);
}

.post-ex {
  font-size: var(--fs-small);
  font-weight: 300;
  color: rgba(64, 39, 21, 0.6);
  line-height: 1.8;
  flex: 1;
}

/* Mantém ícones/links do resumo na paleta da Olga (evita azul padrão do browser) */
.post-ex a,
.post-ex a:visited,
.post-ex a:hover,
.post-ex a:active {
  color: #9d7b50;
}

.post-ex a svg,
.post-ex a i,
.post-ex a [class*="icon"] {
  color: #9d7b50;
  fill: #9d7b50;
  stroke: #9d7b50;
}

.post-foot {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-auth {
  font-size: 11px;
  color: rgba(64, 39, 21, 0.5);
}

.post-dt {
  font-size: 11px;
  color: rgba(64, 39, 21, 0.4);
}

.post-arr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: transparent;
  color: var(--gold);
  border-radius: 4px;
  transition: transform 0.3s, background-color 0.3s;
}

#blog .post-arr,
#blog-page .post-arr,
.post-arr svg {
  color: #9d7b50;
  stroke: #9d7b50;
}

.post-arr svg * {
  stroke: #9d7b50;
}

.bpost:hover .post-arr {
  transform: translate(4px, -4px);
}

/* CONTATO */
#contato {
  padding: 140px 60px;
  background: var(--bg-secondary);
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.contato-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contato-header-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contato-header-right {
  display: flex;
  align-items: flex-start;
  padding-top: 58px;
}

.contato-title {
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-primary);
}

.contato-title em {
  font-style: italic;
  color: var(--gold);
}

.contato-p {
  font-size: var(--fs-body);
  font-weight: 300;
  color: rgba(64, 39, 21, 0.65);
  line-height: 1.9;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fg label {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(64, 39, 21, 0.5);
  font-weight: 400;
}

.fg input,
.fg select,
.fg textarea {
  background: rgba(157, 123, 80, 0.04);
  border: 1px solid var(--border);
  padding: 18px 22px;
  color: var(--text-primary);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
  width: 100%;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  background: rgba(157, 123, 80, 0.08);
}

.fg select option {
  background: var(--white);
}

.fg textarea {
  resize: none;
  height: 120px;
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(64, 39, 21, 0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-btn {
  padding: 20px 40px;
  background: var(--gold);
  color: var(--white);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  margin-top: 8px;
}

.form-btn:hover:not(:disabled) {
  background: var(--gold-pale);
}

.form-lgpd {
  font-size: 11px;
  color: rgba(64, 39, 21, 0.35);
  font-weight: 300;
  line-height: 1.7;
  text-align: center;
}

/* FOOTER */
footer {
  padding: 80px 60px 40px;
  background: #402715;
  border-top: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  column-gap: 180px;
  row-gap: 48px;
  margin-bottom: 60px;
  align-items: start;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  margin-bottom: 30px;
  display: block;
}

.footer-logo-t {
  font-family: 'IBM Plex Serif', serif;
  font-size: var(--fs-h3);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  color: #ffffff;
}

.footer-logo-s {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 24px;
}

.footer-desc {
  font-size: var(--fs-small);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.9;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
  min-height: 48px;
  display: flex;
  align-items: flex-start;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li {
  font-size: var(--fs-small);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col ul li a {
  font-size: var(--fs-small);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}

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

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}

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

/* BLOG PAGE */
#blog-page {
  display: none;
  padding: 140px 60px 80px;
  background: var(--bg-primary);
  min-height: 100vh;
}

#blog-page.active {
  display: block;
}

.bp-header {
  margin-top: 40px;
  margin-bottom: 80px;
}

.bp-header h1 {
  font-size: var(--fs-display);
  font-weight: 300;
  color: var(--text-primary);
}

.bp-header p {
  margin-top: 20px;
  font-size: var(--fs-body);
  font-weight: 300;
  color: rgba(64, 39, 21, 0.5);
  max-width: 500px;
  line-height: 1.8;
}

.filters {
  display: flex;
  gap: 8px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.fb {
  padding: 10px 24px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--border);
  color: rgba(64, 39, 21, 0.5);
  transition: all 0.3s;
  font-family: 'IBM Plex Sans', sans-serif;
}

.fb.active,
.fb:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.all-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

/* ARTICLE PAGE */
#article-page {
  display: none;
  min-height: 100vh;
  background: var(--bg-primary);
}

#article-page.active {
  display: block;
}

.art-nav {
  background: var(--bg-secondary);
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}

.art-hero {
  padding: 80px 60px 60px;
  background: var(--bg-secondary);
  max-width: 900px;
  margin: 0 auto;
}

.art-hero h1 {
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 32px;
  margin-top: 28px;
  color: var(--text-primary);
}

.art-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  margin-bottom: 40px;
  border-radius: 4px;
}

.art-hero .post-ex {
  font-size: var(--fs-h4);
  color: rgba(64, 39, 21, 0.65);
  line-height: 1.8;
}

.art-meta {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 40px;
  display: flex;
  gap: 40px;
}

.art-meta span {
  font-size: 11px;
  color: rgba(64, 39, 21, 0.45);
}

.art-meta strong {
  color: rgba(64, 39, 21, 0.7);
  font-weight: 400;
}

.art-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 60px;
  background: var(--bg-primary);
}

.art-body a {
  color: #9d7b50;
  text-decoration: underline;
}

.art-body p {
  font-size: var(--fs-body);
  font-weight: 300;
  color: rgba(64, 39, 21, 0.75);
  line-height: 2;
  margin-bottom: 28px;
}

.art-body h2 {
  font-family: 'IBM Plex Serif', serif;
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--text-primary);
  margin: 52px 0 24px;
  line-height: 1.3;
}

.art-body blockquote {
  border-left: 2px solid var(--gold);
  padding: 20px 36px;
  margin: 40px 0;
  background: rgba(157, 123, 80, 0.05);
}

.art-body blockquote p {
  font-family: 'IBM Plex Serif', serif;
  font-size: var(--fs-h4);
  font-style: italic;
  color: rgba(64, 39, 21, 0.8);
  margin: 0;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  transition: gap 0.3s;
}

.back:hover {
  gap: 16px;
}

.back::before {
  content: '←';
}

/* Paginação do blog */
.navigation.pagination .nav-links a,
.navigation.pagination .nav-links a.page-numbers {
  color: #9d7b50;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 0;
  transition: opacity 0.3s;
}

.navigation.pagination .nav-links a:hover {
  opacity: 0.7;
}

/* ANIMAÇÕES SCROLL */
.fu {
  opacity: 0;
  transform: translateY(500px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fu.v {
  opacity: 1;
  transform: translateY(0);
}

.fu.d1 {
  transition-delay: 0.1s;
}

.fu.d2 {
  transition-delay: 0.2s;
}

.fu.d3 {
  transition-delay: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .planos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  #etica {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .etica-sticky {
    position: static;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 20px 30px;
  }

  nav.scrolled {
    padding: 16px 30px;
  }

  .nav-links {
    display: none;
  }

  .nav-menu {
    display: block;
  }

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

  .nav-center {
    gap: 12px;
  }

  #hero {
    padding: 0 30px 60px;
  }

  #sobre,
  #contato {
    grid-template-columns: 1fr;
    padding: 80px 30px;
    gap: 60px;
  }

  .contato-header,
  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contato-header-right {
    padding-top: 0;
  }

  #nome,
  #etica,
  #metodologia,
  #planos,
  #blog,
  footer {
    padding: 80px 30px;
  }

  .svc-sticky-wrap {
    height: 50vh;
  }

  .svc-content {
    padding: 0 24px 80px;
    margin-top: -120px;
  }

  .svc-cards-grid {
    grid-template-columns: 1fr;
  }

  /* Sticky card stack — mobile */
  .svc-section {
    flex-direction: column;
    padding: 80px 24px;
    gap: 40px;
  }

  .svc-left-col {
    position: static;
    flex: unset;
  }

  .svc-right {
    padding-bottom: 60vh;
  }

  .svc-stack-card {
    margin-bottom: 20px;
    padding: 28px;
  }

  .svc-stack-card:last-child {
    margin-bottom: 0;
  }

  .steps-grid,
  .servicos-grid,
  .planos-grid {
    grid-template-columns: 1fr;
  }

  #planos {
    height: auto !important;
    overflow: visible !important;
    padding: 60px 16px 80px !important;
  }

  .planos-intro {
    padding: 20px 0 40px !important;
  }

  .planos-intro-sub {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  .plan-sticky {
    position: relative !important;
    top: 0 !important;
    height: auto !important;
    overflow: visible !important;
    margin-bottom: 32px;
    opacity: 1 !important;
    transform: none !important;
    border-radius: 12px;
    overflow: hidden;
  }

  .plan-sticky-inner {
    display: flex;
    flex-direction: column;
    height: auto !important;
    min-height: unset !important;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
  }

  .plan-sticky-left {
    height: 280px !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .plan-sticky-img {
    height: 100% !important;
    width: 100% !important;
    padding: 20px 16px 8px !important;
    border-radius: 12px 12px 0 0 !important;
  }

  .plan-sticky-img img {
    border-radius: 8px;
    object-position: center top;
  }

  .plan-sticky-right {
    padding: 32px 24px 48px !important;
    height: auto !important;
    overflow: visible !important;
    border-left: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .plan-sticky-header {
    margin-bottom: 16px;
  }

  .plan-sticky-num {
    font-size: 40px !important;
  }

  .plan-sticky-header .section-label {
    font-size: 10px;
  }

  .plan-sticky-name {
    font-size: 22px !important;
    margin-bottom: 20px !important;
  }

  .plan-sticky-div {
    margin-bottom: 20px;
  }

  .plan-block {
    margin-top: 18px;
  }

  .plan-block-label,
  .plan-model-label {
    font-size: 9px;
    letter-spacing: 0.18em;
    margin-bottom: 6px;
  }

  .plan-block-text {
    font-size: 14px;
    line-height: 1.65;
  }

  .plan-block ul li,
  .plan-model ul li {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 4px;
  }

  .plan-model {
    margin-top: 24px;
    padding-top: 16px;
    margin-bottom: 8px;
  }

  .plan-sticky-badge {
    font-size: 10px;
    padding: 5px 14px;
    margin-bottom: 12px;
  }

  .blog-featured-row,
  .blog-row2,
  .all-posts {
    grid-template-columns: 1fr;
  }

  .blog-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

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

  #blog-page {
    padding: 120px 30px 80px;
  }

  .art-hero {
    padding: 80px 30px 60px;
  }

  .art-body {
    padding: 60px 30px;
  }
}

/* PLANOS — ajuste para telas grandes (1440px+, Full HD 1920px)
   Calculado para caber em viewport ~950px de altura (1920x1080 com chrome do browser).
   Inner = calc(100vh - 80px) ≈ 870px → content area = 870 - 40px padding = 830px.
   Card mais carregado (Essential Wealth, 7 itens) precisa de ~710px de conteúdo → folga de ~120px. */
@media (min-width: 1440px) {
  .plan-sticky-inner {
    max-width: min(calc(100% - 80px), 1700px);
    height: clamp(600px, calc(100vh - 80px), 1200px);
  }

  .plan-sticky-num {
    font-size: clamp(40px, 3vw, 48px);
  }

  .plan-sticky-name {
    font-size: clamp(22px, 2.5vw, 28px);
    margin-bottom: 8px;
  }

  .plan-sticky-right {
    padding: 60px 48px 20px;
  }

  .plan-sticky-header {
    margin-bottom: 10px;
  }

  .plan-sticky-badge {
    margin-bottom: 10px;
  }

  .plan-sticky-div {
    margin-bottom: 8px;
  }

  .plan-block {
    margin-top: 6px;
  }

  .plan-block ul li {
    padding: 4px 0 4px 20px;
    line-height: 1.6;
  }

  .plan-model {
    margin-top: 10px;
    padding-top: 8px;
    margin-bottom: 2px;
  }
}

/* =========================================
   LGPD BANNER
   ========================================= */
.lgpd-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lgpd-overlay.lgpd-show {
  opacity: 1;
  pointer-events: auto;
}

.lgpd-banner {
  background: var(--bg-primary, #ffffff);
  width: 100%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  padding: 32px 60px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.15);
}

.lgpd-overlay.lgpd-show .lgpd-banner {
  transform: translateY(0);
}

.lgpd-body {
  overflow-y: auto;
  padding-right: 8px;
  margin-bottom: 24px;
}

.lgpd-body::-webkit-scrollbar {
  width: 4px;
}

.lgpd-body::-webkit-scrollbar-track {
  background: transparent;
}

.lgpd-body::-webkit-scrollbar-thumb {
  background: rgba(64, 39, 21, 0.2);
  border-radius: 4px;
}

.lgpd-body p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(64, 39, 21, 0.8);
  line-height: 1.6;
  margin: 0;
}

.lgpd-link {
  color: #ff7b00;
  text-decoration: underline;
  transition: opacity 0.3s;
}

.lgpd-link:hover {
  opacity: 0.8;
}

.lgpd-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(64, 39, 21, 0.1);
}

.lgpd-btn-secondary {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: rgba(64, 39, 21, 0.7);
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid rgba(64, 39, 21, 0.2);
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
  background: transparent;
}

.lgpd-btn-secondary:hover {
  background: rgba(64, 39, 21, 0.05);
  color: rgba(64, 39, 21, 1);
}

.lgpd-btn-primary {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  background: var(--gold, #9d7b50);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.lgpd-btn-primary:hover {
  background: var(--gold-hover, #8a6c46);
}

@media (max-width: 600px) {
  .nav-logo-img {
    height: 40px !important;
  }

  nav {
    padding: 15px 20px;
  }

  .nome-inner {
    padding: 40px 20px;
  }

  .nome-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .nome-text {
    font-size: 15px;
  }

  .nome-text br {
    display: none;
    /* Remove forced breaks on mobile */
  }

  .lgpd-banner {
    padding: 24px 24px;
  }

  .lgpd-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lgpd-btn-secondary,
  .lgpd-btn-primary {
    width: 100%;
    text-align: center;
  }
}