/* ============================================================
   ECP — MÉTODO EMAGRECIMENTO FEMININO
   Arquivo de estilos principal (style.css)
   Abordagem MOBILE FIRST: os estilos base valem para celular;
   telas maiores são tratadas em media queries (min-width) mais
   abaixo, sempre ampliando/ajustando o que já existe.
   ============================================================ */

/* ============================================================
   1. RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: #0d0d0d;
  color: #fff;
  overflow-x: hidden;
}

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

/* ============================================================
   2. VARIÁVEIS GLOBAIS
   Edite aqui para mudar cores e espaçamentos do site inteiro
   ============================================================ */

:root {
  /* Dourado — cor principal da marca */
  --gold: #e8c97e;
  --gold-dim: rgba(232, 201, 126, 0.15);
  --gold-border: rgba(232, 201, 126, 0.18);

  /* Fundos escuros — variações para criar profundidade entre seções */
  --dark: #0d0d0d;
  --dark-2: #111111;
  --dark-3: #0e0b05;

  /* Branco com opacidades — usado em textos e bordas */
  --white-80: rgba(255, 255, 255, 0.8);
  --white-55: rgba(255, 255, 255, 0.55);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-06: rgba(255, 255, 255, 0.06);
  --white-03: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.07);

  /* WhatsApp */
  --whatsapp-green: #25d366;
  --whatsapp-green-dark: #1ebe5b;

  /* Espaçamento lateral das seções — cresce nas media queries */
  --pad-x: 20px;
  --pad-y: 64px;

  /* Largura máxima de conteúdo em telas muito grandes */
  --max-content: 1240px;
}

/* ============================================================
   3. UTILITÁRIOS — usados em várias seções
   ============================================================ */

.section-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 6vw, 42px);
  font-weight: 700;
  color: #fff;
  padding: 0 8px;
}

.section-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 40px;
}

/* Container central reutilizável para não deixar o conteúdo
   esticar demais em monitores muito largos */
.identifica-grid,
.metodo-grid,
.planos-grid,
.transf-grid,
.depo-grid,
.virada-inner,
.hero-content {
  max-width: var(--max-content);
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   4. NAVBAR — barra fixa no topo (mobile first: logo + hambúrguer)
   ============================================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px var(--pad-x);
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  transition:
    padding 0.3s ease,
    border-color 0.3s ease;
}

nav.scrolled {
  padding: 12px var(--pad-x);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-decoration: none;
  z-index: 101;
}

.nav-logo span {
  display: block;
  font-size: 8px;
  font-weight: 400;
  color: var(--white-30);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
  margin-top: -2px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 0.5px solid var(--gold-border);
  border-radius: 4px;
  cursor: pointer;
  z-index: 101;
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100svh;
  padding: 100px 32px 40px;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s;
  z-index: 99;
}

.nav-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  color: var(--white-80);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 600;
  padding: 14px 30px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.15s;
}

.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

body.nav-lock {
  overflow: hidden;
}

/* ============================================================
   5. HERO — seção principal (tela cheia, imagem "daid.enc")
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 20px 24px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #1a1008;
  background-image: url("imagens/metodo.jpeg");
  background-size: 200%;
  background-repeat: no-repeat;
  background-position: center 15%;
  filter: brightness(0.55);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.82) 0%,
    rgba(13, 13, 13, 0.72) 35%,
    rgba(13, 13, 13, 0.82) 70%,
    rgba(13, 13, 13, 0.96) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-para-mulheres {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-30);
  margin-bottom: 12px;
  padding: 0 12px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 10vw, 84px);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 10px;
  overflow-wrap: break-word;
}

.hero-title-sub {
  font-family: "Playfair Display", serif;
  font-size: clamp(14px, 3vw, 20px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 22px;
  line-height: 1.6;
  padding: 0 12px;
}

.hero-sub {
  font-size: clamp(13px, 2vw, 16px);
  color: var(--white-50);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 36px;
  padding: 0 6px;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
  width: 100%;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--gold);
  color: var(--dark);
  padding: 17px 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  width: 100%;
  max-width: 320px;
  cursor: pointer;
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.15s;
  border: none;
}

.hero-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.hero-btn svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.hero-btn:hover svg {
  transform: translateX(4px);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white-55);
  padding: 10px 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  border: none;
  border-bottom: 0.5px solid var(--border);
  transition: color 0.2s;
  width: fit-content;
}

.hero-btn-secondary:hover {
  color: var(--gold);
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 28px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  max-width: 340px;
  align-items: center;
}

.stat-divider {
  display: none;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
}

.stat-label {
  font-size: 10px;
  color: var(--white-30);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  text-align: center;
}

.hero-overlay-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-top: 24px;
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0.5px solid var(--gold-border);
  padding: 20px 18px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  z-index: 3;
}

.overlay-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-dim);
  border: 0.5px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.overlay-main {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

.overlay-sub {
  font-size: 10.5px;
  color: var(--white-30);
  margin-top: 3px;
}

/* ============================================================
   6. VOCÊ SE IDENTIFICA? — cards de dor/identificação (1 coluna no mobile)
   ============================================================ */

