/* ============================================================
   sections.css — Estilo por seção (mobile-first)
   ============================================================ */

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-950);
  border-bottom: 1px solid rgba(245, 245, 241, 0.08);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  min-height: 78px;
  padding-block: 0.9rem;
}

.main-nav { display: none; margin-left: auto; }

.main-nav ul {
  display: flex;
  gap: 2.1rem;
}

.main-nav a {
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(245, 245, 241, 0.86);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.header-cta {
  white-space: nowrap;
  flex: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--mint-500);
}

.header-cta { display: none; }

.mobile-menu-toggle {
  display: grid;
  place-items: center;
  gap: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-chip);
  color: var(--white);
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 2.5px 0;
  background: currentColor;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(92svh, 880px);
  background: var(--green-950);
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-media iframe,
.hero-media picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-media img { object-fit: cover; object-position: 62% 40%; }

.hero-media {
  z-index: 0;
}

/* Poster cobre o tour só no carregamento; o iframe já roda por baixo */
.hero-poster {
  z-index: 2;
  transition: opacity 500ms var(--ease-out);
}

.hero-tour {
  z-index: 1;
  pointer-events: auto;
  background: transparent;
}

.hero--tour.is-live .hero-poster {
  opacity: 0;
  pointer-events: none;
}

/* Overlay cinematográfico: texto legível à esquerda, tour vivo à direita */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      108deg,
      rgba(11, 47, 40, 0.92) 0%,
      rgba(11, 47, 40, 0.72) 34%,
      rgba(11, 47, 40, 0.28) 58%,
      rgba(11, 47, 40, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(11, 47, 40, 0.42) 0%,
      transparent 18%,
      transparent 62%,
      rgba(11, 47, 40, 0.58) 100%
    );
}

/* Tour 3D no hero: overlay não bloqueia; CTAs continuam clicáveis */
.hero--tour .container {
  pointer-events: none;
}

.hero--tour .container a,
.hero--tour .container button {
  pointer-events: auto;
}

.hero--tour::before {
  background: linear-gradient(
    105deg,
    rgba(11, 47, 40, 0.88) 0%,
    rgba(11, 47, 40, 0.62) 38%,
    rgba(11, 47, 40, 0.18) 62%,
    rgba(11, 47, 40, 0.05) 100%
  );
}

/* Filete dourado de fechamento — assinatura discreta da marca */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(209, 180, 91, 0.55) 28%,
    rgba(209, 180, 91, 0.22) 58%,
    transparent 100%
  );
  pointer-events: none;
}

/* Atmosfera: bloom quente do entardecer + respiração lenta */
.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 55% 70% at 78% 42%,
      rgba(209, 180, 91, 0.22) 0%,
      rgba(209, 180, 91, 0.06) 38%,
      transparent 68%
    ),
    radial-gradient(
      ellipse 40% 50% at 88% 18%,
      rgba(255, 196, 120, 0.14) 0%,
      transparent 60%
    );
  animation: hero-breathe 9s ease-in-out infinite alternate;
  mix-blend-mode: soft-light;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(5rem, 12vw, 7.5rem);
}

.hero-content { max-width: 720px; }

/* Eyebrow: ouro da marca (não mint) — leitura premium sobre a foto */
.hero .eyebrow {
  color: var(--gold-500);
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 1.35rem;
}

.hero .eyebrow::before {
  width: 0;
  background: var(--gold-500);
  animation: hero-dash 900ms var(--ease-out) 180ms forwards;
}

/* Entrada do hero: CSS puro (sem JS, sem atrasar o LCP — a imagem
   permanece visível desde o primeiro paint; só o texto sobe em cascata) */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

/* Ken Burns sutil: deriva lenta e contínua da imagem de fundo.
   Compositor-only (transform em um único elemento) — sem impacto
   em LCP/CLS; desativada por prefers-reduced-motion. */
@keyframes hero-kenburns {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(-1.6%, -0.6%, 0); }
}

@keyframes hero-breathe {
  from { opacity: 0.72; transform: scale(1); }
  to { opacity: 1; transform: scale(1.04); }
}

@keyframes hero-dash {
  from { width: 0; opacity: 0.4; }
  to { width: 32px; opacity: 1; }
}

