/* ══════════════════════════════════════════════════════════════════
   MARILIA SANTOS COLOR — FOLHA DE ESTILOS PRINCIPAL
   Coloração Pessoal Online
   ══════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════
   RESET & ROOT VARIABLES
   Define as cores e estilos base do projeto
══════════════════════════════════════ */

/* Reset básico para garantir consistência entre navegadores */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Variáveis CSS para cores e gradientes do tema */
:root {
  --ink: #0F0D0A;           /* Preto principal para textos */
  --ink2: #1C1914;          /* Preto secundário para fundos escuros */
  --gold: #C9A96E;          /* Dourado principal */
  --gold2: #E8C989;         /* Dourado claro */
  --stone: #F5F0E8;         /* Bege claro para fundos */
  --stone2: #EDE7D9;        /* Bege médio para bordas */
  --mist: #9A9188;          /* Cinza para textos secundários */
  --cream: #FDFAF5;         /* Creme claro para fundo principal */
  --white: #FFFFFF;         /* Branco puro */
  --border: rgba(201, 169, 110, .18); /* Borda dourada transparente */
  --g: linear-gradient(135deg, #C9A96E, #E8C989); /* Gradiente dourado */
}

/* Configurações base do HTML */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* Estilos base do body */
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  cursor: default;
}

/* ══════════════════════════════════════
   SISTEMA DE PÁGINAS
   Controla a visibilidade das páginas
══════════════════════════════════════ */

/* Esconde todas as páginas por padrão */
.page {
  display: none;
}

/* Mostra apenas a página ativa */
.page.active {
  display: block;
}

/* ══════════════════════════════════════
   ANIMAÇÕES
   Animações reutilizáveis em todo o site
══════════════════════════════════════ */

/* Animação de fade com movimento para cima */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Animação de fade simples */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Animação de brilho pulsante */
@keyframes shimmer {
  0%, 100% {
    opacity: .6;
  }
  50% {
    opacity: 1;
  }
}

/* Animação de deslize horizontal */
@keyframes slideRight {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* Animação de flutuação */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Classes auxiliares para aplicar animações com delays */
.anim-1 {
  animation: fadeUp .7s .1s both ease-out;
}

.anim-2 {
  animation: fadeUp .7s .25s both ease-out;
}

.anim-3 {
  animation: fadeUp .7s .4s both ease-out;
}

.anim-4 {
  animation: fadeUp .7s .55s both ease-out;
}

/* ══════════════════════════════════════
   HEADER / CABEÇALHO
   Navegação principal fixa no topo
══════════════════════════════════════ */

/* Container principal do header */
#hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(253, 250, 245, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .4s;
}

/* Header com sombra ao rolar a página */
#hdr.scrolled {
  box-shadow: 0 1px 40px rgba(15, 13, 10, .08);
}

/* Logo do site */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .4rem;
}

/* Ponto decorativo no logo */
.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--g);
  display: inline-block;
}

/* Menu de navegação desktop */
.desk-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

/* Links de navegação */
.nav-link {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #2c2820;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  padding: 0;
  transition: color .25s;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--ink);
}

/* Botão CTA pequeno no header */
.btn-cta-sm {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--ink);
  color: var(--cream);
  padding: .55rem 1.6rem;
  border-radius: 2px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  transition: background .25s, color .25s;
  text-decoration: none;
}

.btn-cta-sm:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ══════════════════════════════════════
   SELETOR DE IDIOMAS
══════════════════════════════════════ */

.lang-selector {
  position: relative;
  margin-left: 1.5rem;
  z-index: 200;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: .35rem;
  background: var(--stone);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .4rem .65rem;
  cursor: pointer;
  transition: all .2s;
  font-size: 1.1rem;
  color: var(--ink);
}

.lang-current:hover {
  border-color: var(--gold);
  background: #f5f0e8;
}

.lang-arrow {
  transition: transform .25s;
  opacity: .5;
}

.lang-selector.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(15,13,10,.12), 0 2px 8px rgba(15,13,10,.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px) scale(.97);
  pointer-events: none;
  transition: opacity .22s, transform .22s;
  min-width: 140px;
}

.lang-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: .7rem;
  width: 100%;
  padding: .7rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: var(--ink);
  transition: background .15s;
  text-align: left;
}

.lang-btn:hover {
  background: var(--stone);
}

.lang-btn.active {
  background: #faf6ee;
  font-weight: 500;
  color: var(--gold2);
}

.lang-btn.active::after {
  content: '✓';
  margin-left: auto;
  color: var(--gold);
  font-size: .75rem;
}

.lang-flag {
  font-size: 1.2rem;
  line-height: 1;
}

.lang-name {
  font-size: .8rem;
  letter-spacing: .02em;
}

/* Botão hambúrguer mobile */
.mob-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.mob-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all .3s;
}

/* Menu mobile */
.mob-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 2rem 5%;
  z-index: 99;
  flex-direction: column;
  gap: 1.5rem;
}

.mob-menu.open {
  display: flex;
}

.mob-menu a,
.mob-menu button {
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mist);
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  padding: .5rem 0;
  text-decoration: none;
  text-align: left;
  transition: color .2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mob-menu a:hover,
.mob-menu button:hover {
  color: var(--ink);
}

/* ══════════════════════════════════════
   HERO / SEÇÃO PRINCIPAL
   Banner principal com imagem de fundo
══════════════════════════════════════ */

/* Container principal do hero */
#hero {
  min-height: 100vh;
  padding-top: 72px;
  background: var(--ink2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Imagem de fundo do hero */
.hero-bg-image {
  position: absolute;
  top: 0;
  right: 15%;
  bottom: 0;
  width: 25%;
  height: 100%;
  opacity: 1;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* Overlay gradiente sobre a imagem */
.hero-bg-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--ink2) 0%, transparent 18%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Estilização da imagem de fundo */
.hero-bg-image img {
  max-width: 100%;
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: bottom right;
  filter: none;
  opacity: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efeito hover na imagem do hero */
#hero:hover .hero-bg-image img {
  filter: none;
  opacity: 1;
  transform: scale(1.02);
}

/* Grid de conteúdo do hero */
.hero-content {
  max-width: 1400px;
  width: 100%;
  padding: 2rem 0% 2rem 5%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

/* Lado esquerdo do hero */
.hero-left {
  display: flex;
  flex-direction: column;
  width: 58%;
  max-width: none;
  padding-right: 0;
  margin-left: 0;
}

/* Texto superior do hero (eyebrow) */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  display: block;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .4);
}

/* Título principal do hero */
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--cream);
  letter-spacing: -.01em;
  margin-bottom: .8rem;
  max-width: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .6), 0 4px 24px rgba(0, 0, 0, .4);
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .7), 0 4px 24px rgba(0, 0, 0, .5);
}

/* Texto descritivo do hero */
.hero-body {
  font-size: clamp(.92rem, 1.05rem, 1.1rem);
  color: rgba(253, 250, 245, .65);
  line-height: 1.6;
  max-width: none;
  margin-bottom: 3rem;
  font-weight: 300;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .5);
}

/* Container de botões do hero */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 3rem;
}

/* Botão dourado principal */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: var(--gold);
  color: var(--ink);
  padding: .9rem 2.2rem;
  border: none;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .25s, transform .2s;
  text-decoration: none;
  min-height: 44px;
}

.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

