/* Página de campanha: /indiqueeganhe
   Mantém o projeto atual e adiciona estilos só para esta landing. */

body.indique {
  background: var(--paper);
  color: var(--ink);
}

.indique a { text-decoration: none; }

.indique .wrap{
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Fundo com “quadrados” suaves (tema das artes) */
.indique .wrap::before,
.indique .wrap::after{
  content:"";
  position:absolute;
  inset:-80px;
  pointer-events:none;
  background:
    radial-gradient(520px 360px at 18% 14%, rgba(28,156,204,.18), transparent 60%),
    radial-gradient(520px 360px at 82% 22%, rgba(28,156,204,.12), transparent 60%),
    radial-gradient(680px 420px at 80% 85%, rgba(14,60,91,.10), transparent 65%);
  z-index:0;
}
.indique .wrap::after{
  opacity:.9;
  background:
    radial-gradient(1px 1px at 18% 14%, rgba(14,60,91,.18), transparent 60%),
    radial-gradient(1px 1px at 82% 22%, rgba(14,60,91,.14), transparent 60%);
}

/* Header minimalista (somente marca) */
.indique-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0 10px;
}
.indique-brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.indique-brand img{
  /* Logo menor e mais elegante no topo da landing */
  width: clamp(140px, 18vw, 190px);
  max-height: 44px;
  height: auto;
  display: block;
  object-fit: contain;
}
.indique-brand .tag{
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(14,60,91,.75);
  border: 1px solid rgba(14,60,91,.18);
  padding: 8px 12px;
  border-radius: 999px;
}

/* Layout principal */
.indique-grid{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 44px;
  align-items: start;
  padding: 22px 0 60px;
}

@media (max-width: 980px){
  .indique-grid{ grid-template-columns: 1fr; }
}

/* Coluna esquerda */
.indique-title{
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.02;
  margin: 18px 0 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 900;
}
.indique-title strong{ font-weight: 950; }

.indique-lead{
  max-width: 52ch;
  font-size: 18px;
  color: rgba(14,60,91,.78);
}

.benefit-box{
  margin-top: 22px;
  border: 1.6px solid rgba(14,60,91,.26);
  border-radius: 18px;
  padding: 18px 18px;
  background: rgba(255,255,255,.55);
  box-shadow: 0 14px 30px rgba(12,33,51,.06);
}
.benefit-box p{
  margin: 0;
  font-size: 20px;
  color: rgba(14,60,91,.88);
}
.benefit-box b{
  color: var(--ink);
}

