/* ============================================================
   GLÓRIA SEMIJOIAS — Design System & Styles
   ============================================================ */

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  /* Cores - Light Mode (Padrão) */
  --bg-main: #F7F1E6;
  --bg-alt: #FFFCF6;
  --text-main: #3A2A1E;
  --text-muted: #5A4432;
  --border-color: rgba(58, 42, 30, 0.14);
  --accent: #AD8752;
  --accent-hover: #8f6c3f;
  --btn-outline-hover-bg: rgba(58, 42, 30, 0.05);

  /* Cores Fixas (Dark Zone) */
  --bg-dark-main: #171009;
  --bg-dark-alt: #221609;
  --text-dark-main: rgba(255, 250, 240, 0.92);
  --text-dark-muted: rgba(255, 250, 240, 0.58);
  --border-dark: rgba(203, 162, 106, 0.22);
  --accent-dark: #CBA26A;
  --accent-dark-hover: #dcb47c;

  /* Cores da Scrollbar */
  --scrollbar-bg: #F7F1E6;
  --scrollbar-thumb: #AD8752;
  --scrollbar-thumb-hover: #8f6c3f;
}

[data-theme="dark"] {
  /* Transforma a parte superior em Dark Mode */
  --bg-main: #171009;
  --bg-alt: #1a120b;
  /* Leve variação para contraste */
  --text-main: rgba(255, 250, 240, 0.92);
  --text-muted: rgba(255, 250, 240, 0.68);
  --border-color: rgba(203, 162, 106, 0.22);
  --accent: #CBA26A;
  --accent-hover: #dcb47c;
  --btn-outline-hover-bg: rgba(203, 162, 106, 0.1);

  /* Scrollbar acompanha o dark mode */
  --scrollbar-bg: #171009;
  --scrollbar-thumb: #CBA26A;
  --scrollbar-thumb-hover: #dcb47c;
}

/* ── Custom Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) transparent;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "arboria", sans-serif;
  font-weight: 300;
  color: var(--text-main);
  background: var(--bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  transition: background-color 0.4s ease, color 0.4s ease;
}

::selection {
  background: #EAD9BC;
  color: #3A2A1E;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color .25s ease;
}

a:hover {
  color: var(--accent-hover);
}

button {
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ── Keyframes ────────────────────────────────────────────── */
@keyframes glGlow {

  0%,
  100% {
    opacity: .55;
  }

  50% {
    opacity: .85;
  }
}

@keyframes glBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes glMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── Scroll-reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Layout Helpers ───────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 40px);
  padding-right: clamp(20px, 5vw, 40px);
}

.container--narrow {
  max-width: 1080px;
}

.container--tight {
  max-width: 1000px;
}

.container--faq {
  max-width: 820px;
}

.container--wide {
  max-width: 1120px;
}

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform .38s cubic-bezier(.2, .7, .2, 1), background-color 0.4s ease, backdrop-filter 0.4s ease;
  will-change: transform;
}

.site-header.scrolled {
  background: color-mix(in srgb, var(--bg-main) 85%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px clamp(20px, 5vw, 40px);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  color: inherit;
  height: 70px;
}

.logo-img {
  height: 100%;
  width: 100%;
  max-width: none;
}

/* No Light Mode (padrão), exibe logo escura */
.logo-img--light {
  display: none;
}

.logo-img--dark {
  display: block;
}

/* No Dark Mode, inverte as logos */
[data-theme="dark"] .logo-img--light {
  display: block;
}

[data-theme="dark"] .logo-img--dark {
  display: none;
}

/* Navigation */
.header-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  align-items: center;
}

.header-nav a {
  color: var(--text-muted);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 500;
  transition: color 0.25s ease;
}

.header-nav a:hover {
  color: var(--text-main);
}

/* Header CTAs & Actions */
.header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.header-ctas {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Seções desativadas temporariamente */
.is-hidden-section {
  display: none !important;
}

/* ── Theme Toggle & Mobile Menu Buttons ───────────────────── */
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease;
}