/* Botão ghost (transparente com borda) */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: transparent;
  color: rgba(253, 250, 245, .5);
  border: 1px solid rgba(253, 250, 245, .15);
  padding: .9rem 2.2rem;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .25s;
  text-decoration: none;
  min-height: 44px;
}

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

/* Estatísticas no hero */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 1.6rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(253, 250, 245, .08);
  width: fit-content;
}

.hero-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-l {
  font-size: .72rem;
  color: rgba(253, 250, 245, .4);
  letter-spacing: .08em;
  margin-top: .25rem;
}

/* ══════════════════════════════════════
   MARQUEE STRIP
   Faixa animada com texto deslizante
══════════════════════════════════════ */

.marquee-strip {
  background: var(--gold);
  padding: .85rem 0;
  overflow: hidden;
  white-space: nowrap;
}

/* Animação de marquee */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee-inner {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 22s linear infinite;
}

.marquee-item {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.marquee-item::after {
  content: '✦';
  opacity: .5;
}

/* ══════════════════════════════════════
   SEÇÕES COMPARTILHADAS
   Estilos reutilizáveis para seções
══════════════════════════════════════ */

/* Container de seção */
.sec {
  padding: 7rem 5%;
}

/* Wrapper limitado em largura */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
}

/* Eyebrow (texto superior da seção) */
.sec-eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

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

/* Título de seção */
.sec-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -.01em;
}

.sec-h2 em {
  font-style: italic;
  color: var(--gold);
}

/* Corpo de texto da seção */
.sec-body {
  color: var(--mist);
  font-size: clamp(.85rem, .95rem, .95rem);
  line-height: 1.8;
  font-weight: 300;
  max-width: 520px;
}

/* ══════════════════════════════════════
   COMO FUNCIONA
   Processo em 5 passos
══════════════════════════════════════ */

#como-funciona {
  background: var(--stone);
}

/* Grid do processo */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  border: 1px solid var(--stone2);
}

/* Item individual do processo */
.process-item {
  padding: 2.5rem 1.8rem;
  border-right: 1px solid var(--stone2);
  position: relative;
  transition: background .3s;
}

.process-item:last-child {
  border-right: none;
}

.process-item:hover {
  background: #fff;
}

/* Número do passo */
.process-num {
  font-family: 'Playfair Display', serif;
  font-size: .75rem;
  color: var(--gold);
  letter-spacing: .12em;
  margin-bottom: 1.4rem;
  display: block;
}

/* Ícone do processo */
.process-icon {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  display: block;
}

.process-item h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: .6rem;
  font-weight: 400;
}

.process-item p {
  font-size: .82rem;
  color: #2c2820;
  line-height: 1.7;
}

/* Seta entre os passos */
.process-arrow {
  position: absolute;
  top: 50%;
  right: -13px;
  width: 24px;
  height: 24px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: var(--ink);
  transform: translateY(-50%);
  z-index: 1;
}

.process-item:last-child .process-arrow {
  display: none;
}

/* ══════════════════════════════════════
   SEÇÃO SOBRE A ESPECIALISTA
   Layout com imagem e conteúdo
══════════════════════════════════════ */

#sobre {
  background: var(--cream);
}

/* Layout em grid */
.about-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: center;
  margin-top: 3rem;
}

/* about-eyebrow-block e about-header só visíveis no mobile */
.about-eyebrow-block,
.about-header {
  display: none;
}

/* Moldura da imagem */
.about-img-frame {
  position: relative;
  padding: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(201, 169, 110, .2);
}

.about-img-frame::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: var(--cream);
  border-radius: 5px;
  z-index: 1;
  box-shadow: inset 0 2px 8px rgba(15, 13, 10, .05);
}

/* Container da imagem */
.about-img-outer {
  width: 100%;
  height: 0;
  padding-bottom: 133.33%;
  background: var(--stone);
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  z-index: 2;
}

.about-img-outer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(201, 169, 110, 0.15) 100%);
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
}

.about-img-outer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 60% 40%, rgba(201, 169, 110, 0.2) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

.about-img-outer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.95) contrast(1.08) saturate(0.95);
  transition: all 0.4s ease;
  z-index: 0;
}

.about-img-outer:hover img {
  filter: brightness(1) contrast(1.05) saturate(1);
  transform: scale(1.02);
}

/* Placeholder para imagem */
.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(160deg, var(--stone) 0%, var(--stone2) 100%);
}

.about-img-placeholder span {
  font-size: 4rem;
  opacity: .2;
}

.about-img-placeholder p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .88rem;
  color: var(--mist);
  text-align: center;
  padding: 0 2rem;
}

/* Linha decorativa dourada */
.about-gold-line {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  opacity: .25;
  z-index: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
}

/* Card de estatística sobre a imagem */
.about-stat-card {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: var(--ink);
  padding: 1.4rem 1.8rem;
  border-left: 3px solid var(--gold);
  z-index: 3;
  box-shadow: 0 8px 24px rgba(15, 13, 10, .25);
}

.about-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.about-stat-l {
  font-size: .72rem;
  color: rgba(253, 250, 245, .85);
  letter-spacing: .08em;
  margin-top: .2rem;
}

/* Conteúdo sobre */
.about-content .sec-body {
  margin: 1.2rem 0 2rem;
  max-width: 100%;
  color: #2c2820;
}

#como-funciona .sec-body {
  color: #2c2820;
}

/* Grid de estatísticas */
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 1px;
  background: var(--stone2);
  border: 1px solid var(--stone2);
  margin: 2rem 0 2.5rem;
}

.about-stat-item {
  background: var(--cream);
  padding: 1.4rem 1.6rem;
  transition: background .3s;
}

.about-stat-item:hover {
  background: var(--white);
}

.about-stat-item .about-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .3rem;
}

.about-stat-item .about-stat-l {
  font-size: .72rem;
  color: #3a3028;
  letter-spacing: .06em;
  line-height: 1.4;
}

/* Lista de recursos */
.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-bottom: 2.5rem;
}

.about-list li {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  font-size: .88rem;
  color: #2c2820;
  line-height: 1.6;
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--stone2);
}

.about-list li:last-child {
  border-bottom: none;
}

.about-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: .65rem;
  flex-shrink: 0;
  margin-top: .2rem;
}

/* ══════════════════════════════════════
   CARROSSEL ANTES E DEPOIS
   Com autoplay e navegação
══════════════════════════════════════ */

#antes-depois {
  background: var(--cream);
  padding: 7rem 5%;
}

/* Wrapper do carrossel */
.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 3rem auto 0;
  overflow: hidden;
  padding: 0 60px;
}

/* Track do carrossel */
.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

/* Item do carrossel */
.carousel-item {
  flex: 0 0 calc(50% - 1rem);
  min-width: calc(50% - 1rem);
}

/* Card antes/depois */
.ba-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 13, 10, .08);
}

/* Grid de imagens */
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--cream);
}

/* Imagem antes/depois */
.ba-img {
  aspect-ratio: 3/4;
  background: var(--stone) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="400"><rect fill="%23EDE7D9" width="300" height="400"/><text x="50%" y="50%" font-family="Arial" font-size="14" fill="%239A9188" text-anchor="middle" dominant-baseline="middle">Antes/Depois</text></svg>') center/cover no-repeat;
  position: relative;
}