@keyframes hero-underline {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes hero-glow {
  from { box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22), 0 0 0 0 rgba(43, 252, 151, 0); }
  to { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28), 0 0 28px 2px rgba(43, 252, 151, 0.28); }
}

@keyframes hero-scroll {
  0%, 100% { transform: scaleY(0.55); opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 0.9; }
}

.hero-media img {
  animation:
    hero-zoom 1800ms var(--ease-out) both,
    hero-kenburns 32s ease-in-out 1.8s infinite alternate;
}

.hero--tour .hero-media img {
  animation: none;
  object-position: center;
}

.hero--tour .hero-atmosphere { display: none; }

.hero-content > * {
  animation: hero-rise 1000ms var(--ease-out) backwards;
}

.hero-content > :nth-child(1) { animation-delay: 60ms; }
.hero-content > :nth-child(2) { animation-delay: 180ms; }
.hero-content > :nth-child(3) { animation-delay: 320ms; }
.hero-content > :nth-child(4) { animation-delay: 460ms; }

.hero h1 {
  color: var(--white);
  font-size: var(--fs-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.028em;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

/* Acento em ouro + sublinhado que desenha na entrada */
.hero h1 .accent {
  position: relative;
  display: inline;
  color: var(--gold-500);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1 .accent {
    background: linear-gradient(
      105deg,
      #c4a44a 0%,
      #e8d089 42%,
      #d1b45b 68%,
      #b8973e 100%
    );
    background-size: 180% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hero-shimmer 7s ease-in-out 1.2s infinite alternate;
  }
}

@keyframes hero-shimmer {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(
    90deg,
    rgba(209, 180, 91, 0.15),
    rgba(209, 180, 91, 0.85) 40%,
    rgba(232, 208, 137, 0.9) 70%,
    rgba(209, 180, 91, 0.2)
  );
  transform: scaleX(0);
  transform-origin: left center;
  animation: hero-underline 1100ms var(--ease-out) 720ms forwards;
  pointer-events: none;
}

.hero-sub {
  color: rgba(245, 245, 241, 0.78);
  font-size: clamp(1.02rem, 1.25vw, 1.15rem);
  line-height: 1.7;
  max-width: 44ch;
  margin-bottom: 2.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.95rem;
}

/* CTAs do hero: primário com glow vivo; secundário com vidro */
.hero .btn-primary {
  min-height: 52px;
  padding-inline: 1.75rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22), 0 0 0 0 rgba(43, 252, 151, 0);
  animation: hero-glow 2.8s ease-in-out 1.6s infinite alternate;
}

.hero .btn-outline-light {
  min-height: 52px;
  padding-inline: 1.65rem;
  border-color: rgba(245, 245, 241, 0.38);
  background: rgba(245, 245, 241, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero .btn-outline-light:hover {
  background: rgba(245, 245, 241, 0.14);
  border-color: rgba(245, 245, 241, 0.58);
}

/* Indicação de scroll — presença sem ocupar o hero */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  width: 1px;
  height: 42px;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0;
  animation: hero-rise 900ms var(--ease-out) 900ms forwards;
}

.hero-scroll__line {
  display: block;
  width: 1px;
  height: 100%;
  border-radius: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(209, 180, 91, 0.85)
  );
  transform-origin: top center;
  animation: hero-scroll 2.2s ease-in-out 1.6s infinite;
}

/* ---------- Benefícios ---------- */
.benefits { padding-block: var(--section-y); background: var(--surface-light); }

.benefits .section-lead {
  max-width: 36rem;
}

.benefits-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.65rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.benefit:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 114, 89, 0.22);
  box-shadow: 0 10px 28px rgba(19, 34, 31, 0.07);
}

.benefit h3 {
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.benefit p {
  font-size: var(--fs-small);
  color: var(--muted-600);
  line-height: 1.55;
}

.benefits-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

/* ---------- Viabilizador ---------- */
.role-section {
  position: relative;
  overflow: hidden;
}

.role-section::before {
  content: "";
  position: absolute;
  inset: auto -8% -35% auto;
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 180, 91, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.role-grid {
  position: relative;
  display: grid;
  gap: 2.75rem;
  align-items: start;
}

.role-copy .section-lead { margin-top: 1.1rem; }

.role-answer {
  margin-top: 1.75rem;
  padding: 1.25rem 1.4rem;
  border-left: 3px solid var(--gold-500);
  background: rgba(245, 245, 241, 0.05);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  color: rgba(245, 245, 241, 0.85);
}

.role-answer p { margin: 0; max-width: none; }

.role-cta { margin-top: 1.75rem; }

.role-journey {
  padding: 0.25rem 0 0.25rem 0.15rem;
}

.role-journey-label {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.role-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  position: relative;
}

.role-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.15rem;
  align-items: start;
  position: relative;
  padding-bottom: 1.65rem;
}

.role-step:last-child { padding-bottom: 0; }

.role-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(209, 180, 91, 0.7) 0%,
    rgba(209, 180, 91, 0.18) 100%
  );
}