.icon-btn:hover {
  color: var(--accent);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.theme-toggle .icon-moon {
  display: none;
}

.theme-toggle .icon-sun {
  display: block;
}

[data-theme="dark"] .theme-toggle .icon-moon {
  display: block;
}

[data-theme="dark"] .theme-toggle .icon-sun {
  display: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 71px;
  /* Altura do header */
  left: 0;
  width: 100%;
  height: calc(100vh - 71px);
  background: var(--bg-main);
  z-index: 40;
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), background-color 0.4s ease;
}

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

.mobile-nav-overlay a {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}

.mobile-nav-overlay .header-ctas {
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  margin-top: 20px;
}

.mobile-nav-overlay .btn {
  border-bottom: none;
  font-size: 14px;
  padding: 14px;
  text-align: center;
  width: 100%;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-align: center;
  line-height: 1;
}

.btn--outline-dark {
  font-size: 13.5px;
  padding: 10px 18px;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  background: transparent;
}

.btn--outline-dark:hover {
  background: var(--btn-outline-hover-bg);
  color: var(--text-main);
}

.btn--solid-dark {
  font-size: clamp(15px, 1.4vw, 17px);
  padding: 10px 18px;
  background: var(--text-main);
  color: var(--bg-main);
  border: 1px solid var(--text-main);
}

.btn--solid-dark:hover {
  background: var(--text-muted);
  color: var(--bg-main);
}

.btn--solid-dark-lg {
  font-size: 15px;
  padding: 15px 28px;
  background: var(--text-main);
  color: var(--bg-main);
  border: 1px solid var(--text-main);
}

.btn--solid-dark-lg:hover {
  background: var(--text-muted);
  color: var(--bg-main);
  transform: translateY(-1px);
}

.btn--outline-dark-lg {
  font-size: 15px;
  padding: 15px 28px;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  background: transparent;
}

.btn--outline-dark-lg:hover {
  background: var(--btn-outline-hover-bg);
  color: var(--text-main);
  transform: translateY(-1px);
}

.btn--gold {
  font-size: 15px;
  padding: 15px 30px;
  background: var(--accent-dark);
  color: #171009;
  border: 1px solid var(--accent-dark);
}

.btn--gold:hover {
  background: var(--accent-dark-hover);
  transform: translateY(-1px);
  color: #171009;
}

.btn--gold-submit {
  font-size: 15.5px;
  padding: 16px;
  background: var(--accent-dark);
  color: #171009;
  border: none;
  border-radius: 2px;
  font-weight: 700;
  width: 100%;
}

.btn--gold-submit:hover {
  background: var(--accent-dark-hover);
}

.btn--outline-catalog {
  font-size: 15px;
  padding: 14px 28px;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  background: transparent;
}

.btn--outline-catalog:hover {
  background: var(--btn-outline-hover-bg);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 2;
  background: var(--bg-main);
  transition: background-color 0.4s ease;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: calc(clamp(18px, 5vw, 58px) - 1em);
  padding-inline: clamp(20px, 5vw, 40px);
  padding-bottom: calc(clamp(90px, 10vw, 130px) + 2em);
  display: flex;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 400px;
  min-width: 300px;
  max-width: 620px;
  padding-top: 2em;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 22px;
  min-height: 1em;
}

.hero-caret {
  display: inline-block;
  width: 1.5px;
  height: .95em;
  background: var(--accent);
  margin-left: 3px;
  vertical-align: -1px;
  animation: glBlink 1s step-end infinite;
}

