:root {
  --bg: #14130F;
  --bg-alt: #1B1916;
  --bg-soft: #1F1D19;
  --gold: #BF8E26;
  --gold-bright: #D9A536;
  --champagne: #E5BC52;
  --off-white: #F5F1E8;
  --sand: #C9BFAA;
  --beige: #A89F90;
  --text: #B5AC9E;
  --muted: #6B665C;
  --line: rgba(184, 149, 107, 0.14);
  --line-strong: rgba(184, 149, 107, 0.3);
  --radius: 14px;
  --radius-lg: 22px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
  font-size: 16px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* Typography — modern grotesque */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  color: var(--off-white);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: -0.038em;
  line-height: 1.08;
}
h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

p {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
}

a {
  color: var(--gold-bright);
  text-decoration: none;
  transition: color 0.4s ease;
}
a:hover { color: var(--off-white); }

.gold {
  color: var(--gold-bright);
}

/* Eyebrow with editorial number "(01)" */
.eyebrow {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: inline-block;
  position: relative;
}

/* Section numbering counter */
body { counter-reset: section; }
section .section-head .eyebrow::before,
section:not(.hero) .container > .eyebrow::before,
section .bevellare-center .eyebrow::before,
.cta-block .eyebrow::before {
  /* placeholder, real numbering below via individual sections */
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(20, 19, 15, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  padding: 1.3rem 0;
  transition: padding 0.3s ease;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--off-white);
  text-transform: uppercase;
}
.logo span {
  color: var(--gold);
  font-weight: 400;
  margin-left: 0.4em;
}

.nav-main {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  flex-wrap: nowrap;
  align-items: center;
}
.nav-main li { flex-shrink: 0; }
.nav-main a {
  color: var(--sand);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.nav-main a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}
.nav-main a:hover,
.nav-main a.active { color: var(--off-white); }
.nav-main a:hover::after,
.nav-main a.active::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--off-white);
  font-size: 1.4rem;
  cursor: pointer;
}

/* Pill buttons with arrow circle */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 8px 8px 8px 26px;
  border: 1px solid var(--gold);
  color: var(--off-white);
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}
.btn::after {
  content: '→';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  font-size: 1rem;
  font-weight: 400;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.4s ease;
}
.btn:hover {
  background: var(--gold);
  color: var(--bg);
}
.btn:hover::after {
  background: var(--bg);
  color: var(--gold);
  transform: translateX(4px);
}
.btn-primary {
  background: var(--off-white);
  color: var(--bg);
  border-color: var(--off-white);
}
.btn-primary::after { background: var(--bg); color: var(--off-white); }
.btn-primary:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-primary:hover::after { background: var(--bg); color: var(--gold); }

/* Sections */
section { padding: 8rem 0; position: relative; }

.section-head {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 5rem;
  max-width: 100%;
}
.section-head .eyebrow {
  margin: 0;
  padding-top: 0.5rem;
}
.section-head h2 { margin-bottom: 1.25rem; }
.section-head p {
  font-size: 1.05rem;
  color: var(--beige);
  line-height: 1.75;
  max-width: 620px;
  font-weight: 300;
}
.section-head[style*="text-align:center"] {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px !important;
}
.section-head[style*="text-align:center"] p {
  margin: 0 auto;
  max-width: 640px;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--sand);
}

/* Section numbering: prepend "(01)" to eyebrows */
.section-head .eyebrow,
.bevellare-center .eyebrow,
.cta-block .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-head .eyebrow::before,
.bevellare-center .eyebrow::before,
.cta-block .eyebrow::before {
  counter-increment: section;
  content: "(0" counter(section) ")";
  color: var(--gold);
  opacity: 0.7;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 2px;
}

/* Hero */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 180px 0 130px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('fundotopo.png') center / cover no-repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: 12%; right: -8%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(184, 149, 107, 0.13) 0%, transparent 65%);
  filter: blur(90px);
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}
.hero-content { position: relative; order: 2; }
.hero-image { order: 1; }
.hero h1 {
  margin-bottom: 1.75rem;
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}
.hero .eyebrow {
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 0.62rem;
  letter-spacing: 2.5px;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  color: var(--beige);
  max-width: 500px;
  font-weight: 300;
}
.hero-image { max-width: 420px; position: relative; }

/* Watermark editorial gigante */
.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(8rem, 22vw, 22rem);
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(191, 142, 38, 0.10);
  text-stroke: 1px rgba(191, 142, 38, 0.10);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  user-select: none;
}

/* Texto vertical lateral */
.hero-vertical {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
  font-weight: 500;
}
.hero-vertical::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 16px;
  opacity: 0.8;
}

/* Foto: moldura editorial */
.hero-image-frame {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(191, 142, 38, 0.35);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.015);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(191, 142, 38, 0.06) inset;
}
.hero-image-frame::before {
  content: "";
  position: absolute;
  top: -8px; left: -8px;
  width: 60px; height: 60px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0.6;
}
.hero-image-frame::after {
  content: "";
  position: absolute;
  bottom: -8px; right: -8px;
  width: 60px; height: 60px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: 0.6;
}
.hero-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  filter: grayscale(15%) contrast(1.03);
}

/* Selo circular */
.hero-seal {
  position: absolute;
  top: -34px;
  right: -34px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.hero-seal::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(191, 142, 38, 0.55);
  border-radius: 50%;
  pointer-events: none;
}
.hero-seal img {
  width: 64%;
  height: 64%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 50%;
}

/* Caption flutuante */
.hero-caption {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  padding: 6px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  white-space: nowrap;
  font-weight: 400;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 2;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 50%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--gold-bright));
  animation: scrollDown 2.2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

@media (max-width: 980px) {
  .hero-vertical, .hero-watermark { display: none; }
  .hero-seal { width: 84px; height: 84px; top: -22px; right: -22px; }
  .hero-scroll { display: none; }
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-content .eyebrow { align-self: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-image { margin: 0 auto; }
}

/* ============================================
   UTILITÁRIOS EDITORIAIS (reutilizáveis)
   ============================================ */

/* Watermark de seção: palavra gigante em outline */
.section-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(7rem, 18vw, 18rem);
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(191, 142, 38, 0.08);
  text-stroke: 1px rgba(191, 142, 38, 0.08);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  user-select: none;
}
.section-watermark--light {
  -webkit-text-stroke: 1px rgba(138, 109, 46, 0.12);
  text-stroke: 1px rgba(138, 109, 46, 0.12);
}

/* Container que aceita watermark */
.has-watermark { position: relative; overflow: hidden; }
.has-watermark > .container,
.has-watermark > * { position: relative; z-index: 1; }

/* Moldura editorial com cantos dourados */
.editorial-frame {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(191, 142, 38, 0.35);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.015);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.editorial-frame::before,
.editorial-frame::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: 0.6;
}
.editorial-frame::before {
  top: -8px; left: -8px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.editorial-frame::after {
  bottom: -8px; right: -8px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.editorial-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  filter: grayscale(15%) contrast(1.03);
}

/* Marcador de seção lateral (S/01, S/02...) */
.section-marker {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.55;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
  font-weight: 500;
}
.section-marker::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
  opacity: 0.7;
}
.section-marker--light { color: #8A6D2E; opacity: 0.7; }
.section-marker--light::before { background: #8A6D2E; }

/* Pílula caption flutuante */
.editorial-caption {
  display: inline-block;
  background: var(--bg);
  padding: 6px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  white-space: nowrap;
  font-weight: 400;
}
.editorial-caption--floating {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
}

/* Selo circular reutilizável */
.editorial-seal {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.editorial-seal::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(191, 142, 38, 0.45);
  border-radius: 50%;
  pointer-events: none;
}
.editorial-seal-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--off-white);
  line-height: 1;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Divisor de seção arquitetural */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  margin: 0;
  height: 80px;
  background: var(--bg);
  position: relative;
}
.section-divider::before,
.section-divider::after {
  content: "";
  width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.section-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Seção número (canto superior direito) */
.section-tag {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  z-index: 2;
  font-weight: 500;
}
.section-tag--light { color: #8A6D2E; opacity: 0.7; }
.section-tag::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 14px;
  opacity: 0.6;
}

@media (max-width: 980px) {
  .section-watermark, .section-marker, .section-tag { display: none; }
  .editorial-frame::before, .editorial-frame::after { width: 36px; height: 36px; }
}

/* Hero button: dark with gold arrow circle (Velora-style) */
.hero .btn,
.hero .btn-primary {
  background: var(--bg-alt);
  color: var(--off-white);
  border: 1px solid var(--line-strong);
}
.hero .btn::after,
.hero .btn-primary::after {
  background: var(--gold);
  color: var(--bg);
}
.hero .btn:hover,
.hero .btn-primary:hover {
  background: var(--bg-soft);
  color: var(--off-white);
  border-color: var(--gold);
}
.hero .btn:hover::after,
.hero .btn-primary:hover::after {
  background: var(--off-white);
  color: var(--bg);
  transform: translateX(4px);
}
.hero-image {
  position: relative;
  isolation: isolate;
}
.hero-image::before {
  content: '';
  position: absolute;
  top: -8%; left: -8%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(217, 165, 54, 0.45) 0%, transparent 70%);
  filter: blur(60px);
  z-index: -1;
  border-radius: 50%;
}
.hero-image::after {
  content: '';
  position: absolute;
  bottom: -15%; right: -10%;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(217, 165, 54, 0.28) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  border-radius: 50%;
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  filter: grayscale(15%) contrast(1.02);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(217, 165, 54, 0.12);
  position: relative;
  z-index: 1;
}