.role-step-marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(209, 180, 91, 0.45);
  background: var(--green-900);
  box-shadow: 0 0 0 6px var(--green-950);
}

.role-step-marker span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--gold-500);
  line-height: 1;
}

.role-step-body {
  padding-top: 0.35rem;
  min-width: 0;
}

.role-step-body h3 {
  font-size: 1.08rem;
  margin: 0 0 0.35rem;
  color: var(--ivory-100);
}

.role-step-body p {
  margin: 0;
  font-size: var(--fs-small);
  line-height: 1.55;
  color: rgba(245, 245, 241, 0.68);
  max-width: 36ch;
}

/* ---------- Corretor parceiro ---------- */
.partner-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.partner-photo {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  max-width: 520px;
}

.partner-photo img { width: 100%; }

.partner-photo figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-chip);
  background: rgba(11, 47, 40, 0.86);
  color: var(--white);
  font-size: var(--fs-small);
}

.partner-photo figcaption span {
  display: block;
  color: var(--gold-500);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

/* Afiliação institucional — Diagonal presente sem co-brand com o monograma */
.partner-affiliation {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 0.95rem 1.15rem;
  border-radius: var(--radius-chip);
  background: var(--green-950);
  color: var(--white);
}

.partner-affiliation-logo {
  width: min(148px, 42%);
  height: auto;
  flex: none;
}

.partner-affiliation-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.partner-affiliation-copy strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--mint-500);
}

.partner-affiliation-copy span {
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(245, 245, 241, 0.72);
}

.partner-list {
  display: grid;
  gap: 0.85rem;
  margin-block: 1.5rem;
}

.partner-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.partner-list .check {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: none;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--green-700);
}

.partner-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.partner-official {
  margin-top: 1rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted-600);
}

.partner-official a {
  color: var(--green-800);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.partner-official a:hover {
  color: var(--green-950);
}

.inline-link {
  color: var(--green-800);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.inline-link:hover {
  color: var(--green-950);
}

/* ---------- Lançamentos (carrossel editorial) ---------- */
.launches-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.launches-head .section-lead {
  max-width: 36rem;
  margin-bottom: 0;
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-shrink: 0;
}

.carousel-counter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--muted-600);
  font-variant-numeric: tabular-nums;
}

.carousel-counter .current { color: var(--green-950); }

.carousel-arrows { display: flex; gap: 0.5rem; }

.carousel-btn {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--green-950);
  background: var(--white);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.carousel-btn:hover:not(:disabled) {
  background: var(--green-950);
  border-color: var(--green-950);
  color: var(--mint-500);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.carousel {
  overflow: hidden;
  margin-inline: calc(var(--gutter) * -0.15);
  padding-inline: calc(var(--gutter) * 0.15);
}

.carousel-track {
  display: flex;
  gap: 1.35rem;
  transition: transform 420ms var(--ease-out);
}

.launch-card {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(19, 34, 31, 0.06);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out), box-shadow var(--dur) var(--ease);
}

.launch-card:not(.is-active) {
  opacity: 0.55;
}

.launch-card.is-active {
  box-shadow: 0 14px 40px rgba(19, 34, 31, 0.1);
}

.launch-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--green-950);
}

.launch-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.launch-card.is-active:hover .launch-media img {
  transform: scale(1.035);
}

.launch-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-chip);
  background: rgba(11, 47, 40, 0.88);
  color: var(--mint-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.launch-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.45rem 1.5rem 1.55rem;
}

.launch-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.launch-info h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.2;
}

.launch-info > p:not(.launch-kicker):not(.launch-source) {
  color: var(--muted-600);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 38ch;
}