/* Label antes/depois */
.ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 13, 10, .85);
  color: var(--cream);
  padding: .4rem .9rem;
  border-radius: 20px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Legenda do card */
.ba-caption {
  padding: 1.5rem;
  text-align: center;
  font-size: .85rem;
  color: var(--mist);
  font-style: italic;
  line-height: 1.6;
}

/* Botões de navegação do carrossel */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all .3s;
  box-shadow: 0 4px 12px rgba(15, 13, 10, .08);
}

.carousel-btn:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

/* Indicadores (dots) do carrossel */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.8rem;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--stone2);
  border: none;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* ══════════════════════════════════════
   PREÇOS COM ABAS
   Sistema de tabs para diferentes planos
══════════════════════════════════════ */

#valores {
  background: var(--ink2);
}

/* Tabs de preços */
.pricing-tabs {
  display: flex;
  gap: 0;
  margin-top: 3rem;
  border: 1px solid rgba(201, 169, 110, .12);
  overflow: hidden;
}

/* Tab individual */
.pricing-tab {
  flex: 1;
  padding: 1.2rem 2rem;
  background: rgba(201, 169, 110, .04);
  border-right: 1px solid rgba(201, 169, 110, .12);
  cursor: pointer;
  transition: all .3s;
  text-align: center;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, .4);
}

.pricing-tab:last-child {
  border-right: none;
}

.pricing-tab:hover {
  background: rgba(201, 169, 110, .08);
  color: rgba(253, 250, 245, .6);
}

.pricing-tab.active {
  background: rgba(201, 169, 110, .15);
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

/* Conteúdo dos preços */
.pricing-content {
  margin-top: 3rem;
}

/* Painel de preços */
.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
  animation: fadeIn .5s ease-out;
}

/* Layout dos cards de preço */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201, 169, 110, .12);
  border: 1px solid rgba(201, 169, 110, .12);
  align-items: stretch;
}

/* Card de preço */
.price-card {
  background: var(--ink2);
  padding: 3rem 2.8rem;
  position: relative;
  transition: background .3s;
  display: flex;
  flex-direction: column;
}

/* Placeholder invisível para alinhar topo dos cards sem badge */
.price-badge-spacer {
  display: block;
  height: 2.1rem;
  margin-bottom: 1rem;
  margin-top: .5rem;
}

.price-card:hover {
  background: rgba(201, 169, 110, .04);
}

.price-card.feat {
  background: rgba(201, 169, 110, .06);
}

/* Tag superior do preço */
.price-tag-top {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}

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

/* Label de destaque */
.price-feat-label {
  position: absolute;
  top: 0;
  right: 2rem;
  background: var(--gold);
  color: var(--ink);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem .9rem;
}

/* Nome do plano */
.price-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: .8rem;
  font-weight: 400;
}

.price-name em {
  font-style: italic;
  color: var(--gold);
}

/* Descrição do preço */
.price-body {
  font-size: .85rem;
  color: rgba(253, 250, 245, .4);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  min-height: 3.5rem;
}

/* Valor grande */
.price-big {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--cream);
  line-height: 1;
  margin-bottom: .6rem;
}

.price-big sup {
  font-size: 1.4rem;
  vertical-align: super;
}

/* Informações de parcelamento */
.price-inst {
  font-size: .78rem;
  color: rgba(253, 250, 245, .3);
  margin-bottom: .4rem;
}

.price-pix {
  font-size: .82rem;
  color: var(--gold);
  letter-spacing: .04em;
  margin-bottom: 2.5rem;
}

/* Lista de funcionalidades */
.price-feats {
  list-style: none;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.price-feats li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: .85rem;
  color: rgba(253, 250, 245, .5);
  line-height: 1.6;
}

.price-feats li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
}

/* Botão CTA de preço */
.price-cta {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: var(--gold);
  color: var(--ink);
  padding: .9rem 2.2rem;
  border: none;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .25s;
  width: 100%;
  justify-content: center;
  text-decoration: none;
}

.price-cta:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

/* Banner da Loja Virtual */
.loja-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.5rem;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(201, 169, 110, .25);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(201,169,110,.08) 0%, rgba(201,169,110,.03) 100%);
  position: relative;
  overflow: hidden;
}

.loja-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--g);
}

.loja-banner-left {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.loja-banner-eyebrow {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.loja-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
}

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

.loja-banner-text {
  font-size: .82rem;
  color: rgba(253, 250, 245, .55);
  line-height: 1.6;
  max-width: 380px;
}

.loja-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--g);
  color: var(--ink);
  padding: .85rem 1.8rem;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity .25s, transform .25s, box-shadow .25s;
}

.loja-banner-btn:hover {
  opacity: .88;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 110, .35);
}

@media (max-width: 600px) {
  .loja-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    padding: 1.6rem;
  }

  .loja-banner-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   DEPOIMENTOS
   Seção para reviews de clientes
══════════════════════════════════════ */

#depoimentos {
  background: var(--cream);
}

.testimonials-grid {
  margin-top: 4rem;
}

/* ══════════════════════════════════════
   RODAPÉ / FOOTER
   Informações finais e links
══════════════════════════════════════ */

footer {
  background: var(--ink2);
  padding: 4rem 5% 2rem;
  color: var(--cream);
}

/* Grid superior do footer */
.foot-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Seção da marca */
.foot-brand {
  max-width: 280px;
}

/* Logo do footer */
.foot-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .02em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

/* Texto sobre */
.foot-about {
  font-size: .82rem;
  color: rgba(253, 250, 245, .4);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ── Social icons SVG ── */
.foot-socials {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.foot-soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(201, 169, 110, .08);
  border: 1px solid rgba(201, 169, 110, .18);
  color: var(--gold);
  text-decoration: none;
  transition: background .22s, border-color .22s, transform .2s, color .22s;
}

.foot-soc svg {
  width: 17px;
  height: 17px;
  display: block;
  flex-shrink: 0;
}

.foot-soc:hover {
  background: rgba(201, 169, 110, .18);
  border-color: var(--gold);
  color: var(--gold2);
  transform: translateY(-2px);
}

/* ── Accordion mobile ── */
.foot-col-title {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, .25);
  margin: 0;
}

.foot-acc-head {
  display: none; /* hidden on desktop */
}

.foot-acc-body {
  /* visible on desktop */
}

/* Título de coluna do footer (desktop fallback) */
.foot-col h4 {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, .25);
  margin-bottom: 1.4rem;
}

/* Lista do footer */
.foot-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.foot-list a,
.foot-list button,
.foot-list .foot-text {
  font-size: .82rem;
  color: rgba(253, 250, 245, .4);
  text-decoration: none;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  padding: 0;
  text-align: left;
}

.foot-list a,
.foot-list button {
  cursor: pointer;
  transition: color .2s;
}

.foot-list .foot-text {
  cursor: default;
}

.foot-list a:hover,
.foot-list button:hover {
  color: var(--gold);
}

/* Parte inferior do footer */
.foot-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(253, 250, 245, .08);
  text-align: center;
  font-size: .72rem;
  color: rgba(253, 250, 245, .25);
}

/* ══════════════════════════════════════
   FAB - FLOATING ACTION BUTTON
   Botão flutuante do WhatsApp
══════════════════════════════════════ */

.fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  z-index: 1000;
  transition: opacity .5s ease, transform .5s ease;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.7);
}