.hero-title {
  font-family: "ivybodoni", sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 5.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -1px;
  margin: 0 0 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.62;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 0 34px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Foto real da mão — fundo preto "removido" via mix-blend-mode: screen */
.hero-hand-photo {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(360px, 80vw, 680px);
  pointer-events: none;
  z-index: 1;
}

.hero-hand-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

@media (max-width: 900px) {
  .hero-hand-photo {
    top: auto;
    bottom: calc(clamp(40px, 9vw, 70px) - 4em);
    transform: none;
    width: min(78vw, 360px);
    z-index: 3;
  }
}

.placeholder-ring {
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
  border: 1.5px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-diamond {
  width: 60px;
  height: 60px;
  border: 1.5px solid var(--border-color);
  transform: rotate(45deg);
}

.placeholder-label {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin: 0;
}

.hero-wave {
  display: block;
  width: 100%;
  height: clamp(46px, 6vw, 84px);
  position: absolute;
  bottom: -1px;
  left: 0;
}

.hero-wave path {
  fill: var(--bg-alt);
  transition: fill 0.4s ease;
}

/* ── PROVA SOCIAL ─────────────────────────────────────────── */
.prova-social {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

.prova-social-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 26px clamp(20px, 5vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px 40px;
  align-items: center;
}

.selo {
  display: flex;
  gap: 13px;
  align-items: center;
}

.selo__icon {
  flex: none;
  width: 34px;
  height: 34px;
  border: 1px solid color-mix(in srgb, var(--accent) 50%, transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
}

.selo__title {
  font-family: "ivybodoni", sans-serif;
  font-weight: 500;
  font-size: 15px;
  margin: 0;
  line-height: 1.2;
}

.selo__text {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 2px 0 0;
  line-height: 1.3;
}

/* ── QUEM SOMOS ───────────────────────────────────────────── */
.quem-somos {
  background: var(--bg-alt);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 40px);
  transition: background-color 0.4s ease;
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 18px;
}

.section-eyebrow--dark {
  color: var(--accent-dark);
  letter-spacing: 2.6px;
}

.section-title {
  font-family: "ivybodoni", sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.14;
  letter-spacing: -.6px;
  margin: 0 0 24px;
  max-width: 760px;
}

.section-title--dark {
  color: var(--text-dark-main);
}

.section-title--catalog {
  max-width: 620px;
}

.section-title--diferenciais {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-title--beneficios {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-title--como {
  margin-bottom: 52px;
}

.section-title--kit {
  margin-bottom: 44px;
}

.section-title--faq {
  margin-bottom: 44px;
}

.section-body {
  font-size: clamp(15px, 1.3vw, 16.5px);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 0 56px;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
}

.valor-card {
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 30px 28px;
}

.valor-card h3 {
  font-family: "ivybodoni", sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 10px;
}

.valor-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.valor-card__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 8px;
}

/* ── VITRINE ──────────────────────────────────────────────── */
.vitrine {
  background: var(--bg-main);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 40px);
}

.vitrine-desc {
  font-size: clamp(15px, 1.3vw, 16.5px);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 0 48px;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
}

.produto-card {
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2, .7, .2, 1);
}

.produto-card:hover {
  transform: translateY(-5px);
}

.produto-card__img {
  aspect-ratio: 1/1;
  border-radius: 2px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-alt);
  background-image: repeating-linear-gradient(135deg, rgba(220, 196, 158, 0.1) 0 2px, transparent 2px 15px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
  position: relative;
}

.produto-card:hover .produto-card__img {
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.2);
  border-color: var(--accent);
}

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

.produto-card__placeholder {
  width: 66px;
  height: 66px;
  border: 1.4px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.produto-card__placeholder-inner {
  width: 30px;
  height: 30px;
  border: 1.4px solid var(--border-color);
  transform: rotate(45deg);
}

.produto-card h3 {
  font-family: "ivybodoni", sans-serif;
  font-weight: 500;
  font-size: 17px;
  margin: 0 0 4px;
}

.produto-card__cat {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0;
}

.vitrine-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── DIFERENCIAIS ─────────────────────────────────────────── */
.diferenciais {
  background: var(--bg-alt);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 40px);
  border-top: 1px solid var(--border-color);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.diferencial-card__icon {
  width: 52px;
  height: 52px;
  border: 1.4px solid color-mix(in srgb, var(--accent) 55%, transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.diferencial-card__icon-inner {
  width: 20px;
  height: 20px;
  border: 1.4px solid var(--accent);
  transform: rotate(45deg);
}

.diferencial-card h3 {
  font-family: "ivybodoni", sans-serif;
  font-weight: 500;
  font-size: 21px;
  margin: 0 0 10px;
}

.diferencial-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* ── DARK ZONE — SEJA GLÓRIA (Mantém-se sempre escuro) ────── */
.seja-gloria {
  position: relative;
  background: var(--bg-dark-main);
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 40px);
  overflow: hidden;
}

.seja-gloria__glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(760px, 90%);
  height: 480px;
  background: radial-gradient(ellipse at center, rgba(203, 162, 106, 0.20), transparent 68%);
  animation: glGlow 7s ease-in-out infinite;
  pointer-events: none;
}

.seja-gloria-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.seja-gloria__art {
  flex: 0 1 380px;
  min-width: 260px;
  width: 100%;
}

.seja-gloria__placeholder {
  aspect-ratio: 4/5;
  border-radius: 2px;
  border: 1px solid var(--border-dark);
  background-color: var(--bg-dark-alt);
  background-image: repeating-linear-gradient(135deg, rgba(203, 162, 106, 0.08) 0 2px, transparent 2px 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

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

.seja-gloria__placeholder-icon {
  text-align: center;
}

.seja-gloria__placeholder .placeholder-ring,
.seja-gloria__placeholder .placeholder-diamond {
  border-color: var(--border-dark);
}

.placeholder-label--dark {
  color: var(--text-dark-muted);
}

.seja-gloria__content {
  flex: 1 1 400px;
  min-width: 500px;
  text-align: left;
  position: relative;
}

.seja-gloria__title {
  font-family: "ivybodoni", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -1.5px;
  color: var(--accent-dark);
  margin: 0 0 24px;
}

.seja-gloria__text {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.68;
  color: var(--text-dark-main);
  margin: 0 0 32px;
}

/* ── BENEFÍCIOS ───────────────────────────────────────────── */
.beneficios {
  background: var(--bg-main);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 40px);
  transition: background-color 0.4s ease;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.beneficio-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: 2px;
  padding: 30px 26px;
  transition: transform .35s cubic-bezier(.2, .7, .2, 1), box-shadow .35s ease, border-color .35s ease, background-color 0.4s ease;
}

.beneficio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px -22px rgba(0, 0, 0, 0.2);
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
}

.beneficio-card__icon {
  display: flex;
  margin-bottom: 20px;
  color: var(--accent);
}

.beneficio-card__icon svg {
  width: 34.3px;
  height: 34.3px;
}

.beneficio-card h3 {
  font-family: "ivybodoni", sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 10px;
}

.beneficio-card p {
  font-size: 14.5px;
  line-height: 1.58;
  color: var(--text-muted);
  margin: 0;
}

/* ── COMO FUNCIONA ────────────────────────────────────────── */
.como-funciona {
  background: var(--bg-dark-main);
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 40px) clamp(60px, 8vw, 100px);
}

.passos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  border-top: 1px solid var(--border-dark);
  border-left: 1px solid var(--border-dark);
}