.launch-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.25rem 0 1.35rem;
  padding: 0.95rem 0;
  border-block: 1px solid var(--border);
}

.launch-specs li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green-950);
  line-height: 1.25;
}

.launch-specs li span {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-600);
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: auto;
}

.launch-actions .btn {
  min-height: 46px;
  padding: 0.7rem 1.35rem;
  font-size: 0.92rem;
}

.launch-source {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--muted-600);
}

.launch-source a {
  color: var(--green-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.launch-source a:hover { color: var(--green-950); }

/* Bullets do carrossel */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 1.65rem;
}

.carousel-dot {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
}

.carousel-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(19, 62, 53, 0.22);
  transition: width var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.carousel-dot:hover::before { background: var(--green-700); }

.carousel-dot.is-active::before {
  width: 30px;
  background: linear-gradient(90deg, var(--green-800), var(--green-700));
  box-shadow: inset 0 0 0 1.5px rgba(43, 252, 151, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .launch-media img,
  .launch-card,
  .carousel-track { transition: none; }
  .launch-card.is-active:hover .launch-media img { transform: none; }
}

/* ---------- Agenda ---------- */
.agenda-grid {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}

.agenda-types {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.agenda-type {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  padding: 1.05rem 1.25rem;
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-card);
  background: rgba(245, 245, 241, 0.04);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.agenda-type:hover {
  border-color: rgba(43, 252, 151, 0.35);
  background: rgba(245, 245, 241, 0.06);
}

.agenda-type strong {
  display: block;
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 0.15rem;
}

.agenda-type p { font-size: var(--fs-small); color: rgba(245, 245, 241, 0.7); }

/* Coluna visual acompanha a altura da coluna de conteúdo */
.agenda-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.agenda-media {
  position: relative;
  flex: 1;
  min-height: 300px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(209, 180, 91, 0.25);
}

.agenda-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agenda-media figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-chip);
  background: rgba(11, 47, 40, 0.85);
  color: rgba(245, 245, 241, 0.9);
  font-size: 0.8rem;
}

.agenda-media figcaption span {
  display: block;
  color: var(--gold-500);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

.agenda-panel {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-card);
  background: rgba(245, 245, 241, 0.05);
  border-left: 3px solid var(--mint-500);
  border-top: 1px solid var(--border-on-dark);
  border-right: 1px solid var(--border-on-dark);
  border-bottom: 1px solid var(--border-on-dark);
}

.agenda-panel p.agenda-empty {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
}

.agenda-panel .agenda-note {
  margin-top: 0.5rem;
  font-size: var(--fs-small);
  color: rgba(245, 245, 241, 0.66);
}

.agenda-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* ---------- Conteúdos ---------- */
.content-cards {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.content-thumb {
  position: relative;
  display: block;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.content-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play-badge span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(11, 47, 40, 0.82);
  color: var(--mint-500);
  border: 1px solid rgba(43, 252, 151, 0.4);
}

.content-cat {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 0.5rem;
}

.content-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

.content-card .card-body > p { font-size: 0.92rem; color: var(--muted-600); }

.content-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-700);
}

.content-link:hover { color: var(--green-950); }

.content-channels {
  display: grid;
  gap: 1.35rem;
  align-items: center;
  margin-top: 2.5rem;
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(209, 180, 91, 0.07) 0%, transparent 42%),
    var(--white);
}

.content-channels-label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
}

.content-channels-text {
  margin: 0.35rem 0 0;
  max-width: 42ch;
  font-size: 0.98rem;
  color: var(--muted-600);
}

.content-channels-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

/* ---------- Sobre ---------- */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.about-photo {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(209, 180, 91, 0.35);
  border-radius: var(--radius-card);
  pointer-events: none;
  z-index: 1;
}

.about-points {
  display: grid;
  gap: 1rem;
  margin-block: 1.9rem;
}

.about-point {
  padding: 1.1rem 1.3rem;
  border-left: 2px solid var(--gold-500);
  background: rgba(245, 245, 241, 0.04);
  border-radius: 0 var(--radius-chip) var(--radius-chip) 0;
}

.about-point strong {
  display: block;
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 0.2rem;
}

.about-point p { font-size: var(--fs-small); color: rgba(245, 245, 241, 0.7); }

.about-meta {
  margin-top: 1.5rem;
  font-size: var(--fs-small);
  color: rgba(245, 245, 241, 0.6);
}