/* Marquee */
.marquee {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 1.4rem 0;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee-scroll 50s linear infinite;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--off-white);
}
.marquee-track .dot {
  color: var(--gold);
  font-size: 0.4rem;
  vertical-align: middle;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sobre */
#sobre { position: relative; overflow: hidden; }
#sobre::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('fundotopo.png') center / cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
#sobre .container { position: relative; z-index: 1; }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sobre-image { order: 2; }
.sobre-content { order: 1; }
.sobre-image .editorial-frame { max-width: 480px; margin: 0 auto; }
.sobre-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 2.25rem;
  color: var(--beige);
  max-width: 540px;
  font-weight: 300;
}

/* Números */
.numeros {
  background: var(--bg-alt);
  padding: 6rem 0 7rem;
  position: relative;
  overflow: hidden;
}
.numeros::before {
  content: "";
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(184, 149, 107, 0.06) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}

/* Cabeçalho dos stamps */
.stamps-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.stamps-eyebrow,
.stamps-caption {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.stamps-caption { color: var(--sand); }
.stamps-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* Grid de stamps */
.stamps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  justify-items: center;
}

/* Stamp individual */
.stat-stamp {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 200px;
  border-radius: 50%;
  border: 1px solid rgba(191, 142, 38, 0.35);
  background: radial-gradient(circle at 30% 30%, rgba(191,142,38,0.05), transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease;
}
.stat-stamp::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(191, 142, 38, 0.3);
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.stat-stamp:hover {
  transform: translateY(-6px);
  border-color: rgba(191, 142, 38, 0.6);
}
.stat-stamp:hover .stat-stamp-ring { animation-duration: 14s; }

/* Texto circular ao redor */
.stat-stamp-ring {
  position: absolute;
  inset: -8px;
  display: block;
  pointer-events: none;
  animation: stampRotate 38s linear infinite;
}
.stat-stamp-ring-text {
  width: 100%;
  height: 100%;
  display: block;
}
.stat-stamp-ring-text text {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.32em;
  fill: var(--gold);
  opacity: 0.55;
  text-transform: uppercase;
  font-weight: 500;
}
@keyframes stampRotate {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

/* Conteúdo central */
.stat-stamp-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  color: var(--off-white);
  letter-spacing: -0.04em;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.stat-stamp-num em {
  font-style: normal;
  font-size: 0.6em;
  color: var(--gold);
  font-weight: 400;
  margin-left: 1px;
  vertical-align: 20%;
}
.stat-stamp-unit {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  margin-top: 0.3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.stat-stamp-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 0.75rem;
  max-width: 120px;
  line-height: 1.45;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .stamps-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .numeros { padding: 4.5rem 0 5.5rem; }
}
@media (max-width: 480px) {
  .stamps-grid { grid-template-columns: 1fr; max-width: 320px; }
  .stamps-head { gap: 1rem; }
  .stamps-divider { display: none; }
}

/* Pra quem é — light section */
#praquem {
  background: #E8DFCE;
  color: #2A2620;
}
#praquem .section-head .eyebrow { color: #8A6D2E; }
#praquem .section-head .eyebrow::before { color: #8A6D2E; opacity: 0.8; }
#praquem .section-head h2 { color: #1F1C17; }
#praquem .section-head p { color: #5C544A; }
/* ============================================
   PRA QUEM É — 2 cards com identidades distintas
   ============================================ */
.praquem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  align-items: stretch;
}
.praquem-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  padding: 3rem 2.75rem;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.5s ease,
              border-color 0.4s ease;
}

/* TOPO DE CADA CARD */
.praquem-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.praquem-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.praquem-icon svg { width: 22px; height: 22px; }
.praquem-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.praquem-title {
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 1rem;
  position: relative;
  z-index: 1;
}
.praquem-desc {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.75rem;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* CTA padrão */
.praquem-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: auto;
  padding-top: 1.5rem;
  position: relative;
  z-index: 1;
}
.praquem-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid;
  font-size: 0.9rem;
  letter-spacing: 0;
  transition: all 0.4s ease;
}

/* ============ CARD EMPRESAS — corporativo/estrutural ============ */
.praquem-card--empresas {
  background: linear-gradient(160deg, #FAF5E9 0%, #F0E7D1 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #2A2620;
}
.praquem-card--empresas::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #8A6D2E 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.praquem-card--empresas:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 30px 50px rgba(60, 40, 10, 0.12);
}
.praquem-card--empresas:hover::before { opacity: 1; }

.praquem-icon--empresas {
  background: rgba(138, 109, 46, 0.1);
  border: 1px solid rgba(138, 109, 46, 0.3);
  color: #8A6D2E;
}
.praquem-tag--empresas {
  background: rgba(31, 28, 23, 0.04);
  border: 1px solid rgba(31, 28, 23, 0.15);
  color: #3A332A;
}
.praquem-title--empresas {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: #1F1C17;
}
.praquem-card--empresas .praquem-desc { color: #5C544A; }

/* Grid de tags corporativas */
.praquem-tags-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}
.praquem-tags-grid span {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  padding: 8px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-align: center;
  color: #3A332A;
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* Lista de entregáveis */
.praquem-entregas {
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}
.praquem-entregas-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8A6D2E;
  font-weight: 500;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(138, 109, 46, 0.18);
}
.praquem-entregas ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.praquem-entregas li {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #3A332A;
  font-weight: 400;
  padding-left: 1.3rem;
  position: relative;
}
.praquem-entregas li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 8px; height: 1px;
  background: #8A6D2E;
}

.praquem-cta--empresas { color: #8A6D2E; }
.praquem-cta--empresas .praquem-cta-arrow {
  border-color: rgba(138, 109, 46, 0.4);
  color: #8A6D2E;
}
.praquem-card--empresas:hover .praquem-cta-arrow {
  background: #8A6D2E;
  color: #FAF5E9;
  border-color: #8A6D2E;
  transform: translateX(4px);
}

/* ============ CARD LÍDERES — premium/intimista ============ */
.praquem-card--lideres {
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 60%),
    linear-gradient(160deg, #1A1714 0%, #14110D 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--off-white);
}
.praquem-card--lideres::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
}
.praquem-card--lideres::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.praquem-card--lideres:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.praquem-card--lideres:hover::after { opacity: 1; }

/* Selo decorativo BE VELLARE no canto */
.praquem-seal-lid {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid rgba(212, 175, 55, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transform: rotate(8deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.praquem-seal-lid::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(212, 175, 55, 0.4);
  border-radius: 50%;
}
.praquem-seal-lid-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 1rem;
}
.praquem-seal-lid-top {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #E5BC52;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.praquem-seal-lid-mid {
  font-family: 'Inter', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 4px;
}
.praquem-seal-lid-bot {
  font-family: 'Inter', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  color: var(--sand);
  text-transform: uppercase;
  font-weight: 400;
  max-width: 76px;
  line-height: 1.3;
}
.praquem-card--lideres:hover .praquem-seal-lid {
  transform: rotate(-4deg) scale(1.05);
}

.praquem-icon--lideres {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #E5BC52;
}
.praquem-tag--lideres {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #E5BC52;
}
.praquem-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D4AF37;
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.65);
  animation: nr1Pulse 2s ease-out infinite;
}

.praquem-title--lideres {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.85rem, 3.2vw, 2.4rem);
  color: var(--off-white);
}
.praquem-title--lideres em {
  font-style: normal;
  color: #D4AF37;
  font-weight: 400;
  margin: 0 0.15em;
}
.praquem-desc--lideres { color: var(--beige); max-width: 92%; }