.price{
  margin: 34px 0 8px;
}
.price .big{
  font-size: clamp(56px, 6vw, 92px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.price .sub{
  margin-top: 6px;
  font-size: clamp(26px, 3vw, 44px);
  color: rgba(14,60,91,.85);
  font-weight: 550;
  letter-spacing: -0.02em;
}
.hr{
  height: 1px;
  background: rgba(14,60,91,.18);
  border: 0;
  margin: 18px 0 18px;
}

.h2{
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.05;
  font-weight: 900;
  color: var(--ink);
  margin: 22px 0 10px;
  letter-spacing: -0.02em;
}
.h2 .muted{
  display:block;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 500;
  color: rgba(14,60,91,.62);
  letter-spacing: -0.02em;
  margin-top: 6px;
}

/* Steps */
.steps{
  margin-top: 18px;
  display: grid;
  gap: 16px;
}
.step{
  display:grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}
.step .num{
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(28,156,204,.18);
  border: 1px solid rgba(28,156,204,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  color: var(--ink);
}
.step .txt{
  color: rgba(14,60,91,.85);
  font-size: 18px;
  line-height: 1.45;
}
.step .txt b{ color: var(--ink); }

/* Coluna direita: formulário */
.form-card{
  position: sticky;
  top: 20px;
  border-radius: 22px;
  background: #0b2a3e;
  box-shadow: 0 22px 60px rgba(12,33,51,.18);
  padding: 22px;
  color: rgba(255,255,255,.92);
}
@media (max-width: 980px){
  .form-card{ position: relative; top:auto; }
}

.form-card h3{
  margin: 0 0 6px;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 900;
  color: #fff;
}
.form-card p{
  margin: 0 0 14px;
  color: rgba(255,255,255,.78);
  font-size: 13.5px;
  line-height: 1.35;
}

.form{
  background: rgba(255,255,255,.98);
  border-radius: 18px;
  padding: 16px;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.12);
}
.field{
  display:flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 12px;
}
label{
  font-size: 12px;
  font-weight: 850;
  color: rgba(11,34,51,.78);
}
.req{ color: #d11; margin-left: 3px; }

input{
  height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(11,34,51,.18);
  background: #fff;
  font: inherit;
  color: var(--text);
  outline: none;
}
input:focus{
  border-color: rgba(28,156,204,.65);
  box-shadow: 0 0 0 4px rgba(28,156,204,.18);
}

.check{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  margin: 8px 0 14px;
}
.check input{
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.check small{
  color: rgba(11,34,51,.72);
  line-height: 1.35;
}
.check a{
  color: var(--ink);
  text-decoration: underline;
}

.form-actions{
  display:flex;
  gap: 12px;
  align-items:center;
}
.btn-camp{
  appearance:none;
  border: 0;
  height: 46px;
  border-radius: 12px;
  padding: 0 16px;
  font-weight: 900;
  letter-spacing: .02em;
  cursor: pointer;
  background: var(--accent);
  color: #06202f;
  box-shadow: 0 12px 24px rgba(28,156,204,.22);
}
.btn-camp:hover{ transform: translateY(-1px); }
.btn-camp:active{ transform: translateY(0); }

.note{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(11,34,51,.64);
}

/* Regulamento */
.reg{
  position: relative;
  z-index: 2;
  padding: 0 0 72px;
}
.reg-card{
  border-radius: 22px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(14,60,91,.18);
  box-shadow: 0 16px 40px rgba(12,33,51,.08);
  padding: 22px;
}
.reg-card h2{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 950;
  color: var(--ink);
}
.reg-card h3{
  margin: 18px 0 8px;
  font-size: 15px;
  font-weight: 950;
  color: rgba(14,60,91,.92);
}
.reg-card p,
.reg-card li{
  color: rgba(14,60,91,.80);
  font-size: 14px;
  line-height: 1.45;
}
.reg-card ul{ margin: 8px 0 0 18px; padding: 0; }
.reg-card li{ margin: 6px 0; }

.success{
  display:none;
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(28,156,204,.38);
  background: rgba(28,156,204,.14);
  color: rgba(11,34,51,.85);
  font-weight: 700;
  font-size: 13px;
}
.success.is-show{ display:block; }


/* Footer + voltar ao início */
.indique-footer{
  position: relative;
  z-index: 2;
  margin-top: 40px;
  padding: 22px 0 44px;
  border-top: 1px solid rgba(14,60,91,.14);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-note{
  margin: 0;
  color: rgba(14,60,91,.78);
}
.back-top{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(14,60,91,.28);
  background: rgba(255,255,255,.7);
  color: var(--text);
  font-weight: 700;
  text-decoration:none;
}
.back-top:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(14,60,91,.12);
}

@media (max-width: 640px){
  .footer-inner{justify-content:flex-start;}
}


@media (max-width: 520px){
  .indique-top{
    gap: 10px;
    padding: 14px 0 8px;
  }
  .indique-brand img{
    width: 160px;
    max-height: 38px;
  }
}

/* Anti-spam invisível (não impacta o layout / não é visível ao usuário) */
.hp{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Mensagem de erro (aparece somente quando necessário) */
.error{
  display:none;
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(209, 17, 17, .25);
  background: rgba(209, 17, 17, .08);
  color: rgba(11,34,51,.88);
  font-weight: 700;
  font-size: 13px;
}
.error.is-show{ display:block; }

/* Botão durante envio */
.btn-camp:disabled{
  opacity: .75;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