.identifica-section {
  padding: 28px var(--pad-x) var(--pad-y);
  background: var(--dark-3);
}

.identifica-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.identifica-card {
  border: 0.5px solid var(--border);
  padding: 28px 24px;
  border-radius: 4px;
  background: var(--white-03);
  transition:
    border-color 0.25s,
    background 0.25s;
  position: relative;
  overflow: hidden;
}

.identifica-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.35s ease;
}

.identifica-card:hover::before {
  height: 100%;
}

.identifica-card:hover {
  border-color: var(--gold-border);
  background: rgba(232, 201, 126, 0.03);
}

.identifica-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.identifica-card-text {
  font-size: 14px;
  color: var(--white-50);
  line-height: 1.8;
  font-weight: 300;
}

/* ============================================================
   7. VIRADA DE CHAVE — texto persuasivo central
   ============================================================ */

.virada-section {
  padding: var(--pad-y) var(--pad-x);
  background: var(--dark-2);
  text-align: center;
}

.virada-inner {
  max-width: 760px;
}

.virada-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.virada-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 7vw, 54px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 8px;
  color: #fff;
}

.virada-title em {
  color: var(--gold);
  font-style: normal;
}

.virada-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 28px;
}

.virada-text {
  font-size: 15px;
  color: var(--white-50);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 36px;
}

.virada-text strong {
  color: var(--gold);
  font-weight: 500;
}

.virada-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.virada-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gold);
  color: var(--dark);
  padding: 17px 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  width: 100%;
  max-width: 300px;
  transition:
    opacity 0.2s,
    transform 0.15s;
}

.virada-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.virada-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: transparent;
  color: var(--gold);
  padding: 16px 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  border: 0.5px solid var(--gold-border);
  width: 100%;
  max-width: 300px;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.virada-btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.virada-btn-outline-ult {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: transparent;
  color: var(--dark);
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  border: 0.5px solid var(--gold-border);
  width: 100%;
  max-width: 300px;
  transition:
    background 0.2s,
    border-color 0.2s;
  position: relative;
  bottom: 30px;
  background: var(--gold);
}

.virada-btn-outline-ult:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

/* ============================================================
   8. OS 3 PILARES DO MÉTODO — cards numerados (1 coluna no mobile)
   ============================================================ */

.metodo-section {
  padding: var(--pad-y) var(--pad-x);
  background: var(--dark);
}

.metodo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.metodo-card {
  border: 0.5px solid var(--border);
  padding: 32px 24px;
  border-radius: 4px;
  background: var(--white-03);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    border-color 0.25s,
    background 0.25s;
}

.metodo-card:hover {
  border-color: var(--gold-border);
  background: rgba(232, 201, 126, 0.03);
}

.metodo-num {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 900;
  color: rgba(232, 201, 126, 0.12);
  line-height: 1;
}

.metodo-card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3px;
}

.metodo-card-text {
  font-size: 14px;
  color: var(--white-50);
  line-height: 1.8;
  font-weight: 300;
  flex: 1;
}

/* ============================================================
   9. PLANOS — 4 cards de assinatura
   ============================================================ */

.planos-section {
  padding: var(--pad-y) var(--pad-x);
  background: var(--dark-2);
}

.planos-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 44px;
}

.planos-intro p {
  font-size: 14px;
  color: var(--white-50);
  font-weight: 300;
  line-height: 1.8;
}

.planos-nota {
  font-size: 13px;
  color: var(--gold);
  margin-top: 10px;
  font-style: italic;
}

.planos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.plano-card {
  border: 0.5px solid var(--border);
  border-radius: 4px;
  background: var(--white-03);
  transition: border-color 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}

.plano-card:hover {
  border-color: var(--gold-border);
}

.plano-card.destaque {
  border-color: var(--gold-border);
  background: rgba(232, 201, 126, 0.04);
}

.plano-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0 4px 0 4px;
}

.plano-header {
  padding: 28px 24px 20px;
  border-bottom: 0.5px solid var(--border);
  min-width: 0;
}

.plano-nome {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-30);
  margin-bottom: 8px;
}

.plano-titulo {
  font-family: "Playfair Display", serif;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.plano-preco {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  row-gap: 2px;
  column-gap: 8px;
  line-height: 1.2;
}

.plano-preco-valor {
  font-size: clamp(18px, 5.5vw, 30px);
  font-weight: 900;
  color: var(--gold);
}

.plano-preco-info {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(10px, 2.4vw, 12.5px);
  font-weight: 400;
  color: var(--white-30);
  white-space: normal;
}

.plano-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.plano-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  flex: 1;
}