.praquem-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #E5BC52;
  line-height: 1.45;
  margin: 0 0 1.75rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(212, 175, 55, 0.4);
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.praquem-entregas--lideres .praquem-entregas-label {
  color: #D4AF37;
  border-bottom-color: rgba(212, 175, 55, 0.25);
}
.praquem-entregas--lideres li { color: var(--sand); }
.praquem-entregas--lideres li::before { background: #D4AF37; }

.praquem-cta--lideres { color: #E5BC52; }
.praquem-cta--lideres .praquem-cta-arrow {
  border-color: rgba(212, 175, 55, 0.5);
  color: #E5BC52;
}
.praquem-card--lideres:hover .praquem-cta-arrow {
  background: #D4AF37;
  color: #14110D;
  border-color: #D4AF37;
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .praquem-grid { grid-template-columns: 1fr; }
  .praquem-card { padding: 2.5rem 2rem; }
  .praquem-seal-lid { width: 100px; height: 100px; top: -18px; right: -18px; }
  .praquem-seal-lid-top { font-size: 0.85rem; }
  .praquem-seal-lid-mid, .praquem-seal-lid-bot { font-size: 0.45rem; }
  .praquem-tags-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Banner full-width */
.banner-full {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: var(--bg);
}
.banner-full img {
  width: 100%;
  height: 85vh;
  display: block;
  object-fit: cover;
}

/* BE VELLARE */
.bevellare {
  background:
    radial-gradient(ellipse at top right, rgba(184, 149, 107, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #0d0c09 0%, #14130F 100%);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
  padding: 14rem 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.bevellare-center {
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.bevellare-center h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
}

/* BE VELLARE expanded (in-page) */
.bevellare-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4.5rem;
  position: relative;
  z-index: 1;
}
.bevellare-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  margin-bottom: 1.5rem;
}
.bevellare-head p {
  font-size: 1.05rem;
  color: var(--beige);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 300;
}
.bevellare-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
}
.bevellare-col {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}
.bevellare-col-eyebrow {
  display: block;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.bevellare-col ul {
  list-style: none;
  padding: 0;
}
.bevellare-col li {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  padding: 0.6rem 0 0.6rem 1.2rem;
  position: relative;
  font-weight: 300;
}
.bevellare-col li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.15rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}
.bevellare-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.bevellare-link {
  color: var(--sand);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.bevellare-link:hover { color: var(--gold); }

/* Como funciona / Método */
.metodo {
  background: var(--bg-alt);
}
.metodo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.metodo-step {
  position: relative;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.metodo-num {
  position: absolute;
  top: -0.6rem;
  left: 0;
  background: var(--bg-alt);
  padding-right: 1rem;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.metodo-step h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--off-white);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.metodo-step p {
  font-size: 0.94rem;
  color: var(--beige);
  line-height: 1.7;
  font-weight: 300;
}

@media (max-width: 980px) {
  .bevellare-cols { grid-template-columns: 1fr; gap: 1rem; max-width: 540px; }
  .metodo-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}
@media (max-width: 600px) {
  .metodo-grid { grid-template-columns: 1fr; }
}
.bevellare-center .eyebrow {
  margin-bottom: 1.5rem;
}
.bevellare-logo {
  max-width: 230px;
  height: auto;
  margin: 1rem auto 2.25rem;
  display: block;
  filter: brightness(1.08);
}
.bevellare-logo-big {
  max-width: clamp(340px, 42vw, 560px);
  margin: 2.5rem auto 2rem;
}
.bevellare-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--beige);
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}
.modal.open {
  display: flex;
  animation: modalFade 0.35s ease;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 5, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-card {
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(184, 149, 107, 0.1) 0%, transparent 60%),
    var(--bg-alt);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3.5rem 3rem 3rem;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
  animation: modalRise 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalRise {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 36px; height: 36px;
  color: var(--off-white);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease;
}
.modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(90deg);
}
.modal-head {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.modal-logo {
  max-width: 200px;
  margin: 0 auto 1.5rem;
  display: block;
  filter: brightness(1.08);
}
.modal-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.modal-head h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.modal-head p {
  font-size: 1rem;
  color: var(--beige);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
  font-weight: 300;
}
.modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.modal-block-eyebrow {
  display: block;
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}
.modal-block ul {
  list-style: none;
  padding: 0;
}
.modal-block li {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
  padding: 0.5rem 0 0.5rem 1.1rem;
  position: relative;
  font-weight: 300;
}
.modal-block li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.05rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}
.modal-cta {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.modal-link {
  color: var(--sand);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.modal-link:hover { color: var(--gold); }

@media (max-width: 768px) {
  .modal-card { padding: 3rem 1.5rem 2rem; }
  .modal-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.bevellare-center h2 {
  margin-bottom: 1.75rem;
}
.bevellare-center h2 em,
.bevellare-center .gold {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
}
.bevellare-center p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--beige);
  margin: 0 auto 2.75rem;
  max-width: 780px;
  font-weight: 300;
}

/* Prova social */
.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 4rem;
  max-width: 1000px;
  margin: 0 auto 8rem;
}
.logos-row span {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  color: var(--sand);
  opacity: 0.5;
  transition: opacity 0.4s ease, color 0.4s ease;
  text-transform: uppercase;
}
.logos-row span:hover {
  opacity: 1;
  color: var(--off-white);
}

.depoimento-carrossel {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  min-height: 240px;
  background: rgba(255, 255, 255, 0.012);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem 3rem;
}
.depoimento-slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  pointer-events: none;
}
.depoimento-slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}
.depoimento { text-align: center; }
.depoimento p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  letter-spacing: -0.025em;
  line-height: 1.4;
  color: var(--off-white);
  margin-bottom: 2rem;
  position: relative;
}
.depoimento p::before {
  content: '"';
  display: block;
  font-size: 4rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.45;
  margin-bottom: 1rem;
  font-style: normal;
}
.depoimento-autor strong {
  display: block;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.depoimento-autor span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.depoimento-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
}
.dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(184, 149, 107, 0.25);
  cursor: pointer;
  padding: 0;
  transition: all 0.4s ease;
}
.dot-btn.active {
  background: var(--gold);
  transform: scale(1.4);
}
.dot-btn:hover { background: var(--champagne); }

/* Mídia */
.midia {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.midia .logos-row {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Conteúdos — light section */
#conteudos {
  background: #E8DFCE;
  color: #2A2620;
}
#conteudos .section-head .eyebrow { color: #8A6D2E; }
#conteudos .section-head .eyebrow::before { color: #8A6D2E; opacity: 0.8; }
#conteudos .section-head h2 { color: #1F1C17; }
#conteudos .section-head p { color: #5C544A; }
.conteudos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.conteudos-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}
.conteudo-card {
  background: #FAF5E9;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  color: #2A2620;
}
.conteudo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(138, 109, 46, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.conteudo-card:hover {
  border-color: #8A6D2E;
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
.conteudo-card:hover::before { opacity: 1; }
.conteudo-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #8A6D2E;
  opacity: 0.55;
  font-weight: 400;
}
.conteudo-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(138, 109, 46, 0.08);
  border: 1px solid rgba(138, 109, 46, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #8A6D2E;
  transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.conteudo-icon-box svg { width: 24px; height: 24px; }
.conteudo-card:hover .conteudo-icon-box {
  background: #8A6D2E;
  color: #FAF5E9;
  border-color: #8A6D2E;
  transform: scale(1.04);
}
.conteudo-card .card-eyebrow {
  color: #8A6D2E;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}
.conteudo-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #1F1C17;
  margin-bottom: 0.7rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.conteudo-card p {
  font-size: 0.92rem;
  color: #5C544A;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}
.conteudo-card .card-link {
  color: #8A6D2E;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(138, 109, 46, 0.18);
}
.conteudo-card .card-link::after {
  content: '→';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(138, 109, 46, 0.35);
  color: #8A6D2E;
  font-size: 0.8rem;
  transition: all 0.4s ease;
}
.conteudo-card:hover .card-link::after {
  background: #8A6D2E;
  color: #FAF5E9;
  border-color: #8A6D2E;
  transform: translateX(3px);
}

/* ============================================
   FAQ EDITORIAL — accordion custom
   ============================================ */
.faq-editorial {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-row {
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.4s ease;
}
.faq-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-row.open::before { transform: scaleY(1); }
.faq-row.open { background: rgba(191, 142, 38, 0.025); }

.faq-row-head {
  display: grid;
  grid-template-columns: 80px 1fr 50px;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 1.5rem 2rem 2rem;
  cursor: pointer;
  user-select: none;
}
.faq-row-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}
.faq-row.open .faq-row-num { opacity: 1; }
.faq-row-q {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--off-white);
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.25;
  transition: color 0.4s ease;
}
.faq-row.open .faq-row-q { color: var(--gold-bright); }

/* Toggle "+" custom em duas linhas */
.faq-row-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(191, 142, 38, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  justify-self: end;
  flex-shrink: 0;
}
.faq-toggle-line {
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
}
.faq-toggle-h { width: 12px; height: 1px; }
.faq-toggle-v { width: 1px; height: 12px; }
.faq-row.open .faq-row-toggle {
  background: var(--gold);
  border-color: var(--gold);
}
.faq-row.open .faq-toggle-line { background: var(--bg); }
.faq-row.open .faq-toggle-v { transform: rotate(90deg); opacity: 0; }

/* Corpo da resposta */
.faq-row-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-row-body p {
  font-size: 1rem;
  color: var(--beige);
  margin: 0;
  padding: 0 2rem 2.25rem calc(80px + 1.5rem + 2rem);
  line-height: 1.8;
  font-weight: 300;
  max-width: 760px;
}

@media (max-width: 768px) {
  .faq-row-head {
    grid-template-columns: 1fr 40px;
    grid-template-areas: "num toggle" "q toggle";
    gap: 0.4rem 1rem;
    padding: 1.5rem 1rem 1.5rem 1.5rem;
  }
  .faq-row-num { grid-area: num; }
  .faq-row-q { grid-area: q; font-size: 1.15rem; }
  .faq-row-toggle { grid-area: toggle; align-self: start; margin-top: 0.5rem; }
  .faq-row-body p { padding: 0 1rem 1.75rem 1.5rem; font-size: 0.95rem; }
}

/* CTA Block */
.cta-block {
  text-align: center;
  padding: 9rem 2rem;
  background:
    radial-gradient(ellipse at center, rgba(184, 149, 107, 0.1) 0%, transparent 60%),
    var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.cta-block > .container { max-width: 760px; }
.cta-block .eyebrow {
  margin-bottom: 1.5rem;
}
.cta-block h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}
.cta-block p {
  max-width: 580px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--beige);
}

/* SOBRE */
/* Image placeholder (slots vazios pra colocar depois) */
.img-placeholder {
  position: relative;
  background:
    radial-gradient(circle at 30% 30%, rgba(184, 149, 107, 0.04), transparent 60%),
    linear-gradient(160deg, #1A1714 0%, #14110D 100%);
  border: 1px solid rgba(184, 149, 107, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-placeholder::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 1px;
  background: rgba(184, 149, 107, 0.2);
}
.img-placeholder::after {
  content: "";
}

/* Sobre Hero */
.sobre-hero {
  padding: 180px 0 6rem;
  position: relative;
  overflow: hidden;
}
.sobre-hero::before {
  content: '';
  position: absolute;
  top: 15%; right: -8%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184, 149, 107, 0.1) 0%, transparent 65%);
  filter: blur(80px);
  z-index: 0;
}
.sobre-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1240px;
}
.sobre-hero-content h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.sobre-credentials {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
  margin-bottom: 2.5rem;
}
.sobre-quote {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  color: var(--gold);
  margin-bottom: 2rem;
  line-height: 1.4;
  letter-spacing: -0.015em;
}
.sobre-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--beige);
  margin-bottom: 2.5rem;
  max-width: 480px;
  font-weight: 300;
}
.sobre-hero-image {
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.sobre-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) contrast(1.04);
}

