/* ==========================================================================
   Rafaela Monteiro | Advocacia e Consultoria
   Reconstrução fiel à referência: hero cinematográfico com recorte,
   seções escuras com grão, carrossel de cards fotográficos, glass cards.
   Paleta: mogno #26130B · ivory #FCFAF5 · champagne #BE9E63
   Fontes: Cormorant Garamond (display) · Inter (corpo)
   ========================================================================== */

:root {
  /* mogno (marrom profundo) */
  --mogno-900: #26130B;
  --mogno-800: #33190D;
  --mogno-700: #452517;
  --mogno-300: #AC7E66;
  --mogno-100: #F4ECE6;
  /* ivory (cremes) */
  --ivory-50: #FCFAF5;
  --ivory-100: #F7F2E9;
  --ivory-200: #EFE7D7;
  /* champagne (dourado) */
  --champagne: #BE9E63;
  --champagne-light: #CBA995;
  --champagne-dark: #9C7E45;
  --champagne-soft: rgba(190, 158, 99, 0.16);
  /* texto */
  --ink: #2B1C12;
  --ink-soft: #5C4A3B;
  /* whatsapp */
  --whatsapp: #25D366;
  --whatsapp-dark: #20BD5A;
  /* tipografia / formas */
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-md: 16px;
  --radius-lg: 2rem;
  --shadow-card: 0 18px 50px -28px rgba(38, 19, 11, 0.35);
  --shadow-deep: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

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

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory-50);
  -webkit-font-smoothing: antialiased;
}

/* grão de papel sutil sobre toda a página (não intercepta cliques) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.028;
  mix-blend-mode: soft-light;
}

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--mogno-900);
}

h1 { font-size: clamp(2.5rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
h3 { font-size: 1.4rem; }

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

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

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

.container--narrow { width: min(820px, 100% - 3rem); }

/* ---------- Utilitários de texto ---------- */
.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne-dark);
}

.kicker--light { color: var(--champagne-light); }

.lede {
  margin-top: 1.25rem;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 42rem;
}

.lede--center { margin-inline: auto; }

.link-gold {
  color: var(--champagne-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(156, 126, 69, 0.4);
  transition: border-color 0.2s ease;
}
.link-gold:hover { border-color: var(--champagne-dark); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--champagne {
  background: var(--champagne);
  color: var(--mogno-900);
  box-shadow: 0 18px 40px -18px rgba(190, 158, 99, 0.7);
}
.btn--champagne:hover { background: var(--champagne-light); }

.btn--dark {
  background: var(--mogno-900);
  color: var(--ivory-50);
  box-shadow: var(--shadow-card);
}
.btn--dark:hover { background: var(--mogno-700); }

.btn--ghost {
  background: transparent;
  color: var(--ivory-50);
  border-color: rgba(252, 250, 245, 0.35);
}
.btn--ghost:hover { border-color: var(--champagne); color: var(--champagne); }

.btn--sm { padding: 0.65rem 1.3rem; font-size: 0.85rem; }
.btn--lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ---------- Pills / glass ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pill svg { width: 15px; height: 15px; }

.pill--outline {
  border: 1px solid rgba(252, 250, 245, 0.15);
  background: rgba(252, 250, 245, 0.1);
  color: var(--ivory-100);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.glass-card {
  border: 1px solid rgba(252, 250, 245, 0.14);
  background: rgba(38, 19, 11, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
}

/* ---------- Texturas / decorações ---------- */
.bg-grain { position: relative; }

.bg-grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
}

.hairline-top::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(190, 158, 99, 0.7), transparent);
}

.orb {
  position: absolute;
  left: -8rem;
  bottom: -4rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(69, 37, 23, 0.55);
  filter: blur(64px);
  pointer-events: none;
}

.orb--right { left: auto; right: -8rem; top: -4rem; bottom: auto; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 1rem 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.header.is-scrolled {
  background: rgba(38, 19, 11, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.55);
  padding: 0.6rem 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ivory-50);
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(190, 158, 99, 0.5);
  background: rgba(190, 158, 99, 0.12);
  color: var(--champagne);
  flex-shrink: 0;
}

.logo__mark svg { width: 22px; height: 22px; }

.logo__text { display: flex; flex-direction: column; line-height: 1.2; }

.logo__text strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo__text small {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
}

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

.nav > a:not(.nav__cta) {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(252, 250, 245, 0.78);
  transition: color 0.2s ease;
}

.nav > a:not(.nav__cta):hover { color: var(--champagne); }

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.header__toggle span {
  width: 24px;
  height: 2px;
  background: var(--ivory-50);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO — camadas: textura → sombra → fade → conteúdo + recorte
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--mogno-900);
  border-radius: 0 0 3rem 3rem;
  color: var(--ivory-50);
}

