/* ============================================================
   A|CFO Masterclass
   Identidade visual conforme o manual da marca (v2):
   Azul Marinho #0B1E33 · Azul Médio #2E86C1 · Azul Claro #4FC3F7
   Branco #FFFFFF · Cinza Névoa #F0F4F8 · Tipografia Helvetica
   ============================================================ */

:root {
  --marinho:     #0B1E33;
  --marinho-2:   #10304F;
  --azul-medio:  #2E86C1;
  --azul-claro:  #4FC3F7;
  --branco:      #FFFFFF;
  --nevoa:       #F0F4F8;
  --texto:       #22313F;
  --texto-suave: #5A6B7B;
  --borda:       #DCE5EE;
  --erro:        #C0392B;
  --sucesso:     #1E8449;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--texto);
  background: var(--branco);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

.container { width: min(1140px, 90%); margin: 0 auto; }

/* ============================================================
   MARCA — logotipo A|CFO (proporções do manual)
   ============================================================ */
.marca {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}
.marca-a {
  font-weight: 200;
  letter-spacing: .02em;
}
.marca-barra {
  display: block;
  width: 1px;
  background: currentColor;
}
.marca-cfo {
  font-weight: 200;
  letter-spacing: .18em;
}

/* tamanhos: a barra e o CFO seguem a razão 64 : 48 : 26 do manual */
.marca-g .marca-a   { font-size: 4rem; }
.marca-g .marca-barra { height: 3rem; margin: 0 .55rem 0 .5rem; }
.marca-g .marca-cfo { font-size: 1.62rem; }

.marca-m .marca-a   { font-size: 2.6rem; }
.marca-m .marca-barra { height: 1.95rem; margin: 0 .4rem 0 .34rem; }
.marca-m .marca-cfo { font-size: 1.05rem; }

.marca-p .marca-a   { font-size: 1.9rem; }
.marca-p .marca-barra { height: 1.42rem; margin: 0 .32rem 0 .26rem; }
.marca-p .marca-cfo { font-size: .78rem; }

.marca-claro { color: var(--branco); }
.marca-claro .marca-barra { background: var(--azul-claro); }
.marca-claro .marca-cfo   { color: var(--azul-claro); }

.marca-escuro { color: var(--marinho); }
.marca-escuro .marca-barra { background: var(--azul-medio); }
.marca-escuro .marca-cfo   { color: var(--azul-medio); }

/* ============================================================
   ÍCONES
   ============================================================ */
.ico { width: 22px; height: 22px; flex-shrink: 0; }
.ico-btn { width: 18px; height: 18px; margin-left: .5rem; }

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-cta {
  background: var(--azul-claro);
  color: var(--marinho);
  font-size: 1.02rem;
  letter-spacing: .02em;
  padding: .92rem 2.1rem;
  box-shadow: 0 8px 26px rgba(79, 195, 247, .32);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(79, 195, 247, .45); }
.btn-nav {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .28);
  color: var(--branco);
  padding: .58rem 1.3rem;
  font-size: .88rem;
  backdrop-filter: blur(6px);
}
.btn-nav:hover { background: rgba(255, 255, 255, .2); }
.btn-secundario {
  background: var(--azul-medio);
  color: var(--branco);
  padding: .78rem 1.5rem;
  font-size: .95rem;
}
.btn-secundario:hover { background: #256FA1; }
.btn-largo { width: 100%; }
.btn:disabled { opacity: .6; cursor: wait; transform: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--marinho);
  color: var(--branco);
  overflow: hidden;
}
.hero-fundo { position: absolute; inset: 0; z-index: 0; }
.hero-fundo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 8% 42%;
  filter: saturate(.5) brightness(.72);
  /* some antes de encontrar a imagem lateral, evitando sobreposição confusa */
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 34%, rgba(0,0,0,.35) 52%, transparent 66%);
          mask-image: linear-gradient(to right, #000 0%, #000 34%, rgba(0,0,0,.35) 52%, transparent 66%);
}
.hero-fundo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,30,51,.86) 0%, rgba(11,30,51,.6) 45%, rgba(11,30,51,.93) 100%),
    linear-gradient(100deg, rgba(11,30,51,.93) 5%, rgba(16,48,79,.35) 58%, rgba(46,134,193,.15) 100%);
}