.fab--visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.fab--visible:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .6);
}

/* ══════════════════════════════════════
   TOAST / NOTIFICAÇÃO
   Mensagens temporárias
══════════════════════════════════════ */

.toast {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: .85rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
  z-index: 10000;
  transition: bottom .3s;
}

.toast.show {
  bottom: 2rem;
}

/* ══════════════════════════════════════
   PÁGINA DE CHECKOUT
   Página de finalização de compra
══════════════════════════════════════ */

#checkout-page {
  background: var(--cream);
  padding: 72px 0 0;
}

/* Breadcrumb de navegação */
.co-breadcrumb {
  padding: 1.2rem 5%;
  background: var(--stone);
  border-bottom: 1px solid var(--stone2);
  font-size: .75rem;
  color: #3a3028;
  letter-spacing: .04em;
  max-width: 100%;
}

.co-bc-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  color: #3a3028;
}

.co-bc-inner button {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  padding: 0;
  transition: color .2s;
}

.co-bc-inner button:hover {
  color: var(--ink);
}

.co-bc-sep {
  color: var(--stone2);
}

/* Corpo do checkout — layout mais largo */
.co-body {
  max-width: 1300px;
  margin: 2.5rem auto 0;
  padding: 0 0 0 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  align-items: start;
}

/* Galeria do checkout */
.co-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 92px;
  padding: 0 3rem 0 5%;
}

/* Coluna direita do checkout */
.co-summary {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 5% 0 3rem;
  border-left: 1px solid var(--stone2);
}

/* Galeria do checkout */
.co-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 92px;
}

/* Imagem principal — sem corte, mostra a imagem inteira */
.co-gallery-main {
  width: 100%;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  border-radius: 10px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.co-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity .25s ease;
}

.co-gallery-thumbs {
  display: flex;
  gap: .7rem;
}

.co-thumb {
  flex: 0 0 65px;
  height: 65px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s;
  background: var(--stone);
}

.co-thumb:hover {
  transform: translateY(-2px);
}

.co-thumb.active {
  border-color: var(--gold);
  box-shadow: 0 2px 10px rgba(201,169,110,.3);
}

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

/* Descrição do produto abaixo das thumbnails */
.co-gallery-desc {
  font-size: .88rem;
  color: #3a3028;
  line-height: 1.7;
  margin-top: .4rem;
}

.co-trust-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: .8rem;
}

.co-trust-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: #3a3028;
  background: var(--stone);
  border: 1px solid var(--stone2);
  border-radius: 20px;
  padding: .4rem .85rem;
  line-height: 1.3;
}

/* Informações do produto */
.co-info {
  background: #fff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

/* Botão de voltar */
.co-back {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: none;
  border: 1px solid var(--stone2);
  color: #3a3028;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 1.2rem;
  transition: color .2s, border-color .2s, background .2s;
}

.co-back:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--stone);
}

/* Breadcrumb interno */
.co-breadcrumb-inner {
  font-size: .73rem;
  color: #3a3028;
  letter-spacing: .04em;
  margin-bottom: .6rem;
}

.co-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.co-h1 em {
  font-style: italic;
  color: var(--gold);
}

.co-prod-title {
  font-size: .95rem;
  color: #3a3028;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Seção de conteúdo do checkout */
.co-section {
  margin-bottom: 2.5rem;
}

.co-section h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 1rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: .7rem;
}

/* Lista de funcionalidades */
.co-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.co-feats li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: .88rem;
  color: #2c2820;
  line-height: 1.7;
}

.co-feats li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: .1rem;
}

/* Destaque de benefício */
.co-highlight {
  background: #fef9f0;
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  margin-top: 2rem;
  border-radius: 0 4px 4px 0;
}

.co-highlight strong {
  display: block;
  font-size: .95rem;
  color: var(--ink);
  margin-bottom: .5rem;
}

.co-highlight p {
  font-size: .85rem;
  color: #3a3028;
  line-height: 1.6;
}

/* Sumário do pedido */
.co-summary {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Card do sumário */
.co-card {
  background: #fff;
  padding: 2.2rem 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
  border: 1px solid var(--stone2);
}

.co-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 1.8rem;
  font-weight: 400;
}

/* Preço principal */
.co-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--ink);
  line-height: 1;
  margin-bottom: .5rem;
}

.co-price sup {
  font-size: 1.2rem;
  vertical-align: super;
}

/* Preço antigo riscado no checkout */
.co-old-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #aaa;
  text-decoration: line-through;
  margin-left: .8rem;
  vertical-align: middle;
  opacity: .75;
}

/* Informações de parcelamento */
.co-inst {
  font-size: .8rem;
  color: #3a3028;
  margin-bottom: .4rem;
}

.co-pix {
  font-size: .85rem;
  color: var(--gold);
  letter-spacing: .02em;
  margin-bottom: 2.5rem;
}

.co-pix em {
  font-style: normal;
  font-weight: 600;
}

/* Tabs de pagamento */
.pay-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.5rem;
  background: var(--stone);
  border-radius: 8px;
  padding: 4px;
  border: 1px solid var(--stone2);
}

.pay-tab {
  flex: 1;
  padding: .7rem .5rem;
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #3a3028;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .3rem;
}

.pay-tab:hover {
  color: var(--ink);
  background: rgba(255,255,255,.6);
}

.pay-tab.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 6px rgba(0,0,0,.1);
}

/* Painéis de pagamento */
.pay-panel {
  display: none;
}

.pay-panel.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
}

/* Informações do Pix */
.pix-info {
  background: #faf8f5;
  border: 1px solid #e8e2d9;
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  width: 100%;
  text-align: center;
}

.pix-info p {
  font-size: .82rem;
  color: #3a3028;
  line-height: 1.7;
}

.pix-info strong {
  color: var(--ink);
}

/* Tag de desconto Pix */
.pix-discount-tag {
  display: inline-block;
  background: #e8f5e9;
  color: #2d7b3f;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .3rem .8rem;
  border-radius: 20px;
  margin-bottom: .7rem;
}

/* Botão Pix — visual limpo e consistente */
.pix-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  width: 100%;
  background: #32bcad;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: .95rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .2s;
}

.pix-link-btn:hover {
  background: #28a89a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(50,188,173,.35);
}

/* QR Code do Pix */
.pix-qr {
  text-align: center;
  width: 100%;
  margin: .5rem 0;
}

.pix-qr img {
  width: 180px;
  height: 180px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
}

/* Chave Pix */
.pix-key {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 1rem;
  text-align: center;
  font-family: 'Courier New', monospace;
  font-size: .85rem;
  color: var(--ink);
  width: 100%;
  word-break: break-all;
}

/* Botão de copiar Pix */
.copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: var(--gold);
  color: var(--ink);
  padding: .85rem 1.8rem;
  border: none;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .25s;
  width: 100%;
}

.copy-btn:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

.copy-btn.done {
  background: #28a745;
  color: #fff;
}

/* Botão de pagamento com cartão */
.btn-card-cta {
  display: flex;
  align-items: center;
  gap: .7rem;
  justify-content: center;
  background: #7b2d5e;
  color: #fff;
  padding: .95rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .25s;
  width: 100%;
  text-decoration: none;
}

.btn-card-cta:hover {
  background: #6a2451;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 45, 94, .35);
}