.passo-card {
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 32px 26px;
}

.passo-card__number {
  font-family: "ivybodoni", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  color: #9C7C4E;
  /* Cor original mantida */
  margin: 0 0 16px;
  line-height: 1;
}

.passo-card h3 {
  font-family: "ivybodoni", sans-serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--accent-dark);
  margin: 0 0 10px;
}

.passo-card p {
  font-size: 14px;
  line-height: 1.58;
  color: var(--text-dark-muted);
  margin: 0;
}

/* ── O QUE VOCÊ RECEBE ────────────────────────────────────── */
.kit-section {
  background: var(--bg-dark-main);
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 40px) clamp(60px, 8vw, 100px);
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4px 40px;
}

.kit-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-dark);
  align-items: flex-start;
}

.kit-item__icon {
  flex: none;
  width: 24px;
  height: 24px;
  border: 1px solid color-mix(in srgb, var(--accent-dark) 55%, transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-size: 13px;
  margin-top: 2px;
}

.kit-item h3 {
  font-family: "arboria", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark-main);
  margin: 0 0 5px;
}

.kit-item p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-dark-muted);
  margin: 0;
}

/* ── DEPOIMENTOS ──────────────────────────────────────────── */
.depoimentos {
  background: var(--bg-dark-main);
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 40px) clamp(60px, 8vw, 100px);
}