.hero-nav { position: relative; z-index: 2; padding: .8rem 0; }
.hero-nav-int { display: flex; align-items: center; justify-content: space-between; }

/* Imagem lateral: sangra de cima a baixo e se dissolve à esquerda,
   para dar profundidade sem competir com o texto. */
.hero-lateral {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 46%;
  z-index: 1;
  pointer-events: none;
}
.hero-lateral img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 35% center;
  filter: saturate(.42) brightness(.92) contrast(1.02);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.25) 30%, rgba(0,0,0,.75) 62%, #000 100%);
          mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.25) 30%, rgba(0,0,0,.75) 62%, #000 100%);
}
.hero-lateral::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,30,51,.88) 0%, rgba(11,30,51,.28) 48%, rgba(16,48,79,.12) 100%);
}

.hero-conteudo {
  position: relative;
  z-index: 2;
  padding: 1rem 0 1.4rem;
}
.hero-texto { max-width: 640px; }
.hero-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--azul-claro);
  border: 1px solid rgba(79, 195, 247, .45);
  border-radius: 999px;
  padding: .32rem .95rem;
  margin-bottom: 1rem;
}
.hero-tag span { opacity: .6; margin: 0 .2rem; }

.hero h1 {
  font-weight: 200;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.15;
  letter-spacing: -.015em;
  margin-bottom: .75rem;
  max-width: 24ch;
}
.hero h1 .destaque { color: var(--azul-claro); font-weight: 400; }