/* Botão PayPal/WhatsApp */
.btn-wa {
  display: flex;
  align-items: center;
  gap: .7rem;
  justify-content: center;
  background: #003087;
  color: #fff;
  padding: .95rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .25s;
  width: 100%;
  text-decoration: none;
}

.btn-wa:hover {
  background: #00256e;
  transform: translateY(-2px);
}

/* Aviso do WhatsApp */
.wa-notice {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  background: #faf8f5;
  border: 1px solid #e8e2d9;
  border-radius: 6px;
  padding: .9rem 1rem;
  font-size: .76rem;
  color: var(--mist);
  line-height: 1.6;
  width: 100%;
  text-align: left;
}

.wa-notice span:first-child {
  font-size: 1rem;
  flex-shrink: 0;
}

/* Container dos ícones de bandeiras de pagamento */
.co-cards {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .5rem;
}

/* Cada ícone de bandeira */
.co-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 24px;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0d9ce;
  flex-shrink: 0;
}

.co-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Divisor do checkout */
.co-divider {
  height: 1px;
  background: var(--stone2);
  margin: 1.5rem 0;
}

/* Box de preço do checkout */
.co-price-box {
  margin-bottom: 0;
}

/* Grid de confiança */
.co-trust-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: .6rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #eee;
}

.co-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .73rem;
  color: #2c2820;
  line-height: 1.4;
}

.co-trust-item span:first-child {
  font-size: 1rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   MODAL DE PAGAMENTO SEGURO
   Overlay de redirecionamento
══════════════════════════════════════ */

#secure-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 8, 6, .85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn .25s ease-out;
}

#secure-overlay.active {
  display: flex;
}

/* Modal de segurança */
.secure-modal {
  background: #fff;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .3);
  animation: fadeUp .35s .05s both ease-out;
}

/* Ícone de cadeado */
.secure-lock-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0f9f0, #d4edda);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  border: 2px solid #b8e0c0;
}

.secure-lock-icon svg {
  width: 28px;
  height: 28px;
  color: #2d7b3f;
}

.secure-modal h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .6rem;
  letter-spacing: .01em;
}

.secure-modal p {
  font-size: .84rem;
  color: var(--mist);
  line-height: 1.65;
  margin-bottom: 1.6rem;
}

/* Barra de progresso */
.secure-progress {
  width: 100%;
  height: 4px;
  background: #f0ece5;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1.4rem;
}

.secure-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #7b2d5e, #C9A96E);
  border-radius: 2px;
  animation: progressBar 2.2s ease-in-out forwards;
}

@keyframes progressBar {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Badges de segurança */
.secure-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  padding: .9rem;
  background: #faf8f5;
  border-radius: 6px;
  border: 1px solid #e8e2d9;
  margin-bottom: 1.2rem;
}

.secure-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  font-size: .62rem;
  color: var(--mist);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.secure-badge-item svg {
  width: 22px;
  height: 22px;
}

/* Botão de cancelar */
.secure-cancel {
  font-size: .72rem;
  color: #bbb;
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  transition: color .2s;
}

.secure-cancel:hover {
  color: var(--ink);
}

/* Esconder rodapé do Elfsight */
.elfsight-clip {
  position: relative;
  border-radius: 75px;
}

.elfsight-cover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 75px;
  background: #111111;
  z-index: 100;
  pointer-events: none;
  border-radius: 0 0 75px 75px;
}

/* ══════════════════════════════════════
   PÁGINA DE TERMOS
   Políticas & Termos com menu lateral
══════════════════════════════════════ */

#termos-page {
  background: var(--cream);
  padding-top: 72px;
  min-height: 100vh;
}

/* Hero dos termos */
.terms-hero {
  text-align: center;
  padding: 4rem 5% 3rem;
  background: var(--stone);
  border-bottom: 1px solid var(--stone2);
}

.terms-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: .6rem;
}

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

.terms-hero-sub {
  font-size: .78rem;
  color: var(--mist);
  letter-spacing: .08em;
  margin-bottom: 1.2rem;
}

.terms-hero-intro {
  font-size: .88rem;
  color: #3a3028;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

.terms-hero-intro a {
  color: var(--gold);
  text-decoration: underline;
}

/* Layout com menu lateral */
.terms-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 5% 6rem;
  gap: 5rem;
  align-items: start;
}

/* Menu lateral */
.terms-nav {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.terms-nav-link {
  display: block;
  padding: .7rem 1rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: #3a3028;
  border-left: 2px solid var(--stone2);
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
  border-radius: 0 4px 4px 0;
  background: none;
  text-decoration: none;
}

.terms-nav-link:hover {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(201,169,110,.06);
}

.terms-nav-link.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(201,169,110,.08);
  font-weight: 600;
}

/* Seções de conteúdo */
.terms-content {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.terms-sec {
  scroll-margin-top: 110px;
}

.terms-sec-h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.8rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.terms-sec-h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 1.5rem 0 .6rem;
}

.terms-sec p {
  font-size: .9rem;
  color: #3a3028;
  line-height: 1.85;
  margin-bottom: .5rem;
}

.terms-sec a {
  color: var(--gold);
  text-decoration: underline;
}

/* Accordion dos termos (mantido para compatibilidade) */
.term-acc {
  border-bottom: 1px solid var(--stone2);
  padding: 1.5rem 0;
}

.term-sum {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
}

.term-sum::-webkit-details-marker {
  display: none;
}

.term-arr-icon {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform .3s;
  flex-shrink: 0;
}

.term-acc[open] .term-arr-icon {
  transform: rotate(45deg);
}

.term-body {
  padding-top: 1.2rem;
  font-size: .9rem;
  color: var(--mist);
  line-height: 1.8;
}

.term-body a {
  color: var(--gold);
  text-decoration: underline;
}

/* ══════════════════════════════════════
   O QUE É COLORAÇÃO PESSOAL
══════════════════════════════════════ */

.oque-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}

.oque-text {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: flex-start;
}

.oque-text p {
  font-size: .95rem;
  color: #2c2820;
  line-height: 1.85;
}

.oque-video {
  width: 100%;
}

.oque-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15,13,10,.12);
  border: 1px solid var(--stone2);
}

.oque-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ══════════════════════════════════════
   FAQ
   Perguntas frequentes
══════════════════════════════════════ */

.faq-acc {
  border-bottom: 1px solid rgba(201, 169, 110, .18);
  padding: .75rem 0;
}

.faq-sum {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  list-style: none;
  gap: 1.5rem;
}

.faq-sum::-webkit-details-marker {
  display: none;
}

.faq-acc[open] .term-arr-icon {
  transform: rotate(45deg);
}

.faq-body {
  padding-top: 1.2rem;
  font-size: .9rem;
  color: rgba(253, 250, 245, .6);
  line-height: 1.8;
}

/* ══════════════════════════════════════
   MEDIA QUERIES / RESPONSIVO
   Adaptações para telas menores
══════════════════════════════════════ */