/* Sobre sections base */
.sobre-section { padding: 8rem 0; }
.sobre-section.section-dark { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Trajetória */
.trajetoria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.trajetoria-step {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.trajetoria-step:hover {
  border-color: var(--line-strong);
  transform: translateY(-5px);
}
.trajetoria-num {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.trajetoria-step h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--off-white);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.trajetoria-step p {
  font-size: 0.95rem;
  color: var(--beige);
  line-height: 1.7;
  font-weight: 300;
}

/* Números */
.sobre-numeros {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 5rem 0;
}
.sobre-numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.sobre-numeros-grid .numero-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  padding: 0 1rem;
  position: relative;
}
.sobre-numeros-grid .numero-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 18%;
  height: 64%;
  width: 1px;
  background: var(--line);
}

/* SPIRA */
.spira-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.spira-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0 0 2rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.spira-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-5px);
}
.spira-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 1.75rem;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
}
.spira-card-img img {
  max-width: 75%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1) opacity(0.9);
}
.spira-card .card-eyebrow {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 1.75rem 0.7rem;
}
.spira-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--off-white);
  margin: 0 1.75rem 0.8rem;
  letter-spacing: -0.025em;
}
.spira-card p {
  font-size: 0.92rem;
  color: var(--beige);
  margin: 0 1.75rem;
  line-height: 1.65;
  font-weight: 300;
}

/* Linhas de atuação */
.linhas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.linhas-grid .linha {
  flex: 0 1 calc((100% - 3rem) / 3);
  min-width: 260px;
  max-width: 360px;
}
@media (max-width: 980px) {
  .linhas-grid .linha { flex: 0 1 calc((100% - 1.5rem) / 2); }
}
@media (max-width: 600px) {
  .linhas-grid .linha { flex: 0 1 100%; max-width: 100%; }
}
.linha {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.linha:hover {
  border-color: var(--line-strong);
  transform: translateY(-5px);
}
.linha-num {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.linha h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--off-white);
  margin-bottom: 0.9rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}
.linha p {
  font-size: 0.95rem;
  color: var(--beige);
  line-height: 1.7;
  font-weight: 300;
}

/* Formação & Reconhecimento */
.sobre-fr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
}
.sobre-fr-col h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 2rem;
  font-weight: 500;
}
.sobre-list {
  list-style: none;
  padding: 0;
}
.sobre-list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.sobre-list li:last-child { border-bottom: none; }
.sobre-list strong {
  color: var(--off-white);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
}
.sobre-list span {
  color: var(--beige);
  font-size: 0.9rem;
  font-weight: 300;
}

/* Manifesto */
.sobre-manifesto {
  background:
    radial-gradient(ellipse at center, rgba(184, 149, 107, 0.06) 0%, transparent 60%),
    var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 8rem 0;
}
.sobre-manifesto .section-head {
  display: block !important;
  text-align: center !important;
  max-width: 760px !important;
  margin: 0 auto 4rem !important;
  grid-template-columns: none !important;
}
.sobre-manifesto .section-head .eyebrow {
  margin: 0 auto 1.5rem;
  padding: 0;
}
.sobre-manifesto .section-head .eyebrow::before { display: none; }
.sobre-manifesto .section-head h2 { text-align: center; margin-bottom: 1.25rem; }
.sobre-manifesto .section-head p { text-align: center; margin: 0 auto; max-width: 620px; }
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto-quote {
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: 2.5rem 2.25rem;
  margin: 0;
  transition: all 0.4s ease;
}
.manifesto-quote:hover {
  border-color: var(--line-strong);
  border-left-color: var(--gold-bright);
  transform: translateY(-3px);
}
.manifesto-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: var(--off-white);
  line-height: 1.45;
  margin: 0;
  letter-spacing: 0.005em;
}

/* Detalhe humano */
.sobre-humano-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1180px;
}
.sobre-humano-image {
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.sobre-humano-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(10%) contrast(1.04);
}
.sobre-humano-content h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.sobre-humano-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--beige);
  font-weight: 300;
  max-width: 480px;
}

/* Pra quem não é */
.sobre-naoé {
  max-width: 820px;
}
.naoé-text {
  text-align: center;
}
.naoé-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--beige);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.naoé-final {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--gold) !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  margin-top: 2.5rem !important;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 980px) {
  .sobre-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-hero-image { max-width: 400px; margin: 0 auto; }
  .trajetoria-grid { grid-template-columns: 1fr; }
  .sobre-numeros-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 1rem; }
  .sobre-numeros-grid .numero-item:not(:last-child)::after { display: none; }
  .sobre-fr-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .sobre-humano-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .sobre-humano-image { max-width: 480px; margin: 0 auto; }
  .sobre-section { padding: 5rem 0; }
  .sobre-manifesto { padding: 5rem 0; }
  .sobre-hero { padding: 140px 0 4rem; }
}

/* EMPRESAS */
/* Hero */
.emp-hero {
  padding: 180px 0 6rem;
  position: relative;
  overflow: hidden;
}
.emp-hero::before {
  content: '';
  position: absolute;
  top: 15%; right: -8%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184, 149, 107, 0.1) 0%, transparent 65%);
  filter: blur(80px);
  z-index: 0;
}
.emp-hero-banner {
  width: 100%;
  aspect-ratio: 21 / 8;
  border-radius: var(--radius-lg);
  margin-bottom: 4rem;
  min-height: 320px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.emp-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}
.emp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}
.emp-hero-content h1 {
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.emp-hero-sub {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--beige);
  margin-bottom: 2.5rem;
  max-width: 720px;
  font-weight: 300;
}
.emp-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Sub-nav sticky */
.emp-subnav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(20, 19, 15, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
  margin-top: -1px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.emp-subnav.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.emp-subnav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 0.5rem;
}
.emp-subnav ul::-webkit-scrollbar { display: none; }
.emp-subnav a {
  color: var(--sand);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.3s ease;
}
.emp-subnav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.emp-subnav a:hover { color: var(--off-white); }
.emp-subnav a.active {
  color: var(--gold-bright);
}
.emp-subnav a.active::after { width: 100%; }

/* Manifesto */
.emp-manifesto {
  padding: 7rem 0;
  border-top: 1px solid var(--line);
}
.emp-manifesto-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}
.emp-manifesto-text-wrap { max-width: 580px; }
.emp-manifesto-image {
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: var(--radius-lg);
  min-height: 480px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.emp-manifesto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}
.emp-manifesto .eyebrow { padding-left: 0; }
.emp-manifesto .eyebrow::before { display: none; }
.emp-manifesto h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  margin: 1rem 0 2rem;
  font-weight: 500;
  line-height: 1.15;
}
.emp-manifesto-text { margin: 0; }
.emp-manifesto-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--beige);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.emp-manifesto-final {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
  color: var(--gold) !important;
  margin-top: 2.5rem !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
}

/* Custo — light cream section */
.emp-custo {
  padding: 8rem 0;
  background: #E8DFCE;
  color: #2A2620;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.emp-custo-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4.5rem;
}
.emp-custo-head .eyebrow {
  display: inline-block;
  color: #8A6D2E;
  padding-left: 0;
  margin-bottom: 1.25rem;
}
.emp-custo-head .eyebrow::before { display: none; }
.emp-custo-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  color: #1F1C17;
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.emp-custo-head h2 .gold {
  background: linear-gradient(135deg, #8A6D2E 0%, #BF8E26 50%, #8A6D2E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.emp-custo-head p {
  font-size: 1.1rem;
  color: #5C544A;
  line-height: 1.6;
  font-weight: 300;
}
/* Carrossel */
.emp-custo-carousel {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.emp-custo-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem 2rem;
  flex: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.emp-custo-track::-webkit-scrollbar { display: none; }
.emp-custo-arrow {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1A1714;
  color: #E5BC52;
  border: 1px solid rgba(191, 142, 38, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}
.emp-custo-arrow:hover:not(:disabled) {
  background: #2A2620;
  border-color: #BF8E26;
  transform: scale(1.05);
}
.emp-custo-arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
.emp-custo-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.emp-custo-dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  border: none;
  background: rgba(31, 28, 23, 0.18);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.emp-custo-dot.active {
  background: #BF8E26;
  width: 48px;
}

/* Card */
.emp-custo-card {
  position: relative;
  flex: 0 0 calc((100% - 40px) / 3);
  min-height: 340px;
  scroll-snap-align: start;
  background: linear-gradient(160deg, #1F1C17 0%, #14130F 100%);
  border: 1px solid rgba(191, 142, 38, 0.18);
  border-radius: 18px;
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s ease, border-color 0.35s ease;
  overflow: hidden;
}
.emp-custo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(191, 142, 38, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.emp-custo-card::after {
  content: "";
  position: absolute;
  left: 2rem; right: 2rem;
  bottom: 1.6rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(191, 142, 38, 0.5), transparent);
}
.emp-custo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(191, 142, 38, 0.45);
  box-shadow: 0 30px 50px rgba(20, 15, 5, 0.35);
}
.emp-custo-card:hover::before { opacity: 1; }
.emp-custo-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #BF8E26;
  font-weight: 500;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.emp-custo-num {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(191, 142, 38, 0.15);
  letter-spacing: -0.04em;
  pointer-events: none;
  transition: color 0.35s ease;
}
.emp-custo-card:hover .emp-custo-num {
  color: rgba(229, 188, 82, 0.25);
}
.emp-custo-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #F5F1E8;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.9rem;
  position: relative;
  z-index: 1;
}
.emp-custo-card p {
  font-size: 0.95rem;
  color: #A89F90;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
.emp-custo-where {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #C9BFAA;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.emp-custo-where::before {
  content: "→";
  color: #BF8E26;
  margin-right: 0.5rem;
  font-weight: 500;
}
.emp-custo-closer {
  text-align: center;
  max-width: 820px;
  margin: 4.5rem auto 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  color: #3A332A;
  line-height: 1.5;
  padding: 0 1rem;
}

/* Quebra editorial wide */
.emp-quebra { padding: 5rem 0; }
.emp-quebra-image {
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-lg);
  min-height: 320px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.emp-quebra-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}

/* Imagem topo de cada Frente detail */
.emp-frente-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  min-height: 280px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.emp-frente-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(10%) contrast(1.04);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
}
.emp-frente-detail:hover .emp-frente-image img {
  transform: scale(1.03);
  filter: grayscale(0%) contrast(1.05);
}

/* Como funciona / método */
.emp-metodo { padding: 8rem 0; }
.emp-metodo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.emp-metodo-step {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.emp-metodo-step:hover {
  border-color: var(--line-strong);
  transform: translateY(-5px);
}
.emp-step-num {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.emp-metodo-step h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--off-white);
  margin-bottom: 0.8rem;
  letter-spacing: -0.025em;
}
.emp-metodo-step > p {
  font-size: 0.92rem;
  color: var(--beige);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.emp-metodo-step ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}
.emp-metodo-step li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 0.3rem 0 0.3rem 0.9rem;
  position: relative;
  line-height: 1.5;
  font-weight: 300;
}
.emp-metodo-step li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7rem;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}
.emp-step-time {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  font-weight: 500;
}