.hero__bgimg {
  position: absolute;
  top: -14%;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 128%;
  object-fit: cover;
  object-position: 78% center;
  opacity: 0.22;
  pointer-events: none;
  will-change: transform;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--mogno-900) 0%, rgba(38, 19, 11, 0.92) 45%, rgba(38, 19, 11, 0.58) 100%);
  pointer-events: none;
}

.hero__fade {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  height: 9rem;
  background: linear-gradient(to top, var(--mogno-900), transparent);
  pointer-events: none;
}

.hero__layout {
  position: relative;
  z-index: 3;
  min-height: 812px;
  display: flex;
  align-items: center;
  padding-top: 5rem;
}

.hero__content {
  max-width: 53%;
  min-width: 0;
  padding: 3rem 0 4rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.95rem;
  border-radius: 14px;
  background: rgba(252, 250, 245, 0.95);
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.rating__stars { display: flex; gap: 2px; color: var(--champagne-dark); }
.rating__stars svg { width: 12px; height: 12px; }

.rating__text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--mogno-700);
}
.rating__text strong { font-weight: 700; color: var(--mogno-900); }

.hero h1 {
  color: var(--ivory-50);
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.07;
  letter-spacing: -0.015em;
  max-width: 19ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--champagne);
}

.hero__lead {
  margin-top: 1.4rem;
  max-width: 46ch;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(252, 250, 245, 0.75);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.hero__note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.9rem;
  font-size: 0.85rem;
  color: rgba(252, 250, 245, 0.6);
  max-width: 52ch;
}

.hero__note svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--champagne);
}

/* recorte da advogada (desktop) */
.hero__photo {
  position: absolute;
  right: -2%;
  bottom: 0;
  top: 0;
  width: 52%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  filter: drop-shadow(0 32px 55px rgba(0, 0, 0, 0.55));
}

/* halo dourado atrás da foto — integra o recorte à seção */
.hero__photo::before {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 8%;
  width: 62%;
  height: 66%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 158, 99, 0.28), transparent 66%);
  filter: blur(46px);
  animation: heroGlow 8s ease-in-out infinite;
}

.hero__cutout {
  height: 99%;
  max-height: 820px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
  margin-bottom: -36px;   /* base sangra além da borda do hero, escondendo o corte do recorte */
}

@keyframes heroFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hero__card {
  position: absolute;
  bottom: 6.5rem;
  left: -1rem;
  max-width: 15.5rem;
  padding: 1.1rem 1.2rem;
  color: var(--ivory-50);
}

.hero__card-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne-light);
}

.hero__card-text {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(252, 250, 245, 0.82);
}

/* recorte mobile */
.hero__photo-mobile {
  position: relative;
  z-index: 2;
  display: none;
  justify-content: center;
  padding: 0 1rem;
  margin-top: -1.5rem;
}

.hero__photo-mobile img {
  max-height: 440px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.5));
}

.hero__photo-mobile-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 6rem;
  background: linear-gradient(to top, var(--mogno-900), transparent);
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trustbar {
  border-top: 1px solid rgba(172, 126, 102, 0.25);
  border-bottom: 1px solid rgba(172, 126, 102, 0.25);
  background: var(--ivory-50);
}

.trustbar__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 2rem;
  row-gap: 0.6rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.trustbar__list li {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mogno-700);
}

.trustbar__list .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--champagne);
}