.plano-lista li {
  font-size: 13px;
  color: var(--white-50);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.plano-lista li strong {
  color: var(--gold);
  font-weight: 600;
}

.plano-lista li::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8c97e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 1px;
}

.plano-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  margin-top: auto;
  transition:
    opacity 0.2s,
    transform 0.15s;
}

.plano-btn-gold {
  background: var(--gold);
  color: var(--dark);
}

.plano-btn-outline {
  background: transparent;
  color: var(--gold);
  border: 0.5px solid var(--gold-border);
}

.plano-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ============================================================
   10. TRANSFORMAÇÕES — fotos de resultado das alunas
   ========================================================= */

.transf-section {
  padding: var(--pad-y) var(--pad-x);
  background: var(--dark-3);
}

/* Não é mais um carrossel de arrastar, então a dica some */
.transf-hint {
  display: none;
}

.transf-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  margin-top: 100px;
}

.transf-card {
  position: relative;
  flex: 1 1 240px; /* tende a esse tamanho, mas cresce/encolhe */
  max-width: 300px; /* nunca fica maior que isso */
  min-width: 160px; /* nunca fica menor que isso */
  aspect-ratio: 3 / 4.4;
  border-radius: 4px;
  overflow: hidden;
  border: 1px;
  background-color: #c1bc1c;
  background-image: url("imagens/teste.jpeg");
  background-size: cover;
  background-position: center;
  cursor: default;
  height: 500px;
}

.transf-card-1 {
  background-image: url("imagens/3.jpg");
}
.transf-card-2 {
  background-image: url("imagens/2.jpg");
}
.transf-card-3 {
  background-image: url("imagens/1.jpg");
}
.transf-card-4 {
  background-image: url("imagens/4.jpg");
}

.transf-card-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 0.95) 0%,
    rgba(13, 13, 13, 0.35) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 14px;
}

.transf-card-result {
  font-size: 11px;
  color: var(--white-50);
  margin-top: 4px;
}

/* ============================================================
   11. DEPOIMENTOS — avaliações das alunas (1 coluna no mobile)
   ============================================================ */

.depo-section {
  padding: var(--pad-y) var(--pad-x);
  background: var(--dark);
}

.depo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.depo-card {
  background: var(--white-03);
  border: 0.5px solid var(--gold-border);
  padding: 26px 22px;
  border-radius: 4px;
}

.depo-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.depo-text {
  font-size: 14px;
  color: var(--white-50);
  line-height: 1.8;
  margin-bottom: 18px;
  font-style: italic;
  font-weight: 300;
}

.depo-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

.depo-meta {
  font-size: 11px;
  color: var(--white-30);
  margin-top: 4px;
}

/* ============================================================
   12. CTA FINAL — chamada para ação com fundo dourado
   ============================================================ */

.cta-section {
  padding: var(--pad-y) var(--pad-x);
  background: var(--gold);
  text-align: center;
}

.cta-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 8vw, 44px);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 14px;
}

.cta-sub {
  font-size: 16px;
  color: rgba(13, 13, 13, 0.55);
  margin-bottom: 32px;
  font-weight: 300;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  background: var(--dark);
  color: var(--gold);
  padding: 17px 36px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  width: 100%;
  max-width: 320px;
  transition:
    opacity 0.2s,
    transform 0.15s;
}

.cta-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ============================================================
   13. FOOTER — logo, links, Instagram e copyright (empilhado no mobile)
   ============================================================ */

footer {
  padding: 16px var(--pad-x) calc(8px + 16px);
  background: #080808;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  text-align: center;
  border-top: 0.5px solid var(--border);
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 2px;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 22px;
  list-style: none;
}

.footer-links a {
  font-size: 10px;
  color: var(--white-30);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 0.5px solid var(--gold-border);
  border-radius: 999px;
  background: var(--white-03);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.15s;
}

.footer-instagram svg {
  flex-shrink: 0;
}

.footer-instagram:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.footer-copy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.5px;
}

/* ============================================================
   13b. BOTÃO FLUTUANTE DO WHATSAPP
   ============================================================ */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  right: calc(18px + env(safe-area-inset-right, 0px));
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.35),
    0 0 0 0 rgba(37, 211, 102, 0.5);
  z-index: 200;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  animation: whatsapp-pulse 2.6s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: var(--whatsapp-green-dark);
  transform: translateY(-2px) scale(1.05);
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow:
      0 6px 18px rgba(0, 0, 0, 0.35),
      0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow:
      0 6px 18px rgba(0, 0, 0, 0.35),
      0 0 0 10px rgba(37, 211, 102, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
  }
}