/* Frentes overview — light cream section */
.emp-frentes {
  padding: 8rem 0;
  background: #E8DFCE;
  color: #2A2620;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.emp-frentes-side h2 .gold {
  background: linear-gradient(135deg, #8A6D2E 0%, #BF8E26 50%, #8A6D2E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Layout side-by-side */
.emp-frentes-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1280px;
}
.emp-frentes-side {
  position: sticky;
  top: 140px;
  padding-right: 1rem;
}
.emp-frentes-side .eyebrow {
  display: inline-block;
  color: #8A6D2E;
  padding-left: 0;
  margin-bottom: 1.25rem;
}
.emp-frentes-side .eyebrow::before { display: none; }
.emp-frentes-side h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: #1F1C17;
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.emp-frentes-side p {
  font-size: 1.05rem;
  color: #5C544A;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 460px;
}
.emp-frentes-controls {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.emp-frentes-counter {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: 'Cormorant Garamond', serif;
}
.emp-frentes-current {
  font-size: 2.6rem;
  color: #1F1C17;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.emp-frentes-divider {
  width: 36px;
  height: 1px;
  background: #8A6D2E;
}
.emp-frentes-total {
  font-size: 1.1rem;
  color: #8A6D2E;
  font-weight: 400;
}
.emp-frentes-arrows {
  display: flex;
  gap: 0.6rem;
}
.emp-frentes-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  color: #1F1C17;
  border: 1px solid rgba(31, 28, 23, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.emp-frentes-arrow:hover:not(:disabled) {
  background: #1F1C17;
  color: #E5BC52;
  border-color: #1F1C17;
}
.emp-frentes-arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

/* Viewport vertical */
.emp-frentes-viewport {
  max-height: 540px;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 4px 8px 4px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(180deg, transparent 0, #000 32px, #000 calc(100% - 60px), transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 32px, #000 calc(100% - 60px), transparent 100%);
}
.emp-frentes-viewport::-webkit-scrollbar { display: none; }

.emp-frente-card {
  flex: 0 0 auto;
  min-height: 240px;
  scroll-snap-align: start;
  background: linear-gradient(135deg, #1F1C17 0%, #14130F 100%);
  border: 1px solid rgba(191, 142, 38, 0.18);
  border-radius: 20px;
  padding: 2.25rem 2.5rem;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 2rem;
  align-items: center;
  transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.emp-frente-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at left center, rgba(191, 142, 38, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.emp-frente-card.is-active,
.emp-frente-card:hover {
  border-color: rgba(191, 142, 38, 0.5);
  transform: translateX(6px);
  box-shadow: 0 24px 40px rgba(20, 15, 5, 0.35);
}
.emp-frente-card.is-active::before,
.emp-frente-card:hover::before { opacity: 1; }

.emp-frente-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(191, 142, 38, 0.45);
  letter-spacing: -0.04em;
  transition: color 0.35s ease;
}
.emp-frente-card.is-active .emp-frente-num,
.emp-frente-card:hover .emp-frente-num {
  color: #E5BC52;
}
.emp-frente-body { min-width: 0; }
.emp-frente-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--off-white);
  margin-bottom: 0.6rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.emp-frente-card p {
  font-size: 0.95rem;
  color: var(--beige);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}
.emp-frente-link {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  align-self: center;
}

/* Frentes detalhadas */
.emp-frente-detail {
  padding: 8rem 0;
  border-top: 1px solid var(--line);
}
.emp-frente-detail.section-alt { background: var(--bg-alt); }
.emp-frente-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.emp-frente-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(184, 149, 107, 0.06);
}
.emp-frente-info h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 1.25rem;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.emp-frente-pos {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--off-white);
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 580px;
}
.emp-frente-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: var(--gold-bright);
  border-left: 3px solid var(--gold);
  padding: 0.4rem 0 0.4rem 1.5rem;
  margin: 0 0 2rem;
  line-height: 1.5;
  max-width: 540px;
}
.emp-frente-prob {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--beige);
  font-weight: 300;
  max-width: 580px;
}
.emp-frente-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: sticky;
  top: 90px;
}
.section-alt .emp-frente-side {
  background: var(--bg-alt);
}
.emp-frente-block {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.25rem;
}
.emp-frente-block:nth-last-of-type(2) { border-bottom: none; padding-bottom: 0; }
.emp-side-eyebrow {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.7rem;
}
.emp-frente-block p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}
.emp-frente-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.emp-frente-block li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.3rem 0 0.3rem 0.9rem;
  position: relative;
  line-height: 1.55;
  font-weight: 300;
}
.emp-frente-block li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7rem;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}
.emp-frente-side .btn {
  width: 100%;
  justify-content: center;
}

/* Bloco Mentali */
.emp-mentali {
  padding: 7rem 0;
  border-top: 1px solid var(--line);
}
.emp-mentali-card {
  background:
    radial-gradient(ellipse at top right, rgba(184, 149, 107, 0.1) 0%, transparent 60%),
    linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 4rem 3.5rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.emp-mentali-card::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184, 149, 107, 0.12) 0%, transparent 60%);
  filter: blur(60px);
  z-index: 0;
}
.emp-mentali-content {
  position: relative;
  z-index: 1;
}
.emp-mentali-content h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.emp-mentali-content p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--beige);
  margin-bottom: 2rem;
  font-weight: 300;
}
.emp-mentali-content p strong {
  color: var(--off-white);
  font-weight: 500;
}
.emp-mentali-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.emp-mentali-feature {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem 1.25rem;
  transition: all 0.3s ease;
}
.emp-mentali-feature:hover {
  border-color: var(--gold);
  background: rgba(184, 149, 107, 0.04);
}
.emp-mentali-feature strong {
  display: block;
  color: var(--off-white);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
}
.emp-mentali-feature span {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 900px) {
  .emp-mentali-card { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.75rem 2rem; }
}

/* Prova B2B */
.emp-prova {
  padding: 8rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.emp-prova-tipos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  max-width: 1080px;
  margin: 0 auto;
}
.emp-prova-tipo {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--sand);
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}
.emp-prova-tipo:hover {
  border-color: var(--gold);
  color: var(--off-white);
  background: rgba(184, 149, 107, 0.05);
}

/* FAQ */
.emp-faq { padding: 8rem 0; }

@media (max-width: 980px) {
  .emp-hero-banner { aspect-ratio: 16 / 9; min-height: 220px; margin-bottom: 2.5rem; }
  .emp-metodo-grid { grid-template-columns: repeat(2, 1fr); }
  .emp-custo-card { flex: 0 0 calc((100% - 20px) / 2); min-height: 320px; }
  .emp-manifesto-grid { grid-template-columns: 1fr; gap: 3rem; }
  .emp-manifesto-image { min-height: 360px; max-width: 480px; margin: 0 auto; }
  .emp-quebra-image { min-height: 220px; aspect-ratio: 16 / 9; }
  .emp-frente-image { min-height: 220px; }
  .emp-frentes-layout { grid-template-columns: 1fr; gap: 3rem; }
  .emp-frentes-side { position: static; padding-right: 0; }
  .emp-frentes-side p { max-width: none; margin-bottom: 2rem; }
  .emp-frente-card { grid-template-columns: 60px 1fr; padding: 1.75rem 1.75rem; min-height: 200px; }
  .emp-frente-card .emp-frente-link { grid-column: 2; margin-top: 0.8rem; }
  .emp-frente-num { font-size: 2.8rem; }
  .emp-frente-card h3 { font-size: 1.3rem; }
  .emp-frente-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .emp-frente-side { position: static; }
  .emp-manifesto, .emp-custo, .emp-frentes, .emp-frente-detail, .emp-prova, .emp-faq, .emp-metodo { padding: 5rem 0; }
  .emp-hero { padding: 140px 0 4rem; }
}

@media (max-width: 600px) {
  .emp-metodo-grid { grid-template-columns: 1fr; }
  .emp-custo-card { flex: 0 0 100%; min-height: 300px; padding: 2rem 1.5rem; }
  .emp-custo-arrow { width: 42px; height: 42px; }
  .emp-custo-num { font-size: 4rem; }
}