/* ==========================================================================
   SEÇÕES GENÉRICAS
   ========================================================================== */
.section {
  position: relative;
  padding: clamp(4.5rem, 9vh, 7rem) 0;
}

.section--ivory {
  background:
    radial-gradient(ellipse 90% 60% at 50% -15%, rgba(190, 158, 99, 0.07), transparent 60%),
    var(--ivory-100);
}

.section--dark {
  background:
    radial-gradient(ellipse 55% 45% at 84% 4%, rgba(190, 158, 99, 0.12), transparent 60%),
    radial-gradient(ellipse 75% 60% at 2% 100%, rgba(86, 46, 30, 0.6), transparent 55%),
    var(--mogno-900);
  color: var(--ivory-50);
  overflow: hidden;
}

.section--dark h2, .section--dark h3 { color: var(--ivory-50); }
.section--dark .lede, .section--dark p { color: rgba(252, 250, 245, 0.75); }

.section--center { text-align: center; position: relative; }
.section--center .lede { margin-inline: auto; max-width: 36rem; }
.section--center h2 { margin-inline: auto; max-width: 24ch; margin-top: 1.25rem; }

.section__head { max-width: 44rem; margin-bottom: clamp(2.2rem, 5vh, 3.2rem); }
.section__head h2 { margin-top: 1.25rem; }

.section__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  margin-top: clamp(2rem, 5vh, 3rem);
  padding-top: 1.8rem;
  border-top: 1px solid var(--ivory-200);
}

.section__foot p { max-width: 56ch; }

.section__foot--center {
  justify-content: center;
  border-top: none;
  padding-top: 0;
}

/* ---------- Situações (por onde começar) ---------- */
.situations {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.9rem;
}

.situations li {
  position: relative;
  padding: 1.2rem 1.4rem 1.2rem 3rem;
  background: #fff;
  border: 1px solid var(--ivory-200);
  border-radius: 14px;
  font-family: var(--display);
  font-size: 1.12rem;
  font-style: italic;
  color: var(--mogno-700);
  box-shadow: 0 10px 30px -24px rgba(38, 19, 11, 0.4);
}

.situations li::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 1.55rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 4px var(--champagne-soft);
}

/* ==========================================================================
   ATUAÇÃO — carrossel de cards fotográficos (dark)
   ========================================================================== */
.atuacao__head {
  display: grid;
  gap: 2.5rem;
  align-items: end;
}

.atuacao__note {
  max-width: 26rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(252, 250, 245, 0.06);
}

.atuacao__note p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(252, 250, 245, 0.9);
}

.carousel-wrap { position: relative; margin-top: 2.5rem; }

.carousel-hint {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(252, 250, 245, 0.6);
  margin-bottom: 0.8rem;
}

.carousel-hint svg { width: 15px; height: 15px; }

.carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0.25rem 2.5rem;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar { display: none; }

.area-card {
  position: relative;
  flex: 0 0 300px;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(252, 250, 245, 0.1);
  scroll-snap-align: center;
  transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease,
              opacity 0.8s ease;
}

.area-card:hover {
  transform: translateY(-8px);
  border-color: rgba(190, 158, 99, 0.6);
  box-shadow: var(--shadow-deep);
}

.area-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.area-card:hover img { transform: scale(1.1); }

.area-card__tint {
  position: absolute;
  inset: 0;
  background: rgba(38, 19, 11, 0.2);
  mix-blend-mode: multiply;
  transition: opacity 0.5s ease;
}

.area-card:hover .area-card__tint { opacity: 0; }

.area-card__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--mogno-900) 0%, rgba(38, 19, 11, 0.8) 35%, transparent 70%);
  opacity: 0.92;
  transition: opacity 0.5s ease;
}

.area-card:hover .area-card__grad { opacity: 1; }

.area-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.8rem 1.6rem;
}

.area-card__body h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--ivory-50);
}

.area-card__body p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(252, 250, 245, 0.78);
}

.area-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--champagne-light);
  transition: gap 0.25s ease, color 0.25s ease;
}

