/* Método Vender — identidade: preto, vermelho, títulos prata (ref.:
 * material_atual/TREINAMENTOS2026.pdf). Montserrat (títulos) + Inter (corpo). */

:root {
  --preto: #0a0a0b;
  --preto-2: #101012;
  --card: #17171a;
  --borda: #27272c;
  --vermelho: #e10600;
  --vermelho-escuro: #7a0f2b;
  --branco: #ffffff;
  --cinza: #b9b9c1;
  --cinza-escuro: #7c7c85;
  --fonte-titulo: "Montserrat", "Segoe UI", Arial, sans-serif;
  --fonte-corpo: "Inter", "Segoe UI", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--preto);
  color: var(--branco);
  font-family: var(--fonte-corpo);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.container { width: min(1100px, 92%); margin-inline: auto; }

/* ---------- tipografia ---------- */

h1, h2, h3 { font-family: var(--fonte-titulo); line-height: 1.15; }

h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 800; text-transform: uppercase; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; text-transform: uppercase; }
h3 { font-size: 1.15rem; font-weight: 700; }

/* efeito prata degradê dos títulos do material oficial */
.titulo-prata {
  background: linear-gradient(180deg, #ffffff 0%, #cfcfd6 45%, #6f6f78 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.destaque-vermelho { color: var(--vermelho); }

.sub { color: var(--cinza); max-width: 46rem; }
.centro { text-align: center; }
.centro .sub, .sub.centro { margin-inline: auto; }

.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }

/* ---------- botões ---------- */

.btn {
  display: inline-block;
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 0.85rem 2.1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--vermelho) 0%, var(--vermelho-escuro) 100%);
  color: var(--branco);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(225, 6, 0, 0.35); }

.btn.claro { background: var(--branco); color: #1a1a1e; }

.btn.grande { font-size: 1.05rem; padding: 1rem 2.6rem; }

.btn-whats { background: linear-gradient(90deg, #1ebe5d 0%, #128c46 100%); }
.btn-whats:hover { box-shadow: 0 8px 24px rgba(30, 190, 93, 0.35); }

/* ---------- header ---------- */

.topo {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--borda);
}

.topo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.marca {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.marca img { height: 40px; }

.menu { display: flex; gap: 1.4rem; align-items: center; }

.menu a {
  color: var(--cinza);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.menu a:hover, .menu a.ativo { color: var(--branco); }

.menu .btn { padding: 0.55rem 1.4rem; font-size: 0.8rem; }

@media (max-width: 720px) {
  .menu a:not(.btn) { display: none; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(225, 6, 0, 0.12), transparent 70%),
    var(--preto);
}

.hero .marca-agua {
  position: absolute;
  right: -4rem;
  top: 50%;
  transform: translateY(-50%);
  width: min(48vw, 520px);
  opacity: 0.07;
  pointer-events: none;
}

.hero-conteudo { position: relative; max-width: 40rem; }

.hero .citacao {
  margin-top: 3rem;
  font-style: italic;
  color: var(--cinza-escuro);
  font-size: 0.95rem;
  border-left: 2px solid var(--borda);
  padding-left: 1rem;
  max-width: 30rem;
}

/* ---------- seções ---------- */

.secao { padding: 4.5rem 0; }
.secao.escura { background: var(--preto-2); border-block: 1px solid var(--borda); }

.cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--borda);
  border-radius: 14px;
  padding: 1.6rem;
}

.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--cinza); font-size: 0.95rem; }
.card .btn { margin-top: 1.1rem; }

/* sobre: foto do casal + razões */

.sobre-grid {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 820px) {
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-grid .foto-casal { max-width: 340px; margin-inline: auto; }
}

.foto-casal {
  background: var(--card);
  border: 1px solid var(--borda);
  border-radius: 14px;
  overflow: hidden;
}

.foto-casal img { width: 100%; }

.foto-casal figcaption {
  padding: 0.8rem 1rem;
  text-align: center;
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 0.9rem;
}

.foto-casal figcaption small { display: block; color: var(--cinza-escuro); font-weight: 500; }

/* logo IMV no hero da landing (fundo preto da arte se funde com o do site) */

/* PNG recortado sem a margem preta do JPG original — larguras compensam o corte */
.logo-imv-hero { display: block; width: min(59vw, 255px); margin: 0 auto 1.2rem; }

@media (min-width: 901px) {
  .logo-imv-hero {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    width: min(32vw, 400px);
    margin: 0;
  }
}

/* números/razões (por que escolher) */

.razao { display: flex; gap: 1rem; align-items: flex-start; }

.razao .icone {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--vermelho);
  display: grid;
  place-items: center;
  color: #fff;
}

.razao .icone svg { width: 24px; height: 24px; }

@media (max-width: 720px) {
  .razao { flex-direction: column; align-items: center; text-align: center; }
}

/* mosaico de fotos das turmas (autoridade) */

.mosaico-turmas {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(6, 1fr);
}

.mosaico-turmas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--borda);
  display: block;
}