/* Contato */
.contato-hero {
  padding: 180px 0 6rem;
  position: relative;
  overflow: hidden;
}
.contato-hero::before {
  content: '';
  position: absolute;
  top: 10%; right: -8%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184, 149, 107, 0.1) 0%, transparent 65%);
  filter: blur(80px);
  z-index: 0;
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
  max-width: 1240px;
}
.contato-intro h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.contato-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--beige);
  max-width: 460px;
  margin-bottom: 3rem;
  font-weight: 300;
}
.contato-canais {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 460px;
}
.contato-canal {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.canal-eyebrow {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}
.contato-canal a {
  color: var(--off-white);
  font-size: 1.05rem;
  font-weight: 400;
  transition: color 0.3s ease;
}
.contato-canal a:hover { color: var(--gold); }

/* ============================================
   CONTATO FORM — editorial underline inputs
   ============================================ */
.contato-form-wrap {
  background: transparent;
  border: none;
  padding: 0;
}
.contato-form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
  position: relative;
  padding-left: 36px;
}
.contato-form-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.contato-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--off-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 3rem;
}
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
.form-row { display: flex; flex-direction: column; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}

/* Float field — underline only */
.float-field {
  position: relative;
  display: block;
}
.float-field input,
.float-field select,
.float-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(184, 149, 107, 0.22);
  border-radius: 0;
  padding: 26px 0 10px;
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: border-color 0.35s ease, padding 0.3s ease;
  width: 100%;
  outline: none;
}
.float-field span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--beige);
  letter-spacing: 0.04em;
  pointer-events: none;
  transition: top 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              font-size 0.35s ease,
              color 0.35s ease,
              letter-spacing 0.35s ease,
              text-transform 0.35s ease;
}
.float-field input:focus,
.float-field select:focus,
.float-field textarea:focus {
  border-bottom-color: var(--gold);
}
.float-field input:focus ~ span,
.float-field input:not(:placeholder-shown) ~ span,
.float-field textarea:focus ~ span,
.float-field textarea:not(:placeholder-shown) ~ span,
.float-field select:focus ~ span,
.float-field select:valid ~ span {
  top: 6px;
  transform: translateY(0);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Select arrow */
.float-field--select select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3e%3cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23BF8E26' stroke-width='1.5' stroke-linecap='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 32px;
  cursor: pointer;
}
.float-field--select select option { background: var(--bg); color: var(--off-white); }

/* Textarea */
.float-field--textarea textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
  padding-top: 32px;
}
.float-field--textarea span { top: 32px; transform: translateY(0); }
.float-field--textarea textarea:focus ~ span,
.float-field--textarea textarea:not(:placeholder-shown) ~ span {
  top: 6px;
}

.contato-submit {
  margin-top: 1.5rem;
  align-self: flex-start;
}

.form-aviso {
  font-size: 0.76rem;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.04em;
  line-height: 1.6;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contato-ok {
  text-align: center;
  padding: 2rem 0;
}
.ok-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(184, 149, 107, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.ok-icon svg { width: 32px; height: 32px; }
.contato-ok h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--off-white);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
.contato-ok p {
  font-size: 1rem;
  color: var(--beige);
  margin-bottom: 1.5rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Contato passos */
.contato-passos {
  padding: 6rem 0 8rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}
/* Passos timeline vertical */
.passos-timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 760px;
  position: relative;
}
.passos-timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(191, 142, 38, 0.55) 8%,
    rgba(191, 142, 38, 0.55) 92%,
    transparent 100%);
}
.passo-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  padding: 1.75rem 0 2.5rem;
}
.passo-item:last-child { padding-bottom: 0; }

.passo-marker {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 1;
}
.passo-marker-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--gold);
  position: relative;
  margin-left: 21px;
  flex-shrink: 0;
}
.passo-marker-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.passo-item:hover .passo-marker-dot::after { opacity: 1; }
.passo-marker-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: -0.02em;
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%);
}

.passo-body {
  padding-left: 1.5rem;
}
.passo-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  font-weight: 500;
}
.passo-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--off-white);
  margin-bottom: 0.8rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.passo-body p {
  font-size: 1rem;
  color: var(--beige);
  line-height: 1.75;
  font-weight: 300;
  margin: 0;
}

/* Contato — Localização */
.contato-local {
  padding: 7rem 0;
  border-top: 1px solid var(--line);
}
.contato-local-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  max-width: 1240px;
}
.contato-local-info h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.035em;
}
.contato-local-info > p {
  font-size: 1rem;
  color: var(--beige);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 460px;
  font-weight: 300;
}
.endereco-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem 1.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  max-width: 440px;
}
.endereco-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(184, 149, 107, 0.1);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.endereco-icon svg { width: 22px; height: 22px; }
.endereco-eyebrow {
  display: block;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.endereco-card p {
  font-size: 0.95rem;
  color: var(--off-white);
  margin: 0;
  line-height: 1.55;
  font-weight: 400;
}
.contato-mapa {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4 / 3;
}
.contato-mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(15%) contrast(0.95) brightness(0.95);
}

@media (max-width: 900px) {
  .contato-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contato-hero { padding: 140px 0 4rem; }
  .form-row-2 { grid-template-columns: 1fr; gap: 2.25rem; }
  .contato-form-wrap { padding: 0; }
  .contato-form-title { font-size: 1.8rem; margin-bottom: 2rem; }
  .contato-local-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contato-local { padding: 4.5rem 0; }

  .passo-item { grid-template-columns: 60px 1fr; gap: 1.25rem; padding-bottom: 2rem; }
  .passo-marker-dot { margin-left: 14px; }
  .passo-marker-num { left: 36px; font-size: 2rem; }
  .passo-body { padding-left: 0; }
  .passo-body h3 { font-size: 1.4rem; }
  .passos-timeline::before { left: 21px; }
}

/* Footer */
.site-footer {
  padding: 5rem 0 2.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--bg);
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.site-footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 500;
}
.site-footer p {
  font-size: 0.9rem;
  color: var(--beige);
  line-height: 1.7;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.7rem; }
.site-footer a {
  color: var(--sand);
  font-size: 0.88rem;
  transition: color 0.3s ease;
}
.site-footer a:hover { color: var(--off-white); }
.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  color: var(--muted);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image { order: 1; max-width: 380px; margin: 0 auto; }
  .hero-content { order: 2; }
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-image { max-width: 380px; margin: 0 auto; }
  .praquem-grid { grid-template-columns: 1fr; }
  /* numeros agora usa .stamps-grid — responsivo já está acima */
  .section-head { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 900px) {
  .conteudos-grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .nav-main { display: none; }
  .menu-toggle { display: block; }
  .nav-main.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid var(--line);
  }
  .nav-main.active a::after { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  section { padding: 5rem 0; }
  .hero { min-height: 90vh; padding: 120px 0 60px; }
  .bevellare { padding: 6rem 0; }
  .cta-block { padding: 5rem 1.5rem; }
  .site-footer .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .marquee-track { font-size: 1.2rem; gap: 2rem; }
  .praquem-card { padding: 2.5rem 2rem; }
  .faq-item summary { font-size: 1.05rem; padding-right: 2.5rem; }
}

/* ============================================
   ATENDIMENTO CLÍNICO
   ============================================ */

/* HERO */
.clin-hero {
  padding: 180px 0 6rem;
  position: relative;
  overflow: hidden;
}
.clin-hero::before {
  content: '';
  position: absolute;
  top: 10%; left: -10%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(184, 149, 107, 0.08) 0%, transparent 65%);
  filter: blur(80px);
  z-index: 0;
}
.clin-hero-banner {
  width: 100%;
  aspect-ratio: 21 / 8;
  border-radius: var(--radius-lg);
  margin-bottom: 4rem;
  min-height: 320px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.clin-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}