.area-card:hover .area-card__link { gap: 0.75rem; color: var(--champagne); }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(252, 250, 245, 0.2);
  background: rgba(38, 19, 11, 0.85);
  color: var(--ivory-50);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.carousel-arrow:hover {
  border-color: var(--champagne);
  color: var(--champagne);
  background: rgba(38, 19, 11, 0.95);
}

.carousel-arrow svg { width: 20px; height: 20px; }

.carousel-arrow--prev { left: -1.4rem; }
.carousel-arrow--next { right: -1.4rem; }

/* ==========================================================================
   COMO FUNCIONA
   ========================================================================== */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}

.step {
  position: relative;
  padding: 2.2rem 1.8rem 2rem;
  background: var(--ivory-100);
  border-radius: var(--radius-md);
  border: 1px solid var(--ivory-200);
}

.step__num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mogno-900);
  color: var(--champagne);
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.95rem; }

/* ==========================================================================
   SOBRE — frame com placa offset
   ========================================================================== */
.sobre {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.sobre__media { position: relative; }

.sobre__plate {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  right: 2rem;
  top: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(244, 236, 230, 0.9);
}

.sobre__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  outline: 1px solid rgba(38, 19, 11, 0.06);
}

.sobre__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.sobre__content h2 { margin-top: 1.25rem; }

.sobre__values {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
}

.sobre__values li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--mogno-700);
}

.sobre__values svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--champagne-dark);
}

.sobre__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.8rem;
  margin: 1.8rem 0 2rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--ivory-200);
  border-bottom: 1px solid var(--ivory-200);
}

.sobre__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.sobre__meta svg { width: 17px; height: 17px; color: var(--champagne-dark); }

/* ==========================================================================
   ARTIGOS
   ========================================================================== */
.articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
}

.article {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 2rem 1.8rem;
  background: #fff;
  border: 1px solid var(--ivory-200);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--champagne);
  box-shadow: 0 14px 40px -30px rgba(38, 19, 11, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.8s ease;
}

.article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px -30px rgba(190, 158, 99, 0.6);
}

.article__tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne-dark);
  background: var(--champagne-soft);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}

.article h3 { font-size: 1.35rem; }
.article p { font-size: 0.95rem; flex-grow: 1; }

.article__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--champagne-dark);
  margin-top: 0.4rem;
  transition: gap 0.25s ease, color 0.25s ease;
}

.article__link:hover { gap: 0.7rem; color: var(--mogno-900); }

/* ==========================================================================
   QUIZ — botões glass (dark)
   ========================================================================== */
.quiz {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 48rem;
  margin: 3rem auto 0;
  text-align: left;
}

.quiz__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(252, 250, 245, 0.12);
  background: rgba(252, 250, 245, 0.05);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ivory-50);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease,
              opacity 0.8s ease;
}

.quiz__option:hover {
  transform: translateY(-4px);
  border-color: rgba(190, 158, 99, 0.5);
  background: rgba(252, 250, 245, 0.09);
}

.quiz__option--wide { grid-column: 1 / -1; }

.quiz__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.quiz__label svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: var(--champagne-light);
}

.quiz__option > span[aria-hidden] { color: var(--champagne-light); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--ivory-200);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq__item[open] { border-color: rgba(190, 158, 99, 0.55); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--mogno-900);
  transition: color 0.2s ease;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--champagne-soft);
  color: var(--champagne-dark);
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__item summary:hover { color: var(--champagne-dark); }

.faq__item p {
  padding: 0 1.5rem 1.4rem;
  font-size: 0.95rem;
}

/* ==========================================================================
   CONTATO
   ========================================================================== */
.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact__text h2 { margin-top: 1.25rem; }
.contact__text p { margin-top: 1rem; }
.contact__text .btn { margin-top: 1.8rem; }

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  padding: 2rem 1.8rem;
  background: #fff;
  border: 1px solid var(--ivory-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.contact__item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--champagne-dark);
}

.contact__item strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mogno-900);
  margin-bottom: 0.15rem;
}

.contact__item span { font-size: 0.95rem; color: var(--ink-soft); }