/* ── TABLET / MOBILE LANDSCAPE (≤ 900px) ── */
@media (max-width: 900px) {

  /* ── HEADER ── */
  .desk-nav { display: none; }
  .mob-btn  { display: flex; }

  .lang-selector { margin-left: .5rem; }
  .lang-current  { padding: .35rem .5rem; font-size: 1rem; }

  #hdr {
    height: 64px;
    padding: 0 5%;
  }

  .logo { font-size: 1.15rem; }

  /* ── HERO ── */
  #hero {
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    margin-top: -72px;
    padding-top: 72px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 6% 0.3rem;
    width: 100%;
    align-items: flex-end;
    margin-top: 45vh;
    position: relative;
    z-index: 2;
  }

  .hero-left {
    max-width: 100%;
    width: 100%;
    padding-right: 0;
    text-align: center;
    align-items: center;
  }

  .hero-eyebrow {
    justify-content: center;
    font-size: .58rem;
    margin-bottom: .6rem;
  }

  .hero-h1 {
    font-size: clamp(1.7rem, 6.5vw, 2.4rem);
    line-height: 1.12;
    margin-bottom: .7rem;
  }

  .hero-body {
    font-size: .8rem;
    margin-bottom: .9rem;
    max-width: 100%;
    color: rgba(253, 250, 245, .78);
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    gap: .5rem;
    width: 100%;
    align-items: stretch;
    margin-bottom: .8rem;
  }

  .btn-gold,
  .btn-ghost {
    padding: .75rem 1.5rem;
    font-size: .7rem;
    justify-content: center;
    width: 100%;
  }

  /* Stats: grade 3 colunas compacta */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 0.3rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(253, 250, 245, .12);
  }

  .hero-stats > div {
    text-align: center;
    padding: .2rem .3rem;
    border-right: 1px solid rgba(253, 250, 245, .08);
  }

  .hero-stats > div:last-child { border-right: none; }

  .hero-stat-n { font-size: 1.3rem; }
  .hero-stat-l { font-size: .54rem; }

  /* Hero bg: absolute cobrindo todo o hero incluindo atrás do header */
  .hero-bg-image {
    position: absolute;
    top: -72px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% + 72px);
    z-index: 1;
  }

  .hero-bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,.10) 0%,
      rgba(0,0,0,.05) 30%,
      rgba(0,0,0,.55) 55%,
      rgba(0,0,0,.88) 100%
    );
    z-index: 2;
  }

  .hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 8%;
    filter: brightness(1.25);
  }

  /* ── MARQUEE ── */
  .marquee-item { font-size: .65rem; }

  /* ── SEÇÕES GERAIS ── */
  .sec {
    padding: 4rem 5%;
  }

  .sec-h2 {
    font-size: clamp(1.65rem, 5.5vw, 2.2rem);
    margin-bottom: .8rem;
  }

  .sec-body {
    font-size: .88rem;
    max-width: 100%;
  }

  .sec-eyebrow { font-size: .63rem; }

  /* ── COMO FUNCIONA ── */
  .process-grid {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }

  .process-item {
    padding: 1.8rem 1.4rem;
    border-right: none;
    border-bottom: 1px solid var(--stone2);
  }

  .process-item:last-child { border-bottom: none; }

  /* Setas laterais viram marcadores de etapa */
  .process-arrow {
    display: none;
  }

  /* ── O QUE É COLORAÇÃO PESSOAL ── */
  .oque-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .oque-video {
    order: -1;
  }

  /* ── SOBRE ── */
  .about-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-eyebrow-block { display: block; order: 0; align-self: flex-start; width: 100%; }
  .about-eyebrow-block .sec-eyebrow { justify-content: flex-start; margin-left: 0; }
  .about-img-frame { order: 1; width: min(340px, 100%); margin: 0 auto; align-self: center; }
  .about-header { display: block; order: 2; }
  .about-content { order: 3; }
  .about-content .sec-body { text-align: justify; }
  .oque-text p { text-align: justify; }
  .process-item p { text-align: justify; }
  .about-desk-header { display: none; }

  .about-stat-card {
    right: -1rem;
    bottom: 1.5rem;
    padding: 1rem 1.4rem;
  }

  .about-stat-n { font-size: 1.6rem; }
  .about-gold-line { display: none; }

  .about-stats-grid {
    grid-template-columns: 1fr 1.3fr;
    margin: 1.5rem 0 2rem;
  }

  .about-stat-item {
    padding: 1.1rem 1.2rem;
  }

  .about-stat-item .about-stat-n { font-size: 1.5rem; }

  /* ── CARROSSEL ── */
  .carousel-wrapper { padding: 0 48px; overflow: hidden; }

  .carousel-item {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .ba-images {
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }

  .ba-img { min-width: 0; }

  .carousel-btn {
    width: 38px;
    height: 38px;
  }

  /* ── DEPOIMENTOS ── */
  #depoimentos .sec-body { margin-bottom: 2rem; }

  /* ── PREÇOS ── */
  .pricing-tabs {
    flex-direction: column;
    margin-top: 2rem;
  }

  .pricing-tab {
    border-right: none;
    border-bottom: 1px solid rgba(201, 169, 110, .12);
    padding: .95rem 1.2rem;
    font-size: .72rem;
    text-align: center;
  }

  .pricing-tab.active { border-bottom: 2px solid var(--gold); }

  .pricing-content { margin-top: 2rem; }

  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .price-card {
    padding: 2.2rem 1.6rem;
  }

  .price-name { font-size: 1.65rem; }
  .price-big  { font-size: 3rem; }

  .price-feats { gap: .8rem; }
  .price-feats li { font-size: .82rem; }

  /* ── FOOTER ── */
  footer { padding: 3.5rem 5% 2rem; }

  .foot-top {
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem 3rem;
  }

  .foot-brand { grid-column: 1 / -1; }

  /* ── CHECKOUT ── */
  #checkout-page { padding: 64px 0 0; }

  .co-body {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    padding: 0;
  }

  .co-gallery {
    padding: 1.5rem 5%;
    background: var(--stone);
    border-bottom: 1px solid var(--stone2);
    position: static;
  }

  .co-gallery-main {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    background: var(--stone2);
    margin-bottom: 1rem;
  }

  .co-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .co-gallery-thumbs {
    display: flex;
    gap: .6rem;
    overflow-x: auto;
    padding-bottom: .4rem;
  }

  .co-thumb {
    flex: 0 0 68px;
    height: 68px;
    border-radius: 4px;
    overflow: hidden;
  }

  .co-trust-badges {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-top: 1rem;
  }

  .co-summary {
    position: static;
    padding: 1.8rem 5%;
  }

  .co-back { margin-bottom: .8rem; }

  .co-h1 { font-size: clamp(1.5rem, 5.5vw, 2rem); }

  .co-price { font-size: 2.5rem; }

  .co-trust-row {
    grid-template-columns: 1fr 1.3fr;
    gap: .6rem;
  }

  .co-breadcrumb { padding: 1rem 5%; }

  /* Tabs de pagamento */
  .pay-tabs {
    gap: 0;
  }

  .pay-tab {
    padding: .6rem .3rem;
    font-size: .65rem;
  }

  /* ── TERMOS ── */
  #termos-page { padding-top: 64px; }

  .terms-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 5% 4rem;
  }

  .terms-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: .4rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--stone2);
  }

  .terms-nav-link {
    border-left: none;
    border-bottom: 2px solid var(--stone2);
    border-radius: 4px 4px 0 0;
    padding: .5rem .9rem;
    font-size: .75rem;
  }

  .terms-nav-link:hover,
  .terms-nav-link.active {
    border-left: none;
    border-bottom-color: var(--gold);
  }

  .terms-nav .btn-gold {
    width: 100%;
    margin-top: .5rem;
  }

  /* ── FAB ── */
  .fab {
    bottom: 1.5rem;
    right: 1.2rem;
    width: 54px;
    height: 54px;
  }

  /* ── MODAL SEGURO ── */
  .secure-modal {
    padding: 2rem 1.6rem;
    width: 92%;
  }
}