.mosaico-turmas img:nth-child(-n+2) { grid-column: span 3; aspect-ratio: 3 / 2; }
.mosaico-turmas img:nth-child(n+3) { grid-column: span 2; aspect-ratio: 4 / 3; }
.mosaico-turmas img:nth-child(n+6) { grid-column: span 3; aspect-ratio: 3 / 2; }

@media (max-width: 720px) {
  .mosaico-turmas { grid-template-columns: 1fr; }
  .mosaico-turmas img:nth-child(-n+2),
  .mosaico-turmas img:nth-child(n+3) { grid-column: auto; aspect-ratio: auto; }
}

/* lightbox das fotos de turmas */

.mosaico-turmas img { cursor: zoom-in; transition: opacity 0.15s; }
.mosaico-turmas img:hover { opacity: 0.85; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 3.4rem;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  border: 1px solid var(--borda);
}

.lightbox button {
  position: absolute;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  opacity: 0.7;
}

.lightbox button:hover { opacity: 1; }

.lightbox .lb-fechar { top: 0.5rem; right: 0.6rem; }
.lightbox .lb-ant { left: 0.2rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-prox { right: 0.2rem; top: 50%; transform: translateY(-50%); }

/* ---------- programas ---------- */

.programa { position: relative; padding-top: 2.2rem; display: flex; flex-direction: column; }

.programa .numero {
  position: absolute;
  top: -1.1rem;
  left: 1.4rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 8px;
  background: var(--vermelho);
  display: grid;
  place-items: center;
  font-family: var(--fonte-titulo);
  font-weight: 800;
  font-size: 1.15rem;
}

.programa .formato {
  color: var(--vermelho);
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.programa ul { list-style: none; margin-top: 0.8rem; }

.programa ul li {
  color: var(--cinza);
  font-size: 0.92rem;
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.35rem;
}

.programa ul li::before { content: "•"; color: var(--vermelho); position: absolute; left: 0; }

.programa .preco {
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--fonte-titulo);
  font-weight: 800;
  font-size: 1.25rem;
}

.programa .preco small { display: block; color: var(--cinza-escuro); font-weight: 500; font-size: 0.78rem; }

.programa.premium { border-color: #b8963e; }
.programa.premium .destaque-selo { color: #d9b45a; }

/* ---------- depoimentos ---------- */

.depoimento { position: relative; }

.depoimento::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--vermelho);
  display: block;
  margin-bottom: 0.3rem;
}

.depoimento .autor { margin-top: 1rem; font-weight: 700; color: var(--branco); font-size: 0.92rem; }
.depoimento .empresa { color: var(--cinza-escuro); font-size: 0.85rem; }

/* carrossel de depoimentos (montado pelo site.js sobre a grade de cards) */

.carrossel {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 3rem, #000 calc(100% - 3rem), transparent);
  mask-image: linear-gradient(to right, transparent, #000 3rem, #000 calc(100% - 3rem), transparent);
}

.carrossel .trilho { display: flex; gap: 1.25rem; width: max-content; }

.carrossel .card { flex: 0 0 auto; width: min(340px, 78vw); }

/* ---------- bloco do lote (landing imersão) ---------- */

.lote-box {
  background: var(--card);
  border: 1px solid var(--vermelho);
  border-radius: 18px;
  padding: 2.2rem;
  max-width: 30rem;
  margin-inline: auto;
  text-align: center;
  box-shadow: 0 0 60px rgba(225, 6, 0, 0.15);
}

.lote-box .lote-nome {
  font-family: var(--fonte-titulo);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vermelho);
  font-size: 0.9rem;
}

.lote-box .lote-preco {
  font-family: var(--fonte-titulo);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 3.6rem);
  margin: 0.4rem 0;
}

.lote-box .lote-preco small { font-size: 1.2rem; font-weight: 700; vertical-align: super; }

.lote-box .lote-prazo { color: var(--cinza); font-size: 0.95rem; }

.lote-box .btn { margin-top: 1.4rem; width: 100%; }

.lote-box .lote-obs { margin-top: 0.9rem; color: var(--cinza-escuro); font-size: 0.8rem; }

/* ---------- página de links (bio) ---------- */

.pagina-links {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.2rem 2rem;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(225, 6, 0, 0.14), transparent 70%),
    var(--preto);
}

.pagina-links .logo-links { width: 84px; margin-bottom: 1rem; }

.linklist { width: min(430px, 100%); margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.8rem; }

.linklist a {
  display: block;
  background: var(--card);
  border: 1px solid var(--borda);
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.12s ease, border-color 0.12s ease;
}

.linklist a:hover { transform: translateY(-2px); border-color: var(--vermelho); }

.linklist a.principal { background: linear-gradient(90deg, var(--vermelho) 0%, var(--vermelho-escuro) 100%); border: none; }

/* ---------- rodapé ---------- */

.rodape {
  border-top: 1px solid var(--borda);
  padding: 2.5rem 0;
  color: var(--cinza-escuro);
  font-size: 0.88rem;
}

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

.rodape a { color: var(--cinza); text-decoration: none; }
.rodape a:hover { color: var(--branco); }

.rodape .sociais { display: flex; gap: 1.2rem; }