.hero-sub {
  font-size: clamp(.93rem, 1.15vw, 1.02rem);
  color: #C6D7E6;
  max-width: 62ch;
  margin-bottom: 1rem;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.7rem;
  padding: .7rem 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  margin-bottom: 1rem;
}
.hero-info-item { display: flex; align-items: center; gap: .85rem; }
.hero-info-item .ico { color: var(--azul-claro); width: 26px; height: 26px; }
.hero-info-item div { display: flex; flex-direction: column; line-height: 1.35; }
.hero-info-item strong { font-size: .98rem; font-weight: 700; }
.hero-info-item span { font-size: .84rem; color: #93AAC0; }

.hero-acao { display: flex; align-items: center; flex-wrap: wrap; gap: 1.8rem; }
.hero-preco { display: flex; align-items: baseline; gap: .55rem; }
.hero-preco s { color: #7D93A8; font-size: 1.05rem; }
.hero-preco strong { color: var(--branco); font-size: 2.1rem; font-weight: 700; letter-spacing: -.02em; }
.hero-preco span { color: #93AAC0; font-size: .85rem; }

.hero-publico {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, .06);
  border-top: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(4px);
  padding: .72rem 0;
}
.hero-publico p {
  font-size: .87rem;
  letter-spacing: .04em;
  color: #A9BFD3;
  text-align: center;
}

/* ============================================================
   SEÇÕES
   ============================================================ */
.secao { padding: 5.5rem 0; }
.secao-clara { background: var(--branco); }
.secao-nevoa { background: var(--nevoa); }
.secao-escura { background: var(--marinho); color: #C4D5E5; }

.secao-etiqueta {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--azul-medio);
  margin-bottom: .9rem;
}
.secao-escura .secao-etiqueta { color: var(--azul-claro); }

.secao h2 {
  font-weight: 200;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.22;
  letter-spacing: -.01em;
  color: var(--marinho);
  margin-bottom: 1rem;
  max-width: 24ch;
}
.secao-escura h2 { color: var(--branco); }
.secao-sub { color: var(--texto-suave); max-width: 62ch; margin-bottom: 1rem; }
.secao-escura .secao-sub { color: #93AAC0; }

/* ---------- Grade texto + imagem ---------- */
.grade-dupla {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 4rem;
  align-items: center;
}
.texto-guia { margin-bottom: 1.6rem; max-width: 52ch; }

.grade-imagem { position: relative; }
.grade-imagem img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
}
.grade-imagem::before {
  content: "";
  position: absolute;
  inset: -14px -14px 40px 14px;
  border: 1px solid var(--azul-medio);
  border-radius: 4px;
  opacity: .35;
  z-index: -1;
}
.grade-imagem figcaption {
  background: var(--marinho);
  color: var(--branco);
  font-size: .95rem;
  padding: 1.1rem 1.3rem;
  border-left: 3px solid var(--azul-claro);
  margin: -2.5rem 1.5rem 0 -1.5rem;
  position: relative;
}

/* ---------- Lista de problemas ---------- */
.lista-problemas { list-style: none; display: grid; gap: .7rem; margin-bottom: 2rem; }
.lista-problemas li {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: var(--nevoa);
  border-left: 3px solid var(--azul-medio);
  border-radius: 3px;
  padding: .8rem 1.1rem;
  font-size: .97rem;
}
.lista-problemas .ico { color: var(--azul-medio); width: 19px; height: 19px; }

.citacao {
  border-left: 3px solid var(--azul-claro);
  padding-left: 1.5rem;
  display: grid;
  gap: .9rem;
}
.citacao p:first-child { font-size: 1.2rem; font-weight: 200; color: var(--marinho); line-height: 1.4; }
.citacao strong { font-weight: 700; }
.citacao p:last-child { color: var(--texto-suave); font-size: .96rem; }

/* ---------- Programa ---------- */
.dias {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
  margin-top: 2.8rem;
}
.dia {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 6px;
  padding: 2rem 1.7rem;
  transition: border-color .2s ease, transform .2s ease;
}
.dia:hover { border-color: rgba(79, 195, 247, .5); transform: translateY(-3px); }
.dia-topo {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding-bottom: .9rem;
  margin-bottom: 1.2rem;
}
.dia-numero {
  font-size: 2.6rem;
  font-weight: 200;
  color: var(--azul-claro);
  line-height: 1;
  letter-spacing: -.03em;
}
.dia-data {
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8FA8BF;
}
.dia h3 { color: var(--branco); font-weight: 400; font-size: 1.24rem; line-height: 1.3; margin-bottom: .5rem; }
.dia-sub { font-size: .89rem; color: var(--azul-claro); margin-bottom: 1.4rem; line-height: 1.45; }
.dia ul { list-style: none; display: grid; gap: 1.05rem; }
.dia li { font-size: .92rem; color: #A8BED2; line-height: 1.55; padding-left: 1rem; border-left: 2px solid rgba(79,195,247,.3); }
.dia li strong { display: block; color: var(--branco); font-weight: 700; margin-bottom: .18rem; font-size: .95rem; }

/* ---------- Instrutores (bloco centralizado) ---------- */
.secao-instrutores { text-align: center; }
.secao-instrutores h2,
.secao-instrutores .secao-sub { margin-left: auto; margin-right: auto; }
.secao-instrutores h2 { max-width: 26ch; }

.instrutores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.2rem;
  margin: 3rem auto 0;
  max-width: 880px;
}
.instrutor { text-align: center; }
.instrutor-foto {
  position: relative;
  width: 100%;
  max-width: 230px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  background: var(--marinho);
}
.instrutor-foto img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
  filter: grayscale(.15);
}
.instrutor:hover .instrutor-foto img { transform: scale(1.04); filter: grayscale(0); }
.instrutor-foto::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--azul-medio), var(--azul-claro));
}
.instrutor figcaption { margin-top: 1.1rem; display: grid; gap: .2rem; }
.instrutor strong { color: var(--marinho); font-size: 1.1rem; font-weight: 700; }
.instrutor span { color: var(--azul-medio); font-size: .84rem; letter-spacing: .03em; }

/* ---------- Listas de check ---------- */
.lista-check { list-style: none; display: grid; gap: .95rem; margin-top: 2rem; }
.lista-check li { display: flex; align-items: flex-start; gap: .85rem; font-size: 1rem; }
.lista-check .ico { color: var(--azul-medio); margin-top: .18rem; }
.lista-duas { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); column-gap: 3rem; }