/* ── MOBILE PEQUENO (≤ 600px) ── */
@media (max-width: 600px) {

  /* ── HEADER ── */
  #hdr { padding: 0 4%; }
  .logo { font-size: 1.05rem; }

  /* ── HERO ── */
  .hero-h1 {
    font-size: clamp(1.95rem, 8.5vw, 2.5rem);
  }

  .hero-content { padding: 0 5% 3rem; }

  .hero-stat-n { font-size: 1.45rem; }
  .hero-stat-l { font-size: .56rem; letter-spacing: .04em; }

  /* ── SEÇÕES ── */
  .sec { padding: 3.5rem 5%; }

  /* ── PROCESSO ── */
  .process-item { padding: 1.5rem 1.2rem; }

  /* ── SOBRE ── */
  .about-img-frame { width: 100%; }

  .about-stat-card {
    right: 0;
    bottom: 1rem;
    padding: .8rem 1.1rem;
  }

  .about-stat-n { font-size: 1.4rem; }

  .about-stats-grid {
    grid-template-columns: 1fr 1.3fr;
  }

  /* ── CARROSSEL ── */
  .carousel-wrapper { padding: 0 36px; overflow: hidden; }

  .carousel-item {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .ba-images {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    overflow: hidden;
  }

  .ba-img {
    aspect-ratio: 3/4;
    min-width: 0;
    overflow: hidden;
  }

  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: .75rem;
  }

  .ba-caption { font-size: .8rem; padding: 1rem; }

  /* ── PREÇOS ── */
  .price-card { padding: 1.8rem 1.3rem; }

  .price-name { font-size: 1.45rem; }
  .price-big  { font-size: 2.6rem; }

  /* ── FOOTER ── */
  .foot-top {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .foot-brand { 
    grid-column: auto;
    text-align: center;
    max-width: 100%;
  }

  .foot-logo {
    justify-content: center;
  }

  .foot-socials {
    justify-content: center;
  }

  .foot-acc-head {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: none;
    border: none;
    border-top: 1px solid rgba(253,250,245,.07);
    padding: .9rem 0;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
  }

  .foot-acc-head .foot-col-title {
    margin: 0;
    color: rgba(253,250,245,.5);
  }

  .foot-acc-icon {
    width: 16px;
    height: 16px;
    color: rgba(253,250,245,.3);
    transition: transform .25s;
    flex-shrink: 0;
  }

  .foot-acc-head[aria-expanded="true"] .foot-acc-icon {
    transform: rotate(180deg);
    color: var(--gold);
  }

  .foot-acc-head[aria-expanded="true"] .foot-col-title {
    color: var(--gold);
  }

  .foot-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, opacity .25s ease;
    opacity: 0;
    padding-bottom: 0;
    text-align: center;
  }

  .foot-acc-body.open {
    max-height: 400px;
    opacity: 1;
    padding-bottom: .8rem;
  }

  .foot-acc-body .foot-list {
    align-items: center;
  }

  /* Contato col: centralizado */
  .foot-col:not(.foot-acc) {
    text-align: center;
  }

  .foot-col:not(.foot-acc) .foot-col-title {
    display: block;
    padding-top: .9rem;
    border-top: 1px solid rgba(253,250,245,.07);
    margin-bottom: 1rem;
  }

  .foot-col:not(.foot-acc) h4 {
    border-top: 1px solid rgba(253,250,245,.07);
    padding-top: .9rem;
    text-align: center;
  }

  .foot-col:not(.foot-acc) .foot-list {
    align-items: center;
  }

  .foot-bottom {
    text-align: center;
  }

  /* ── CHECKOUT ── */
  .co-trust-row {
    grid-template-columns: 1fr;
  }

  .pay-tabs { flex-wrap: nowrap; overflow-x: auto; }

  .co-gallery { padding: 1.2rem 4%; }

  .co-summary { padding: 1.5rem 4%; }

  /* ── TERMOS ── */
  .term-sum { font-size: 1rem; }

  /* ── MODAL ── */
  .secure-badges { gap: .8rem; flex-wrap: wrap; }

  /* ── FAB ── */
  .fab {
    width: 50px;
    height: 50px;
    bottom: 1.2rem;
    right: 1rem;
  }

  .fab img { width: 26px; height: 26px; }
}
/* ══════════════════════════════════════
   LIGHTBOX COM ZOOM
   Modal de visualização de imagens com suporte a zoom
══════════════════════════════════════ */

/* Cursor de zoom na imagem principal */
.co-gallery-main {
  cursor: zoom-in;
}

/* Overlay do lightbox */
#lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(12, 10, 8, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  animation: lbFadeIn .22s ease;
}

#lightbox-overlay.open {
  display: flex;
}

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Container da imagem com overflow oculto para zoom */
.lb-img-wrap {
  position: relative;
  width: 90vw;
  max-width: 860px;
  height: 80vh;
  overflow: hidden;
  border-radius: 10px;
  cursor: grab;
  user-select: none;
}

.lb-img-wrap.grabbing {
  cursor: grabbing;
}

/* Imagem dentro do lightbox */
#lightbox-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center center;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform .18s ease;
  pointer-events: none;
  border-radius: 6px;
}

/* Barra de controles */
.lb-controls {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(15, 13, 10, 0.8);
  border: 1px solid rgba(201, 169, 110, .25);
  border-radius: 50px;
  padding: .45rem .8rem;
  backdrop-filter: blur(10px);
  z-index: 10000;
}

.lb-btn {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background .15s;
}

.lb-btn:hover {
  background: rgba(201, 169, 110, .15);
}

.lb-zoom-level {
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  font-family: 'DM Sans', sans-serif;
  min-width: 40px;
  text-align: center;
  letter-spacing: .04em;
}

/* Botão fechar */
.lb-close {
  position: fixed;
  top: 1.2rem;
  right: 1.4rem;
  background: rgba(15, 13, 10, 0.75);
  border: 1px solid rgba(201, 169, 110, .25);
  color: var(--gold);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 10000;
  transition: background .15s, transform .15s;
  backdrop-filter: blur(8px);
}

.lb-close:hover {
  background: rgba(201, 169, 110, .2);
  transform: scale(1.08);
}

/* Hint de zoom na primeira abertura */
.lb-hint {
  position: fixed;
  top: 1.3rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 13, 10, 0.7);
  border: 1px solid rgba(201, 169, 110, .2);
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .05em;
  padding: .35rem .9rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  pointer-events: none;
  animation: lbHint 2.5s ease forwards;
  z-index: 10000;
}

@keyframes lbHint {
  0%   { opacity: 0; transform: translateX(-50%) translateY(-4px); }
  20%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  80%  { opacity: 1; }
  100% { opacity: 0; }
}

/* Indicadores de navegação entre imagens */
.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 13, 10, 0.7);
  border: 1px solid rgba(201, 169, 110, .2);
  color: var(--gold);
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: background .15s, transform .15s;
  backdrop-filter: blur(8px);
  font-size: 1.1rem;
}

.lb-nav:hover {
  background: rgba(201, 169, 110, .2);
}