.about-meta a {
  color: var(--gold-500);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.about-meta a:hover,
.about-meta a:focus-visible {
  color: var(--mint-500);
  border-bottom-color: currentColor;
}

/* ---------- Blog ---------- */
.blog-cards {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.blog-card .card-body h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.blog-card .card-body p { font-size: 0.9rem; color: var(--muted-600); }

.blog-thumb {
  aspect-ratio: 8 / 5;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-note {
  margin-top: 1.75rem;
  font-size: var(--fs-small);
  color: var(--muted-600);
}

/* ---------- FAQ ---------- */
.faq-section {
  position: relative;
  background:
    radial-gradient(ellipse 55% 70% at 92% 18%, rgba(43, 252, 151, 0.07), transparent 58%),
    radial-gradient(ellipse 45% 55% at 8% 88%, rgba(14, 114, 89, 0.05), transparent 55%),
    var(--ivory-100);
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(209, 180, 91, 0.45) 22%,
    rgba(43, 252, 151, 0.35) 55%,
    transparent 100%
  );
  pointer-events: none;
}

.faq-grid {
  position: relative;
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

.faq-intro .section-lead {
  max-width: 34ch;
}

.faq-intro-cta {
  margin-top: 1.75rem;
}

.faq-wrap {
  margin-top: 0;
  width: 100%;
  min-width: 0;
}

/* ---------- CTA final ---------- */
.final-cta.on-dark {
  position: relative;
  text-align: left;
  background:
    radial-gradient(ellipse 70% 90% at 85% 40%, rgba(43, 252, 151, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 70% at 10% 90%, rgba(103, 200, 200, 0.08), transparent 50%),
    var(--green-900);
  overflow: hidden;
}

.final-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(43, 252, 151, 0.35) 20%,
    rgba(209, 180, 91, 0.4) 50%,
    rgba(43, 252, 151, 0.35) 80%,
    transparent 100%
  );
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.final-cta .micro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

/* ---------- Ficha do empreendimento (parceiro) ---------- */
.product-hero {
  position: relative;
  background: var(--green-950);
  color: var(--white);
  overflow: hidden;
  min-height: min(72svh, 620px);
  display: flex;
  align-items: flex-end;
}

.product-hero__media,
.product-hero__media img,
.product-hero__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.product-hero__media img {
  object-fit: cover;
  object-position: center 40%;
}

.product-hero__tour {
  display: none;
  z-index: 0;
  pointer-events: auto;
}

/* Tour 3D no desktop: poster cobre o carregamento; iframe por cima depois */
@media (min-width: 900px) {
  .product-hero--tour {
    min-height: min(86svh, 780px);
  }

  .product-hero--tour .product-hero__tour {
    display: block;
  }

  .product-hero--tour .product-hero__poster {
    z-index: 0;
  }

  /* Overlay não bloqueia o tour; texto/CTAs continuam clicáveis */
  .product-hero--tour::before {
    pointer-events: none;
    background: linear-gradient(
      105deg,
      rgba(11, 47, 40, 0.92) 0%,
      rgba(11, 47, 40, 0.72) 42%,
      rgba(11, 47, 40, 0.28) 72%,
      rgba(11, 47, 40, 0.12) 100%
    );
  }

  .product-hero--tour .container {
    pointer-events: none;
  }

  .product-hero--tour .container a,
  .product-hero--tour .container button {
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-hero--tour .product-hero__tour {
    display: none;
  }
}

.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(11, 47, 40, 0.94) 0%, rgba(11, 47, 40, 0.78) 48%, rgba(11, 47, 40, 0.42) 100%);
}

.product-hero .container {
  position: relative;
  z-index: 2;
  padding-block: clamp(3.5rem, 10vw, 6rem);
  max-width: 720px;
}

.product-hero .eyebrow { color: var(--mint-500); }

.product-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin: 0.35rem 0 0.85rem;
  color: var(--white);
}

.product-hero__lead {
  font-size: var(--fs-body);
  color: rgba(245, 245, 241, 0.88);
  max-width: 40ch;
  margin-bottom: 1.5rem;
}

.product-hero__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.product-hero__specs li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.product-hero__specs li span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 245, 241, 0.62);
  margin-bottom: 0.15rem;
}