/* ---------- Público ---------- */
.publico {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}
.publico-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: 5px;
  padding: 1.15rem 1.3rem;
}
.publico-item .ico { color: var(--azul-medio); }
.publico-item strong { font-size: .95rem; font-weight: 700; color: var(--marinho); line-height: 1.35; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  position: relative;
  background: var(--marinho);
  color: var(--branco);
  padding: 6rem 0;
  overflow: hidden;
  text-align: center;
}
.cta-fundo { position: absolute; inset: 0; z-index: 0; }
.cta-fundo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.35) brightness(.45);
}
.cta-fundo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,30,51,.93), rgba(11,30,51,.82));
}
.cta-conteudo { position: relative; z-index: 2; display: grid; justify-items: center; gap: 1.1rem; }
.cta-conteudo .simbolo { margin-bottom: .4rem; }
.cta-final h2 {
  font-weight: 200;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.25;
  color: var(--branco);
  max-width: 22ch;
}
.cta-frases { font-size: 1.15rem; color: #BED0E0; }
.cta-frases strong { color: var(--azul-claro); font-weight: 400; }
.cta-texto { color: #93AAC0; max-width: 56ch; font-size: .98rem; }

.cta-caixa {
  margin-top: 1.6rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  padding: 2.2rem 2.6rem;
  display: grid;
  justify-items: center;
  gap: 1.3rem;
  backdrop-filter: blur(8px);
}
.cta-preco { display: grid; justify-items: center; gap: .1rem; }
.cta-de { font-size: .92rem; color: #93AAC0; }
.cta-de s { color: #7D93A8; }
.cta-preco strong { font-size: 3.1rem; font-weight: 700; letter-spacing: -.03em; line-height: 1.1; }
.cta-obs { font-size: .84rem; color: #93AAC0; }
.cta-obs span { opacity: .5; margin: 0 .3rem; }

/* ============================================================
   RODAPÉ
   ============================================================ */
.rodape { background: #071523; color: #7A8CA0; padding: 2.4rem 0; font-size: .85rem; }
.rodape-int { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   CHECKOUT / OBRIGADO
   ============================================================ */
.pagina-checkout { background: var(--nevoa); }

.topo-simples { background: var(--marinho); padding: 1.1rem 0; }
.topo-simples .container { display: flex; align-items: center; justify-content: space-between; }
.topo-simples a { text-decoration: none; }
.topo-voltar { color: #93AAC0; font-size: .85rem; text-decoration: none; }
.topo-voltar:hover { color: var(--azul-claro); }

.checkout { max-width: 580px; padding: 2.8rem 0 4rem; }
.checkout h1 {
  font-weight: 200;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--marinho);
  text-align: center;
}
.checkout-sub {
  text-align: center;
  color: var(--texto-suave);
  font-size: .92rem;
  margin: .5rem 0 2rem;
}
.checkout-sub span { opacity: .5; margin: 0 .35rem; }

.card {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: 10px;
  padding: 1.8rem;
  margin-bottom: 1.1rem;
}

/* Valor */
.card-valor { text-align: center; border-top: 3px solid var(--azul-claro); }
.valor-rotulo {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--texto-suave);
}
.valor-de { color: #8295A7; margin-top: .45rem; font-size: .95rem; }
.valor-por strong { color: var(--marinho); font-size: 2.7rem; font-weight: 700; letter-spacing: -.03em; }
.valor-aviso {
  margin-top: 1rem;
  background: #E8F8EF;
  color: var(--sucesso);
  border-radius: 6px;
  padding: .7rem 1rem;
  font-size: .93rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.valor-aviso .ico { width: 18px; height: 18px; }

/* Cupom — bloco discreto, secundário em relação aos demais cartões */
.card-cupom {
  background: transparent;
  border: 1px dashed #C9D5E0;
  border-radius: 8px;
  padding: .9rem 1.1rem;
  margin-bottom: 1.1rem;
}
.card-cupom label {
  font-weight: 400;
  color: var(--texto-suave);
  display: block;
  margin-bottom: .5rem;
  font-size: .84rem;
}
.cupom-linha { display: flex; gap: .45rem; }
.cupom-linha input {
  flex: 1;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .88rem;
  padding: .55rem .75rem;
  border-width: 1px;
  background: var(--branco);
}
.cupom-linha .btn {
  padding: .55rem 1.05rem;
  font-size: .85rem;
  font-weight: 400;
  background: transparent;
  color: var(--azul-medio);
  border: 1px solid var(--azul-medio);
}
.cupom-linha .btn:hover { background: var(--azul-medio); color: var(--branco); }
.cupom-linha input::placeholder { text-transform: none; letter-spacing: normal; color: #9AAABA; }
.cupom-expirado {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  background: #FDF3E6;
  border-left: 3px solid #E0A32E;
  border-radius: 4px;
  padding: .6rem .8rem;
  margin-bottom: .8rem;
  font-size: .85rem;
  color: #8A5A16;
}
.cupom-expirado .ico { width: 16px; height: 16px; margin-top: .15rem; flex-shrink: 0; }
.cupom-msg { margin-top: .5rem; font-size: .84rem; min-height: 1.1em; }
.cupom-msg.ok   { color: var(--sucesso); }
.cupom-msg.erro { color: var(--erro); }

/* Formulário */
.card h2 { font-weight: 400; font-size: 1.18rem; color: var(--marinho); margin-bottom: 1.3rem; }
.campo { margin-bottom: 1.15rem; }
.campo label { display: block; font-weight: 700; font-size: .89rem; color: var(--marinho); margin-bottom: .4rem; }
.campo small { display: block; color: var(--texto-suave); font-size: .8rem; margin-top: .35rem; }

input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%;
  border: 1.5px solid #C9D5E0;
  border-radius: 6px;
  padding: .8rem .95rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--texto);
  background: var(--branco);
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus { outline: none; border-color: var(--azul-medio); box-shadow: 0 0 0 3px rgba(46,134,193,.12); }
input:disabled { background: var(--nevoa); color: var(--texto-suave); }

.alerta-erros {
  background: #FDEDEB;
  border-left: 3px solid var(--erro);
  border-radius: 4px;
  padding: .9rem 1.1rem;
  margin-bottom: 1.3rem;
  display: grid;
  gap: .35rem;
  font-size: .9rem;
  color: var(--erro);
}
.alerta-erros p { display: flex; align-items: flex-start; gap: .5rem; }
.alerta-erros .ico { width: 17px; height: 17px; margin-top: .15rem; }

.seguro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-size: .82rem;
  color: var(--texto-suave);
  margin-top: 1rem;
}
.seguro .ico { width: 15px; height: 15px; }

.oculto { display: none !important; }

/* ============================================================
   PAGAMENTO VIA PIX
   ============================================================ */
.pagamento { max-width: 560px; padding: 2.8rem 0 4rem; }
.card-pix { text-align: center; border-top: 3px solid var(--azul-claro); padding: 2.4rem 2rem; }
.pix-etiqueta {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--azul-medio);
  margin-bottom: .7rem;
}
.card-pix h1 {
  font-weight: 200;
  font-size: 1.65rem;
  line-height: 1.3;
  color: var(--marinho);
  margin-bottom: 1.4rem;
}
.pix-valor {
  display: inline-flex;
  align-items: baseline;
  gap: .6rem;
  background: var(--nevoa);
  border-radius: 6px;
  padding: .6rem 1.4rem;
  margin-bottom: 1.8rem;
}
.pix-valor span { font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--texto-suave); }
.pix-valor strong { font-size: 1.7rem; font-weight: 700; color: var(--marinho); letter-spacing: -.02em; }

.pix-qr {
  display: inline-block;
  padding: 14px;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: 10px;
}
.pix-qr img { width: 260px; height: 260px; image-rendering: pixelated; }
.pix-instrucao { font-size: .9rem; color: var(--texto-suave); margin: 1rem 0 1.8rem; }
.pix-instrucao strong { color: var(--marinho); }

.pix-copia { text-align: left; border-top: 1px solid var(--borda); padding-top: 1.5rem; }
.pix-copia label { display: block; font-weight: 700; font-size: .9rem; color: var(--marinho); margin-bottom: .6rem; }
.pix-copia-linha { display: flex; gap: .55rem; }
.pix-copia-linha input {
  flex: 1;
  font-size: .82rem;
  font-family: "Courier New", monospace;
  color: var(--texto-suave);
  background: var(--nevoa);
  overflow: hidden;
  text-overflow: ellipsis;
}
.pix-copia-msg { margin-top: .55rem; font-size: .87rem; min-height: 1.2em; }
.pix-copia-msg.ok   { color: var(--sucesso); }
.pix-copia-msg.erro { color: var(--erro); }

.pix-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  background: #EEF6FC;
  border: 1px solid #CBE4F5;
  border-radius: 6px;
  padding: .9rem 1.2rem;
  margin-top: 1.8rem;
  font-size: .92rem;
  color: #1B5E85;
}
.pix-spinner {
  width: 16px; height: 16px;
  border: 2px solid #A9D4EE;
  border-top-color: var(--azul-medio);
  border-radius: 50%;
  animation: girar .9s linear infinite;
  flex-shrink: 0;
}
@keyframes girar { to { transform: rotate(360deg); } }

.pix-status-ok { background: #E8F8EF; border-color: #B7E4CA; color: var(--sucesso); }
.pix-status-ok .pix-spinner { display: none; }
.pix-status-parado { background: #FDF3E6; border-color: #F0D9B5; color: #8A5A16; }
.pix-status-parado .pix-spinner { display: none; }

.pix-obs { font-size: .85rem; color: var(--texto-suave); margin-top: 1.2rem; line-height: 1.5; }
.pix-ajuda { text-align: center; font-size: .85rem; color: var(--texto-suave); margin-top: 1.2rem; }

/* Obrigado */
.obrigado { max-width: 640px; padding: 3.5rem 0 4.5rem; }
.card-obrigado { text-align: center; padding: 2.8rem 2.2rem; border-top: 3px solid var(--azul-claro); }
.obrigado-selo {
  width: 70px; height: 70px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--nevoa);
  display: grid;
  place-items: center;
  color: var(--azul-medio);
}
.obrigado-selo .ico { width: 34px; height: 34px; stroke-width: 1.6; }
.card-obrigado h1 { font-weight: 200; font-size: 1.9rem; color: var(--marinho); margin-bottom: .6rem; }
.card-obrigado > p { color: var(--texto-suave); }
.obrigado-whats {
  background: var(--nevoa);
  border-left: 3px solid var(--azul-medio);
  border-radius: 6px;
  padding: 1.2rem 1.4rem;
  margin: 1.6rem 0;
  text-align: left;
  display: grid;
  gap: .5rem;
}
.obrigado-whats-titulo {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  color: var(--marinho);
}
.obrigado-whats-titulo .ico { color: var(--azul-medio); width: 19px; height: 19px; }
.obrigado-whats p { font-size: .93rem; color: var(--texto-suave); }
.obrigado-datas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--texto-suave);
  font-size: .9rem;
  margin-bottom: 1.6rem;
}
.obrigado-datas .ico { width: 17px; height: 17px; color: var(--azul-medio); }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 900px) {
  .grade-dupla { grid-template-columns: 1fr; gap: 2.5rem; }
  .grade-imagem { max-width: 460px; }
  .grade-imagem::before { display: none; }
  .grade-imagem figcaption { margin: -2rem 1rem 0 1rem; }
}

@media (max-width: 980px) {
  .hero-lateral { width: 54%; }
  .hero-lateral img {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.5) 40%, #000 100%);
            mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.5) 40%, #000 100%);
  }
  .hero-conteudo { max-width: 100%; }
}

@media (max-width: 640px) {
  .secao { padding: 3.5rem 0; }
  .hero-conteudo { padding: 1.6rem 0 2.4rem; }
  .hero h1 { max-width: none; }
  .hero-lateral { width: 100%; opacity: .55; }
  .hero-lateral img {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.5) 50%, #000 100%);
            mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.5) 50%, #000 100%);
  }
  .hero-info { gap: 1.3rem; flex-direction: column; }
  .hero-acao { flex-direction: column; align-items: stretch; gap: 1.2rem; }
  .hero-preco { justify-content: center; }
  .btn-cta { width: 100%; padding: 1rem 1.2rem; }
  .cta-caixa { padding: 1.8rem 1.3rem; width: 100%; }
  .cta-final { padding: 4rem 0; }
  .cupom-linha { flex-direction: column; }
  .lista-duas { grid-template-columns: 1fr; }
  .rodape-int { justify-content: center; text-align: center; }
  .marca-p .marca-a { font-size: 1.7rem; }
}