.lb-nav-prev { left: 1rem; }
.lb-nav-next { right: 1rem; }

@media (max-width: 600px) {
  .lb-nav { display: none; }
  .lb-img-wrap { width: 100vw; height: 75vh; border-radius: 0; }
}

/* ══════════════════════════════════════
   ABA MASCULINA — destaque especial
══════════════════════════════════════ */

/* Tab masculina com ícone ativo */
.pricing-tab:nth-child(2).active {
  border-color: rgba(180, 130, 80, .7);
  background: rgba(201, 169, 110, .12);
}

/* Badge de desconto no card masculino */
.masc-badge {
  display: inline-block;
  background: linear-gradient(135deg, #c9562e, #e8763e);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .25rem .65rem;
  border-radius: 50px;
  margin-bottom: .5rem;
  text-transform: uppercase;
}

/* Tab masculina — destaque visual */
.pricing-tab-masc {
  border-left: 1px solid rgba(201,169,110,.15);
  position: relative;
}

.pricing-tab-masc::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background: rgba(201,169,110,.2);
}

/* ══════════════════════════════════════
   FAIXA "MAIS VENDIDA" — diagonal no card
══════════════════════════════════════ */
.price-ribbon {
  position: absolute;
  top: 22px;
  right: -30px;
  width: 130px;
  background: linear-gradient(135deg, #C9A96E, #E8C989);
  color: #0F0D0A;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  padding: .35rem 0;
  transform: rotate(35deg);
  box-shadow: 0 2px 8px rgba(201,169,110,.35);
  z-index: 2;
}
/* ══════════════════════════════════════
   O QUE VOCÊ RECEBE — GRID
══════════════════════════════════════ */
.recebe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 1rem;
}

.recebe-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,110,.14);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  transition: border-color .25s, background .25s;
}

.recebe-item:hover {
  background: rgba(201,169,110,.07);
  border-color: rgba(201,169,110,.3);
}

.recebe-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: .1rem;
}

.recebe-h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 .45rem;
}

.recebe-p {
  font-size: .88rem;
  color: var(--mist);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .recebe-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .recebe-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .recebe-item {
    padding: 1.1rem 1rem;
  }
}

/* ══════════════════════════════════════
   O QUE VOCÊ RECEBE — NOVO LAYOUT 2 COLUNAS
══════════════════════════════════════ */

/* Remove grid antigo, novo layout lado a lado */
.recebe-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}

/* ── Coluna esquerda: lista vertical ── */
.recebe-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

/* Herda estilos do .recebe-item anterior mas compacta */
.recebe-left .recebe-item {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(201,169,110,.12);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  transition: border-color .25s, background .25s;
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}

.recebe-left .recebe-item:hover {
  background: rgba(201,169,110,.07);
  border-color: rgba(201,169,110,.28);
}

.recebe-left .recebe-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: .05rem;
}

.recebe-left .recebe-h3 {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 .25rem;
}

.recebe-left .recebe-p {
  font-size: .83rem;
  color: var(--mist);
  line-height: 1.5;
  margin: 0;
}

/* ── Coluna direita: carousel ── */
.recebe-right {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.recebe-carousel {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  background: var(--ink2);
  aspect-ratio: 1 / 1;
}

.recebe-slides {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.recebe-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.recebe-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Setas */
.recebe-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15,13,10,.55);
  border: 1px solid rgba(201,169,110,.25);
  color: var(--gold);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.recebe-nav:hover {
  background: rgba(201,169,110,.2);
  border-color: rgba(201,169,110,.55);
}

.recebe-nav-prev { left: .75rem; }
.recebe-nav-next { right: .75rem; }

/* Dots */
.recebe-dots {
  display: flex;
  gap: .45rem;
  justify-content: center;
}

.recebe-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(201,169,110,.3);
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}

.recebe-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── Responsivo ── */
@media (max-width: 1024px) {
  .recebe-layout {
    gap: 2.5rem;
  }
}

@media (max-width: 820px) {
  .recebe-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .recebe-right {
    position: static;
    order: -1; /* Carousel aparece ANTES da lista no mobile */
  }

  .recebe-carousel {
    aspect-ratio: 4/3;
    max-height: 340px;
  }
}

/* ══════════════════════════════════
   IA PREVIEW — layout dois colunas + carousel quadrado
══════════════════════════════════ */
.ia-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}

.ia-text {
  text-align: left;
}

/* Carousel col */
.ia-carousel-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ia-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 11 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
}

.ia-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}

.ia-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

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

/* Nav arrows */
.ia-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  border: none;
  color: #fff;
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .2s;
  line-height: 1;
}
.ia-nav:hover { background: rgba(0,0,0,.7); }
.ia-nav-prev { left: 10px; }
.ia-nav-next { right: 10px; }

/* Dots */
.ia-dots {
  display: flex;
  gap: .45rem;
  justify-content: center;
}
.ia-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}
.ia-dot.active {
  background: var(--gold, #c9a96e);
  transform: scale(1.3);
}

/* Responsivo */
@media (max-width: 900px) {
  .ia-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ia-text {
    text-align: center;
    order: 2;
  }
  .ia-carousel-col {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    order: 1;
  }
}


/* ══════════════════════════════════
   CTA FINAL — fundo claro + foto
══════════════════════════════════ */
.cta-final-sec {
  background: var(--cream, #fdfaf5);
  border-top: 1px solid rgba(0,0,0,.07);
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.cta-final-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}

/* Coluna da foto */
.cta-final-img-col {
  display: flex;
  justify-content: center;
}

.cta-final-img-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  background: #f0ebe3;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.cta-final-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Placeholder enquanto a foto não é adicionada */
.cta-final-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #b09070;
  font-size: .85rem;
  text-align: center;
  padding: 1.5rem;
  line-height: 1.5;
}
.cta-final-img-placeholder small {
  font-size: .72rem;
  opacity: .6;
  font-family: monospace;
}
/* Oculta placeholder quando a imagem carrega com sucesso */
.cta-final-img-wrap img:not([style*="display:none"]) + .cta-final-img-placeholder {
  display: none;
}

/* Coluna do texto */
.cta-final-text {
  text-align: left;
}

.cta-final-text .sec-h2 {
  color: var(--ink, #1a1218);
}

.cta-final-text .sec-body {
  color: rgba(26,18,24,.65);
}

/* Responsivo */
@media (max-width: 900px) {
  .cta-final-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cta-final-img-col {
    order: -1;
  }
  .cta-final-img-wrap {
    max-width: 360px;
    margin: 0 auto;
  }
  .cta-final-text {
    text-align: center;
  }
}


/* ══════════════════════════════════
   SUA ANÁLISE COMPLETA — carousel funcional
══════════════════════════════════ */
#o-que-recebe .recebe-layout {
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}

#o-que-recebe .recebe-right {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-right: -4vw;
}

#o-que-recebe .recebe-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  background: var(--ink2);
}

#o-que-recebe .recebe-slides {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

#o-que-recebe .recebe-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

#o-que-recebe .recebe-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 820px) {
  #o-que-recebe .recebe-layout {
    grid-template-columns: 1fr;
  }
  #o-que-recebe .recebe-right {
    position: static;
    order: -1;
  }
  #o-que-recebe .recebe-carousel {
    aspect-ratio: 5 / 3;
  }
}