.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  color: rgba(245, 245, 241, 0.7);
}

.product-crumb a {
  color: rgba(245, 245, 241, 0.88);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-crumb a:hover { color: var(--mint-500); }

.product-crumb [aria-hidden="true"] { opacity: 0.45; }

.product-layout {
  display: grid;
  gap: 2.5rem;
}

.product-main h2 {
  margin-bottom: 0.75rem;
}

.product-main .section-lead {
  margin-bottom: 1.5rem;
}

.product-points {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.product-points li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--white);
}

.product-points strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--green-950);
}

.product-points p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted-600);
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.product-facts li {
  padding: 1rem 1.05rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--white);
}

.product-facts span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-600);
  margin-bottom: 0.35rem;
}

.product-facts strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--green-950);
  line-height: 1.25;
}

.product-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-panel {
  padding: 1.5rem 1.4rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background: var(--white);
}

.product-panel--dark {
  background: var(--green-950);
  border-color: transparent;
  color: rgba(245, 245, 241, 0.88);
}

.product-panel--dark h2,
.product-panel--dark strong {
  color: var(--white);
}

.product-panel h2 {
  font-size: var(--fs-h3);
  margin-bottom: 0.65rem;
}

.product-panel p {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
}

.product-panel .btn { width: 100%; }

.product-panel .btn + .btn { margin-top: 0.65rem; }

.product-panel__note {
  margin: 1rem 0 0 !important;
  font-size: 0.75rem !important;
  color: var(--muted-600);
}

.product-panel--dark .product-panel__note {
  color: rgba(245, 245, 241, 0.58);
}

.product-panel__note a {
  color: var(--green-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-panel--dark .product-panel__note a {
  color: var(--mint-500);
}

.product-visual {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
}

.product-visual img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-visual figcaption {
  padding: 0.85rem 1.1rem;
  font-size: 0.82rem;
  color: var(--muted-600);
  background: var(--white);
}

.product-next {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.product-next p {
  margin: 0;
  color: var(--muted-600);
  font-size: 0.95rem;
}

.product-next strong {
  display: block;
  color: var(--green-950);
  margin-bottom: 0.15rem;
}

.product-disclaimer {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--muted-600);
  max-width: 62ch;
}

.product-disclaimer a {
  color: var(--green-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Artigo / conteúdo interno ---------- */
.article-hero {
  min-height: min(58svh, 520px);
}

.article-hero .container {
  max-width: 780px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
}

.article-meta li {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 245, 241, 0.72);
}

.article-meta li strong {
  color: var(--gold-500);
  font-weight: 700;
}

.article-hero .product-hero__actions {
  margin-top: 0.25rem;
}

.article-dek {
  margin: 0 0 2.25rem;
  padding: 1.15rem 1.35rem 1.15rem 1.4rem;
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  background: rgba(209, 180, 91, 0.07);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--green-950);
  max-width: 48ch;
}

.article-body > p {
  margin: 0 0 1.15rem;
  max-width: 62ch;
  color: var(--muted-600);
}

.article-body > p a {
  color: var(--green-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.article-body > p a:hover { color: var(--green-950); }

.article-block {
  margin: 2.5rem 0 0;
}

.article-pillars {
  display: grid;
  gap: 0.9rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.article-pillars li {
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(11, 47, 40, 0.03);
}

.article-pillars .num-badge {
  margin-bottom: 0.85rem;
}

.article-pillars strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--green-950);
}

.article-pillars p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--muted-600);
}

.article-script {
  margin: 2.25rem 0 0;
  padding: 1.35rem 1.45rem;
  border-radius: var(--radius-card);
  background: var(--green-950);
  color: rgba(245, 245, 241, 0.88);
}

.article-script .eyebrow {
  color: var(--aqua-400);
  margin-bottom: 0.65rem;
}

.article-script p {
  margin: 0;
  max-width: none;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
}

.article-script span {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(245, 245, 241, 0.62);
}

.article-steps {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  counter-reset: article-step;
}

.article-steps li {
  position: relative;
  padding: 1rem 1.15rem 1rem 3.25rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--muted-600);
  max-width: none;
}

.article-steps li::before {
  counter-increment: article-step;
  content: counter(article-step);
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--green-700);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
}

.article-steps strong {
  color: var(--green-950);
}