.clin-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.clin-hero-content h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: -0.035em;
  line-height: 1.12;
}
.clin-hero-sub {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--beige);
  margin-bottom: 2rem;
  max-width: 680px;
  font-weight: 300;
}
.clin-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 2.5rem;
}
.clin-meta-dot { color: var(--gold); font-size: 0.55rem; }
.clin-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* MANIFESTO */
.clin-manifesto {
  padding: 8rem 0;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
}
.clin-manifesto-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
.clin-manifesto-side { position: sticky; top: 140px; }
.clin-manifesto-side .eyebrow { padding-left: 0; }
.clin-manifesto-side .eyebrow::before { display: none; }
.clin-manifesto-side h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 400;
  margin-top: 1rem;
  color: var(--off-white);
}
.clin-manifesto-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--beige);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.clin-manifesto-closer {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem !important;
  color: var(--gold) !important;
  margin-top: 2.5rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

/* PÚBLICO */
.clin-publico {
  padding: 8rem 0;
  background: #E8DFCE;
  color: #2A2620;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.clin-publico .section-head .eyebrow { color: #8A6D2E; padding-left: 0; }
.clin-publico .section-head .eyebrow::before { display: none; }
.clin-publico .section-head h2 { color: #1F1C17; }
.clin-publico .section-head h2 .gold {
  background: linear-gradient(135deg, #8A6D2E 0%, #BF8E26 50%, #8A6D2E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.clin-publico .section-head p { color: #5C544A; }
.clin-publico-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
}
.clin-publico-card {
  background: #FAF5E9;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  position: relative;
}
.clin-publico-card--nao {
  background: transparent;
  border: 1px dashed rgba(31, 28, 23, 0.25);
}
.clin-card-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8A6D2E;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.clin-publico-card--nao .clin-card-tag { color: #6B665C; }
.clin-publico-intro {
  font-size: 1.05rem;
  color: #2A2620;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.clin-publico-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.clin-publico-card li {
  padding: 0.7rem 0 0.7rem 1.5rem;
  font-size: 0.97rem;
  color: #3A332A;
  line-height: 1.5;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
  font-weight: 400;
}
.clin-publico-card li:last-child { border-bottom: none; }
.clin-publico-card--sim li::before {
  content: "→";
  color: #8A6D2E;
  position: absolute;
  left: 0;
}
.clin-publico-card--nao li::before {
  content: "✕";
  color: #6B665C;
  position: absolute;
  left: 0;
  font-size: 0.85rem;
  top: 0.85rem;
}
.clin-publico-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #5C544A;
  line-height: 1.5;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* TEMAS */
.clin-temas {
  padding: 8rem 0;
  border-top: 1px solid var(--line);
}
.clin-temas-head {
  max-width: 980px;
  margin: 0 auto 4.5rem;
  text-align: center;
}
.clin-temas-head .eyebrow {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 1rem;
}
.clin-temas-head .eyebrow::before { display: none; }
.clin-temas-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.35;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--off-white);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.clin-temas-head p {
  font-size: 1rem;
  color: var(--beige);
  line-height: 1.7;
  font-weight: 300;
  max-width: 720px;
  margin: 0 auto;
}
.clin-temas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  max-width: 1240px;
  margin: 0 auto;
}
.clin-tema-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  transition: all 0.4s ease;
}
.clin-tema-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.clin-tema-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
  font-weight: 400;
}
.clin-tema-card h3 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.clin-tema-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.clin-tema-card li {
  font-size: 0.9rem;
  color: var(--beige);
  padding: 0.45rem 0;
  border-bottom: 1px dashed rgba(184, 149, 107, 0.1);
  font-weight: 300;
}
.clin-tema-card li:last-child { border-bottom: none; }

/* DIFERENCIAL */
.clin-diferencial {
  padding: 8rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.clin-diferencial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.clin-diferencial-image {
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: var(--radius-lg);
  min-height: 460px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.clin-diferencial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) contrast(1.04);
}
.clin-diferencial-content .eyebrow { padding-left: 0; }
.clin-diferencial-content .eyebrow::before { display: none; }
.clin-diferencial-content h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  margin: 1rem 0 2rem;
  font-weight: 500;
}
.clin-diferencial-content p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--beige);
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.clin-diferencial-content p strong {
  color: var(--off-white);
  font-weight: 500;
}
.clin-quote {
  margin: 2rem 0 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold);
  line-height: 1.5;
  font-weight: 400;
}

/* PROCESSO */
.clin-processo {
  padding: 8rem 0;
  border-top: 1px solid var(--line);
}
.clin-processo .section-head .eyebrow { padding-left: 0; display: inline-block; }
.clin-processo .section-head .eyebrow::before { display: none; }
.clin-processo .section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  margin: 0.8rem 0 1rem;
  line-height: 1.1;
}
.clin-processo .section-head p {
  font-size: 1rem;
  color: var(--beige);
  font-weight: 300;
}
.clin-processo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}
.clin-processo-item {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  transition: all 0.4s ease;
}
.clin-processo-item:hover {
  border-color: var(--line-strong);
  background: var(--bg-soft);
}
.clin-processo-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}
.clin-processo-item h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
}
.clin-processo-item p {
  font-size: 0.95rem;
  color: var(--beige);
  line-height: 1.65;
  font-weight: 300;
  margin: 0;
}
.clin-processo-item p strong {
  color: var(--sand);
  font-weight: 500;
}

/* SIGILO */
.clin-sigilo {
  padding: 8rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}
.clin-sigilo-card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 4rem 4rem;
  position: relative;
}
.clin-sigilo-card::before {
  content: "";
  position: absolute;
  top: 2rem; right: 2rem;
  width: 28px; height: 36px;
  border: 1px solid rgba(191, 142, 38, 0.5);
  border-radius: 4px 4px 16px 16px;
}
.clin-sigilo-card::after {
  content: "";
  position: absolute;
  top: 1.55rem; right: 2.5rem;
  width: 12px; height: 14px;
  border: 1px solid rgba(191, 142, 38, 0.5);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
}
.clin-sigilo-card .eyebrow { padding-left: 0; display: inline-block; }
.clin-sigilo-card .eyebrow::before { display: none; }
.clin-sigilo-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin: 1rem 0 2rem;
  font-weight: 500;
  max-width: 720px;
}
.clin-sigilo-text p {
  font-size: 1rem;
  color: var(--beige);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.clin-sigilo-text p strong {
  color: var(--off-white);
  font-weight: 500;
}

/* CTA */
.clin-cta {
  padding: 8rem 0;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.clin-cta::before {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184, 149, 107, 0.08) 0%, transparent 65%);
  filter: blur(80px);
}
.clin-cta-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.clin-cta-inner .eyebrow {
  padding-left: 0;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.clin-cta-inner .eyebrow::before { display: none; }
.clin-cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}
.clin-cta-inner p {
  font-size: 1.05rem;
  color: var(--beige);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.clin-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* RESPONSIVO ATENDIMENTO CLÍNICO */
@media (max-width: 980px) {
  .clin-hero { padding: 140px 0 4rem; }
  .clin-hero-banner { aspect-ratio: 16 / 9; min-height: 220px; margin-bottom: 2.5rem; }
  .clin-manifesto, .clin-publico, .clin-temas, .clin-diferencial, .clin-processo, .clin-sigilo, .clin-cta { padding: 5rem 0; }
  .clin-manifesto-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .clin-manifesto-side { position: static; }
  .clin-publico-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .clin-diferencial-grid { grid-template-columns: 1fr; gap: 3rem; }
  .clin-diferencial-image { max-width: 480px; margin: 0 auto; min-height: 360px; }
  .clin-processo-grid { grid-template-columns: repeat(2, 1fr); }
  .clin-sigilo-card { padding: 3rem 2rem; }
  .clin-temas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .clin-processo-grid { grid-template-columns: 1fr; }
  .clin-temas-grid { grid-template-columns: 1fr; }
  .clin-publico-card { padding: 2.25rem 1.75rem; }
}

/* ============================================
   NR-1 TEASER
   ============================================ */
.nr1-teaser {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, #15110D 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.nr1-teaser::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(178, 60, 60, 0.5) 50%, transparent 100%);
}
.nr1-teaser::after {
  content: "";
  position: absolute;
  top: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(178, 60, 60, 0.08) 0%, transparent 65%);
  filter: blur(80px);
  z-index: 0;
}
.nr1-teaser-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1240px;
}
.nr1-teaser-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 7px 16px;
  border: 1px solid rgba(178, 60, 60, 0.5);
  background: rgba(178, 60, 60, 0.08);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E59B9B;
  font-weight: 500;
  margin-bottom: 2rem;
}
.nr1-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E04545;
  box-shadow: 0 0 0 0 rgba(224, 69, 69, 0.65);
  animation: nr1Pulse 1.8s ease-out infinite;
}
@keyframes nr1Pulse {
  0% { box-shadow: 0 0 0 0 rgba(224, 69, 69, 0.65); }
  70% { box-shadow: 0 0 0 14px rgba(224, 69, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 69, 69, 0); }
}
.nr1-teaser-left h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.75rem;
  color: var(--off-white);
}
.nr1-teaser-left p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--beige);
  margin-bottom: 2.25rem;
  max-width: 560px;
  font-weight: 300;
}
.nr1-teaser-left p strong {
  color: var(--off-white);
  font-weight: 500;
}
.nr1-teaser-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.nr1-risk-card {
  background: linear-gradient(160deg, #1A1714 0%, #14110D 100%);
  border: 1px solid rgba(184, 70, 70, 0.18);
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.nr1-risk-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #B23C3C 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.nr1-risk-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(178, 60, 60, 0.12), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.nr1-risk-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 70, 70, 0.4);
  box-shadow: 0 24px 40px rgba(40, 10, 10, 0.35);
}
.nr1-risk-card:hover::before,
.nr1-risk-card:hover::after { opacity: 1; }

/* Card crítico (CPF do gestor) */
.nr1-risk-card--critical {
  background: linear-gradient(160deg, #1F1410 0%, #160B0A 100%);
  border-color: rgba(224, 69, 69, 0.32);
}
.nr1-risk-card--critical::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent 0%, #E04545 50%, transparent 100%);
}

/* Cabeçalho do card: ícone + número */
.nr1-risk-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.2rem;
  position: relative;
  z-index: 1;
}
.nr1-risk-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(229, 155, 155, 0.35);
  background: rgba(178, 60, 60, 0.08);
  color: #E59B9B;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nr1-risk-icon svg { width: 18px; height: 18px; }