/* ============================================================
   14. ANIMAÇÕES — fade-up ao entrar na viewport (via JS)
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  color: white;
}

.fade-up-delay-1 {
  transition-delay: 0.1s;
}
.fade-up-delay-2 {
  transition-delay: 0.2s;
}
.fade-up-delay-3 {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   15. RESPONSIVO — MOBILE FIRST
   ============================================================ */

@media (max-width: 379px) {
  .plano-header {
    padding: 24px 18px 18px;
  }
  .plano-body {
    padding: 18px 18px 20px;
  }
}

@media (min-width: 480px) {
  :root {
    --pad-x: 28px;
  }

  .hero-btns {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-btn,
  .hero-btn-secondary {
    width: auto;
  }

  .virada-btns {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .virada-btn,
  .virada-btn-outline {
    width: auto;
  }

  .cta-btn {
    width: auto;
  }
}

@media (min-width: 600px) {
  :root {
    --pad-y: 84px;
  }

  .identifica-section {
    padding-top: 36px;
  }

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

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

  .transf-grid {
    gap: 20px;
  }

  .planos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: center;
    max-width: none;
    gap: 32px;
  }
  .stat-divider {
    display: block;
    width: 0.5px;
    background: var(--border);
  }
}

/* NOVO: Depoimentos — centraliza o 3º card sozinho apenas
   enquanto o grid está em 2 colunas (tablet/mobile-landscape).
   A partir de 900px o grid já vira 3 colunas e os 3 cards
   preenchem certinho, então essa regra não se aplica mais lá. */
@media (min-width: 600px) and (max-width: 899px) {
  .depo-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 8px);
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .planos-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .plano-header {
    padding: 30px 16px 16px;
  }

  .plano-titulo {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .plano-body {
    padding: 16px 16px 18px;
  }

  .plano-lista {
    gap: 9px;
  }

  .plano-lista li {
    font-size: 11.5px;
  }
}

@media (min-width: 900px) {
  :root {
    --pad-x: 60px;
    --pad-y: 60px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    height: auto;
    padding: 0;
    background: transparent;
    flex-direction: row;
    gap: 40px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-links {
    flex-direction: row;
    gap: 32px;
  }

  .nav-links a {
    font-size: 11px;
  }

  body.nav-lock {
    overflow: auto;
  }

  .hero {
    padding: 120px 24px 56px;
  }

  .hero-bg {
    background-position: center center;
    background-size: cover;
  }

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

  .hero-overlay-card {
    max-width: 460px;
    margin-top: 40px;
  }

  .identifica-section {
    padding-top: 44px;
  }

  .identifica-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .metodo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .planos-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .plano-header {
    padding: 24px 20px 18px;
  }

  .plano-titulo {
    font-size: 19px;
  }

  .plano-body {
    padding: 18px 20px 20px;
  }

  .plano-lista li {
    font-size: 12.5px;
  }

  .depo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .virada-btns {
    gap: 24px;
  }

  /* Cards de transformação: no desktop deixamos maiores e com
     mais liberdade de crescimento antes de quebrar linha */
  .transf-grid {
    gap: 24px;
  }

  .transf-card {
    flex: 1 1 260px;
    max-width: 320px;
    min-width: 200px;
  }

  .whatsapp-float {
    width: 60px;
    height: 60px;
    right: calc(28px + env(safe-area-inset-right, 0px));
    bottom: calc(85px + env(safe-area-inset-bottom, 0px));
  }

  footer {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    gap: 20px 32px;
  }

  .footer-links {
    order: 2;
  }

  .footer-instagram {
    order: 3;
  }

  .footer-copy {
    order: 4;
    width: 100%;
    text-align: center;
  }
}

/* NOVO: Transformações — força exatamente 2 colunas (2x2) 
   enquanto as 4 fotos não cabem lado a lado numa linha só.
   Isso substitui o comportamento antigo em flex, que às vezes
   jogava "3 numa linha e 1 sozinha embaixo". A partir de 1200px
   (bloco abaixo) elas voltam a caber as 4 numa linha só. */
@media (min-width: 600px) and (max-width: 1199px) {
  .transf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .transf-card {
    flex: none;
    width: 100%;
    max-width: none;
    min-width: 0;
  }
}

@media (min-width: 1200px) {
  .hero-sub {
    max-width: 520px;
  }

  .transf-grid {
    display: flex;
    gap: 28px;
  }

  .transf-card {
    flex: 1 1 280px;
    max-width: 340px;
    min-width: 220px;
  }

  footer {
    flex-wrap: nowrap;
  }

  .footer-copy {
    order: 4;
    width: auto;
    margin-left: auto;
    text-align: right;
  }
}