.article-toc {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.article-toc li {
  font-size: 0.92rem;
  color: var(--muted-600);
}

.article-toc a {
  color: var(--green-800);
  font-weight: 600;
  text-decoration: none;
}

.article-toc a:hover {
  color: var(--green-950);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.article-related {
  margin-top: 0;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--white);
  border-top: 1px solid var(--border);
}

.article-related-grid {
  display: grid;
  gap: 1rem;
}

.article-related-card {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  padding: 1.35rem 1.45rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--ivory-100);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.article-related-card:hover {
  border-color: rgba(14, 114, 89, 0.35);
  transform: translateY(-2px);
}

.article-related-card .eyebrow {
  margin-bottom: 0;
}

.article-related-card strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--green-950);
}

.article-related-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted-600);
  max-width: 36ch;
}

.article-related-card .content-link {
  margin-top: 0.25rem;
}

@media (min-width: 700px) {
  .article-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 900px) {
  .product-layout {
    grid-template-columns: 1.35fr 0.85fr;
    gap: 3rem;
    align-items: start;
  }

  .product-aside { position: sticky; top: 6.5rem; }
}

@media (max-width: 560px) {
  .product-facts { grid-template-columns: 1fr; }
  .product-points li { grid-template-columns: 1fr; }
}

/* ---------- Rodapé ---------- */
.site-footer {
  background: var(--surface-footer);
  color: rgba(245, 245, 241, 0.68);
  padding-block: 3.5rem 2rem;
  font-size: var(--fs-small);
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
  margin-bottom: 2.5rem;
}

.footer-brand p { margin-top: 1rem; max-width: 34ch; }

.footer-col h3 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

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

.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 32px;
  transition: color var(--dur) var(--ease);
}

.footer-col a .fa-whatsapp {
  font-size: 1.05em;
  line-height: 1;
}

.footer-col a:hover { color: var(--mint-500); }

.footer-bottom {
  display: grid;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 245, 241, 0.1);
  font-size: 0.78rem;
  color: rgba(245, 245, 241, 0.55);
}

/* ---------- Sidebar mobile ---------- */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(11, 47, 40, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  width: min(88vw, 380px);
  display: flex;
  flex-direction: column;
  background: var(--green-950);
  color: rgba(245, 245, 241, 0.85);
  transform: translateX(100%);
  transition: transform 300ms var(--ease);
  overflow-y: auto;
}

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

.mobile-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  border-bottom: 1px solid rgba(245, 245, 241, 0.1);
}

.mobile-sidebar__close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-chip);
  color: var(--white);
  border: 1px solid rgba(245, 245, 241, 0.18);
}

.mobile-sidebar__nav { padding: 0.75rem 0; }

.mobile-sidebar__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0.5rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: rgba(245, 245, 241, 0.88);
}

.mobile-sidebar__nav a:hover,
.mobile-sidebar__nav a[aria-current="page"] { color: var(--mint-500); }

.mobile-sidebar__actions {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.35rem;
}

.mobile-sidebar__actions .btn-outline {
  border-color: var(--border-on-dark);
  color: var(--white);
}

.mobile-sidebar__actions .btn-outline:hover {
  background: rgba(245, 245, 241, 0.08);
}

.mobile-sidebar__footer {
  margin-top: auto;
  padding: 1.35rem 1.35rem 1.75rem;
  border-top: 1px solid rgba(245, 245, 241, 0.1);
  font-size: var(--fs-small);
}

.mobile-sidebar__social-label {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.mobile-sidebar__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.mobile-sidebar__social a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-chip);
  border: 1px solid rgba(245, 245, 241, 0.2);
  background: rgba(245, 245, 241, 0.04);
  color: rgba(245, 245, 241, 0.92);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.mobile-sidebar__social a:hover {
  color: var(--green-950);
  border-color: var(--mint-500);
  background: var(--mint-500);
  transform: translateY(-2px);
}

.mobile-sidebar__social .fa-whatsapp {
  font-size: 1.25rem;
  line-height: 1;
}

.mobile-sidebar__phone {
  margin: 1rem 0 0;
  color: rgba(245, 245, 241, 0.55);
}

.mobile-sidebar__phone a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(245, 245, 241, 0.88);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.mobile-sidebar__phone a:hover { color: var(--mint-500); }

body.mobile-menu-locked { overflow: hidden; }