.depoimentos-label {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .5px;
  color: rgba(255, 250, 240, 0.4);
  margin: 0 0 44px;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.depoimento-card {
  background: var(--bg-dark-alt);
  border: 1px solid var(--border-dark);
  border-radius: 2px;
  padding: 32px 28px;
}

.depoimento-card__quote {
  font-family: "ivybodoni", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-dark-main);
  margin: 0 0 24px;
}

.depoimento-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-dark);
  margin: 0;
}

.depoimento-card__info {
  font-size: 13px;
  color: color-mix(in srgb, var(--text-dark-main) 50%, transparent);
  margin: 3px 0 0;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq {
  background: var(--bg-dark-main);
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 40px) clamp(60px, 8vw, 100px);
}

.faq-list {
  border-top: 1px solid var(--border-dark);
}

.faq-item {
  border-bottom: 1px solid var(--border-dark);
}

.faq-item__btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
}

.faq-item__question {
  flex: 1;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
  color: var(--text-dark-main);
}

.faq-item__icon {
  flex: none;
  font-size: 24px;
  color: var(--accent-dark);
  font-weight: 300;
  transition: transform .25s ease;
  line-height: 1;
  user-select: none;
}

.faq-item__icon.open {
  transform: rotate(45deg);
}

.faq-item__answer {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dark-muted);
  margin: 0;
  padding: 0 44px 26px 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease, opacity .3s ease;
  opacity: 0;
}

.faq-item__answer.open {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 26px;
}

/* ── FORMULÁRIO ───────────────────────────────────────────── */
.cadastro-section {
  background: var(--bg-dark-main);
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 40px) clamp(72px, 9vw, 110px);
}

.cadastro-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  border: 1px solid var(--border-dark);
  border-radius: 2px;
  overflow: hidden;
}

.cadastro-info {
  padding: clamp(36px, 4vw, 52px);
  background: linear-gradient(155deg, color-mix(in srgb, var(--accent-dark) 14%, transparent), color-mix(in srgb, var(--accent-dark) 2%, transparent));
  border-right: 1px solid var(--border-dark);
}

.cadastro-info h2 {
  font-family: "ivybodoni", sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.14;
  letter-spacing: -.5px;
  color: var(--accent-dark);
  margin: 0 0 18px;
}

.cadastro-info>p {
  font-size: 15px;
  line-height: 1.62;
  color: var(--text-dark-muted);
  margin: 0 0 34px;
}

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

.cadastro-check {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cadastro-check__icon {
  flex: none;
  width: 22px;
  height: 22px;
  border: 1px solid color-mix(in srgb, var(--accent-dark) 55%, transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-size: 12px;
}

.cadastro-check span:last-child {
  font-size: 14.5px;
  color: var(--text-dark-main);
}

.cadastro-form-area {
  padding: clamp(36px, 4vw, 52px);
  background: #1d1409;
}

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

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

.form-label__text {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--text-dark-muted);
}

.form-label__opt {
  font-weight: 400;
  color: color-mix(in srgb, var(--text-dark-main) 40%, transparent);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg-dark-main);
  border: 1px solid color-mix(in srgb, var(--accent-dark) 28%, transparent);
  border-radius: 2px;
  padding: 13px 14px;
  color: var(--text-dark-main);
  font-family: "arboria", sans-serif;
  font-weight: 300;
  font-size: 15px;
  transition: border-color .25s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-dark);
  outline: none;
}

.form-textarea {
  resize: vertical;
}