.nr1-risk-card--critical .nr1-risk-icon {
  border-color: #E04545;
  color: #FF8585;
  background: rgba(224, 69, 69, 0.15);
}
.nr1-risk-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: rgba(229, 155, 155, 0.5);
  letter-spacing: -0.02em;
}
.nr1-risk-card--critical .nr1-risk-num { color: #E04545; opacity: 0.75; }

/* Título e descritor */
.nr1-risk-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--off-white);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0;
  position: relative;
  z-index: 1;
}
.nr1-risk-card p {
  font-size: 0.85rem;
  color: var(--beige);
  line-height: 1.55;
  font-weight: 300;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Indicador de severidade (3 barrinhas) */
.nr1-risk-severity {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #E59B9B;
  font-weight: 500;
  padding-top: 0.85rem;
  margin-top: auto;
  border-top: 1px solid rgba(178, 60, 60, 0.18);
  position: relative;
  z-index: 1;
}
.nr1-risk-severity span {
  width: 12px;
  height: 3px;
  background: rgba(229, 155, 155, 0.25);
  border-radius: 1px;
  display: inline-block;
}
.nr1-risk-severity span:nth-child(-n+2) { background: #B23C3C; }
.nr1-risk-severity--critical {
  color: #FF6B6B;
}
.nr1-risk-severity--critical span {
  background: #E04545;
  box-shadow: 0 0 6px rgba(224, 69, 69, 0.5);
  animation: severityPulse 1.6s ease-in-out infinite;
}
.nr1-risk-severity--critical span:nth-child(2) { animation-delay: 0.2s; }
.nr1-risk-severity--critical span:nth-child(3) { animation-delay: 0.4s; }
@keyframes severityPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@media (max-width: 980px) {
  .nr1-teaser { padding: 5rem 0; }
  .nr1-teaser-grid { grid-template-columns: 1fr; gap: 3rem; }
  .nr1-teaser-right { grid-template-columns: 1fr 1fr; }
  .nr1-teaser-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nr1-teaser-left p { margin-left: auto; margin-right: auto; }
}

/* ============================================
   QUOTE BANNER (palestra)
   ============================================ */
.quote-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
}
.quote-banner-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.quote-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}
.quote-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20,19,15,0.95) 0%, rgba(20,19,15,0.7) 45%, rgba(20,19,15,0.35) 100%),
    linear-gradient(180deg, rgba(20,19,15,0.5) 0%, rgba(20,19,15,0.5) 100%);
}
.quote-banner-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  padding: 5rem 2rem;
}
.quote-banner-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  font-weight: 500;
  padding: 6px 16px;
  border: 1px solid rgba(191, 142, 38, 0.4);
  border-radius: 999px;
  background: rgba(20, 19, 15, 0.5);
}
.quote-banner-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.65rem, 3.4vw, 2.6rem);
  line-height: 1.3;
  color: var(--off-white);
  letter-spacing: -0.01em;
  margin: 0 0 1.75rem;
  max-width: 760px;
  position: relative;
}
.quote-banner-text::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 0.4em;
  width: 14px;
  height: 1px;
  background: var(--gold);
}
.quote-banner-caption {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 400;
}
@media (max-width: 980px) {
  .quote-banner { min-height: 380px; }
  .quote-banner-content { padding: 4rem 1.5rem; }
  .quote-banner-text::before { display: none; }
  .quote-banner-overlay {
    background: linear-gradient(180deg, rgba(20,19,15,0.92) 0%, rgba(20,19,15,0.75) 100%);
  }
}

/* ============================================
   SOBRE — Arquitetural (Formação & Reconhecimento)
   ============================================ */
.sobre-archi {
  padding: 8rem 0;
  border-top: 1px solid var(--line);
}
.archi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.archi-col-head {
  margin-bottom: 3rem;
  position: relative;
}
.archi-col-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
  padding: 5px 12px;
  border: 1px solid rgba(191, 142, 38, 0.3);
  border-radius: 999px;
}
.archi-col-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  color: var(--off-white);
  margin: 0 0 1.25rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.archi-col-line {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  opacity: 0.45;
}

.archi-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.archi-list::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(191, 142, 38, 0.4) 6%,
    rgba(191, 142, 38, 0.4) 94%,
    transparent 100%);
}
.archi-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  position: relative;
}
.archi-item-marker {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}
.archi-item-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--gold);
  position: relative;
  margin-left: 16px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}
.archi-item-dot::after {
  content: "";
  position: absolute;
  inset: 2.5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.archi-item:hover .archi-item-dot::after { opacity: 1; }
.archi-item-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  margin-left: 0.85rem;
  letter-spacing: 0.01em;
  font-weight: 500;
  white-space: nowrap;
}
.archi-item-body h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  color: var(--off-white);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 0.3rem;
  line-height: 1.3;
}
.archi-item-body span {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--beige);
  line-height: 1.55;
  font-weight: 300;
  display: block;
}
@media (max-width: 980px) {
  .sobre-archi { padding: 5rem 0; }
  .archi-grid { grid-template-columns: 1fr; gap: 3.5rem; }
}

/* ============================================
   ATENDIMENTO — Card de tema em destaque
   ============================================ */
.clin-tema-card--feature {
  background: linear-gradient(160deg, #1A1714 0%, #14110D 100%);
  border: 1px solid rgba(191, 142, 38, 0.4);
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  padding: 2.75rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.clin-tema-card--feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}
.clin-tema-card--feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(191, 142, 38, 0.08), transparent 60%);
  pointer-events: none;
}
.clin-tema-feature-tag {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(191, 142, 38, 0.12);
  border: 1px solid rgba(191, 142, 38, 0.35);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 500;
  z-index: 2;
}
.clin-tema-card--feature .clin-tema-num {
  font-size: 4rem;
  color: rgba(229, 188, 82, 0.45);
}
.clin-tema-card--feature h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.75rem;
  color: var(--off-white);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
  position: relative;
  z-index: 1;
}
.clin-tema-feature-desc {
  font-size: 0.95rem;
  color: var(--beige);
  line-height: 1.65;
  margin: 0;
  position: relative;
  z-index: 1;
  font-weight: 300;
}
.clin-tema-card--feature ul {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.clin-tema-card--feature li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(191, 142, 38, 0.15);
  font-size: 0.9rem;
  color: var(--sand);
  position: relative;
  padding-left: 1.5rem;
  font-weight: 400;
}
.clin-tema-card--feature li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.clin-tema-card--feature li:last-child { border-bottom: none; }
@media (max-width: 980px) {
  .clin-tema-card--feature {
    grid-column: span 1;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.75rem;
  }
  .clin-tema-feature-tag { position: static; align-self: flex-start; margin-bottom: 0.5rem; }
}

/* ============================================
   EMPRESAS — Mentali faixa slim
   ============================================ */
.emp-mentali-strip {
  padding: 5rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mentali-strip-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.75rem 2.5rem;
  background: linear-gradient(90deg, rgba(191, 142, 38, 0.04) 0%, transparent 60%);
  border: 1px solid rgba(191, 142, 38, 0.2);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.mentali-strip-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(191, 142, 38, 0.06) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.mentali-strip-card:hover {
  border-color: rgba(191, 142, 38, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.mentali-strip-card:hover::before { opacity: 1; }

.mentali-strip-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid rgba(191, 142, 38, 0.35);
  border-radius: 999px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.mentali-strip-content { position: relative; z-index: 1; }
.mentali-strip-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--off-white);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 0.35rem;
}
.mentali-strip-content h3 span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--champagne) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.mentali-strip-content p {
  font-size: 0.85rem;
  color: var(--beige);
  line-height: 1.5;
  margin: 0;
  font-weight: 300;
}
.mentali-strip-content p strong {
  color: var(--sand);
  font-weight: 500;
}

.mentali-strip-cta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.mentali-strip-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(191, 142, 38, 0.4);
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0;
  transition: all 0.4s ease;
}
.mentali-strip-card:hover .mentali-strip-arrow {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: rotate(-15deg);
}
@media (max-width: 900px) {
  .emp-mentali-strip { padding: 3.5rem 0; }
  .mentali-strip-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.75rem;
    border-radius: 24px;
    text-align: center;
  }
  .mentali-strip-tag { justify-self: center; }
  .mentali-strip-cta { justify-content: center; }
}

/* ============================================
   AUDIO MODAL — picker Podcast / Audiobook
   ============================================ */
.audio-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.audio-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.audio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 7, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
}
.audio-modal-content {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(160deg, #1F1D19 0%, #14130F 100%);
  border: 1px solid rgba(191, 142, 38, 0.3);
  border-radius: 24px;
  padding: 3rem 2.75rem 2.75rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.96) translateY(10px);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.audio-modal.open .audio-modal-content {
  transform: scale(1) translateY(0);
}
.audio-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(191, 142, 38, 0.3);
  color: var(--sand);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.audio-modal-close:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: rotate(90deg);
}
.audio-modal-close svg { width: 16px; height: 16px; }

.audio-modal-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
  padding: 5px 14px;
  border: 1px solid rgba(191, 142, 38, 0.4);
  border-radius: 999px;
}
.audio-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--off-white);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.audio-modal-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--beige);
  margin: 0 0 2rem;
  line-height: 1.6;
  font-weight: 300;
}

.audio-modal-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audio-option {
  display: grid;
  grid-template-columns: 52px 1fr 28px;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem 1.25rem;
  background: rgba(31, 29, 25, 0.6);
  border: 1px solid rgba(191, 142, 38, 0.18);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.audio-option:hover {
  background: rgba(191, 142, 38, 0.08);
  border-color: rgba(191, 142, 38, 0.5);
  transform: translateX(4px);
}

.audio-option-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(191, 142, 38, 0.1);
  border: 1px solid rgba(191, 142, 38, 0.3);
  color: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}
.audio-option-icon svg { width: 22px; height: 22px; }
.audio-option:hover .audio-option-icon {
  background: rgba(191, 142, 38, 0.2);
  border-color: var(--gold);
  color: var(--gold-bright);
}

.audio-option-body { min-width: 0; }
.audio-option-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.audio-option-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--off-white);
  margin: 0 0 0.4rem;
  letter-spacing: -0.015em;
}
.audio-option-body p {
  font-size: 0.85rem;
  color: var(--beige);
  line-height: 1.55;
  margin: 0 0 0.6rem;
  font-weight: 300;
}
.audio-option-channel {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--sand);
  font-weight: 400;
}
.audio-option-arrow {
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 0.4s ease;
  align-self: center;
}
.audio-option:hover .audio-option-arrow { transform: translateX(5px); }

@media (max-width: 600px) {
  .audio-modal-content { padding: 2.25rem 1.5rem 1.75rem; border-radius: 18px; }
  .audio-option { grid-template-columns: 44px 1fr; padding: 1.25rem 1rem; gap: 1rem; }
  .audio-option-arrow { grid-column: 2; justify-self: start; margin-top: 0.5rem; }
}