.contact__instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--champagne-dark);
  padding-top: 1.1rem;
  border-top: 1px solid var(--ivory-200);
  transition: color 0.2s ease;
}

.contact__instagram:hover { color: var(--mogno-900); }
.contact__instagram svg { width: 20px; height: 20px; }

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.section--cta .btn { margin-top: 2rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  position: relative;
  background: #1A0C06;
  color: rgba(252, 250, 245, 0.7);
  padding: 4rem 0 2rem;
  overflow: hidden;
}

.footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(190, 158, 99, 0.18);
}

.footer__brand p {
  margin-top: 1.2rem;
  font-size: 0.92rem;
  color: rgba(252, 250, 245, 0.55);
  max-width: 34ch;
}

.footer__nav, .footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.92rem;
}

.footer__nav strong, .footer__contact strong {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.5rem;
}

.footer__nav a { transition: color 0.2s ease; }
.footer__nav a:hover { color: var(--champagne); }

.footer__social {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(190, 158, 99, 0.35);
  color: var(--champagne);
  transition: background 0.25s ease, color 0.25s ease;
}

.footer__social a:hover { background: var(--champagne); color: var(--mogno-900); }
.footer__social svg { width: 19px; height: 19px; }

.footer__legal {
  position: relative;
  z-index: 1;
  padding-top: 1.8rem;
  font-size: 0.8rem;
  color: rgba(252, 250, 245, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__legal p { color: inherit; }

/* ==========================================================================
   WHATSAPP FLUTUANTE
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 18px 40px -14px rgba(37, 211, 102, 0.6);
  transition: background 0.25s ease, transform 0.25s ease;
}

.whatsapp-float:hover { background: var(--whatsapp-dark); transform: translateY(-3px); }
.whatsapp-float svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ==========================================================================
   ANIMAÇÕES DE ENTRADA — gated em html.js (sem JS, tudo visível)
   ========================================================================== */
html.js .reveal,
html.js .reveal-blur,
html.js .reveal-left,
html.js .reveal-right {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

html.js .reveal { transform: translateY(34px); }
html.js .reveal-blur { transform: translateY(38px) scale(0.98); filter: blur(9px); }
html.js .reveal-left { transform: translateX(-44px); }
html.js .reveal-right { transform: translateX(56px); filter: blur(12px); }

html.js .is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal,
  html.js .reveal-blur,
  html.js .reveal-left,
  html.js .reveal-right {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .btn, .area-card, .area-card img, .article, .quiz__option { transition: none; }
  .hero__cutout, .hero__card, .hero__photo::before { animation: none !important; }
  body::after { display: none; }
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (min-width: 1025px) {
  .carousel-hint { display: none; }
  .atuacao__head { grid-template-columns: 1.18fr 0.82fr; }
  .atuacao__note { justify-self: end; }
}

@media (max-width: 1024px) {
  .hero__layout { min-height: 0; flex-direction: column; align-items: stretch; }
  .hero__content { max-width: 100%; width: 100%; padding-bottom: 1rem; }
  .hero__content > *,
  .hero h1,
  .hero__lead,
  .hero__note { max-width: 100%; }
  .hero__photo { display: none; }
  .hero__photo-mobile { display: flex; }

  .carousel-arrow { display: none; }

  .sobre { grid-template-columns: 1fr; }
  .sobre__media { max-width: 420px; margin-inline: auto; order: 2; margin-top: 1rem; }

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

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

@media (max-width: 760px) {
  .header__toggle { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.6rem;
    padding: 6rem 2rem 2rem;
    background: var(--mogno-900);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }

  .nav.is-open { transform: translateX(0); }

  .nav > a:not(.nav__cta) { font-size: 1.05rem; }

  .hero { border-radius: 0 0 2rem 2rem; }

  .area-card { flex-basis: 260px; height: 420px; }

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

  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 0.95rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }

  .section__foot { flex-direction: column; align-items: flex-start; }
}

/* telas muito estreitas (≤360px): deixa o pill quebrar em vez de estourar */
@media (max-width: 360px) {
  .pill--outline { white-space: normal; }
  .container-x { width: min(1200px, 100% - 2rem); }
}