.form-select {
  appearance: auto;
  color-scheme: dark;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
}

.form-disclaimer {
  font-size: 12px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--text-dark-main) 40%, transparent);
  margin: 0;
  text-align: center;
}

/* Success state */
.form-success {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--accent-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-size: 30px;
  margin-bottom: 24px;
}

.form-success h3 {
  font-family: "ivybodoni", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--accent-dark);
  margin: 0 0 14px;
}

.form-success p {
  font-size: 15px;
  line-height: 1.62;
  color: var(--text-dark-muted);
  margin: 0;
  max-width: 340px;
}

.form-success a {
  color: var(--accent-dark);
}

.form-success .btn--gold {
  color: #171009;
  margin-top: 24px;
}

/* Error state */
.form-error {
  background: rgba(180, 60, 60, 0.18);
  border: 1px solid rgba(220, 80, 80, 0.4);
  border-radius: 2px;
  padding: 14px 18px;
  font-size: 14px;
  color: #ff9b9b;
  line-height: 1.5;
  text-align: center;
}

/* Loading state */
.btn--loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: #120c06;
  padding: clamp(40px, 5vw, 60px) clamp(20px, 5vw, 40px) 36px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-logo {
  display: flex;
  align-items: center;
  height: 42px;
}

.footer-logo .logo-img {
  height: 100%;
  width: auto;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 14px;
  color: var(--text-dark-muted);
}

.footer-nav a:hover {
  color: var(--accent-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
}

.footer-copy {
  font-size: 12.5px;
  color: color-mix(in srgb, var(--text-dark-main) 42%, transparent);
  margin: 0;
}

.footer-insta {
  font-size: 12.5px;
  color: var(--text-dark-muted);
}

.footer-insta:hover {
  color: var(--accent-dark);
}

/* ── FLOATING ACTIONS (WhatsApp + Voltar ao topo) ─────────── */
.floating-actions {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-float {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #FFFCF6;
  padding: 13px 18px 13px 15px;
  border-radius: 999px;
  box-shadow: 0 14px 34px -12px rgba(0, 0, 0, 0.4);
  font-weight: 600;
  font-size: 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px -14px rgba(0, 0, 0, 0.5);
  color: #FFFCF6;
}

.whatsapp-float svg {
  flex: none;
}

.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--bg-alt);
  color: var(--text-main);
  cursor: pointer;
  box-shadow: 0 10px 26px -14px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(8px) scale(.9);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, border-color .25s ease, background-color .25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.back-to-top svg {
  width: 17px;
  height: 17px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

/* Tablet larga / Desktop pequeno */
@media (max-width: 1024px) {
  .beneficios-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .diferenciais-grid {
    gap: 28px;
  }
}

/* Tablet */
@media (max-width: 900px) {

  .logo-link {
    height: 48.3px;
  }

  .seja-gloria-inner {
    display: block;
  }

  .seja-gloria__art {
    display: block;
    min-width: 0;
    width: min(340px, 100%);
    margin: 0 auto;
  }

  .seja-gloria__content {
    min-width: 0;
    width: 100%;
    margin-top: 32px;
  }

  .header-nav,
  .header-ctas {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: clamp(30px, 6vw, 44px);
  }

  .seja-gloria__title {
    font-size: clamp(36px, 8vw, 56px);
  }

  .valores-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .passos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kit-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .diferenciais {
    border-top: none;
  }
}

/* Mobile largo */
@media (max-width: 640px) {
  .hero-inner {
    flex-direction: column;
  }

  .hero-content {
    min-width: 0;
  }

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

  .cadastro-wrapper {
    grid-template-columns: 1fr;
  }

  .cadastro-info {
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 14px;
  }

  .section-title {
    font-size: clamp(24px, 6vw, 34px);
  }

  .section-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .prova-social-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

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

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

}

/* Mobile pequeno */
@media (max-width: 420px) {
  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-caret {
    opacity: 1;
  }

  .seja-gloria__glow {
    animation: none;
    opacity: 0.65;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}