:root{
  /* ===== PALETA BRINDART (AZUIS) ===== */
  --azul-escuro: #0B2C6D;
  --azul:       #1F4FD8;
  --azul-claro: #EAF1FF;

  /* Dourado/realce (combina com logo dourada) */
  --dourado:    #D4AF37;

  --texto:      #1B1B1B;
  --muted:      #5F6B7A;
  --branco:     #FFFFFF;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Poppins", sans-serif;
}

body{
  min-height:100vh;
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(212,175,55,0.18), transparent 60%),
    radial-gradient(900px 500px at 85% 30%, rgba(31,79,216,0.28), transparent 60%),
    linear-gradient(135deg, var(--azul), var(--azul-escuro));
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  color: var(--texto);
}

.wrap{
  width:100%;
  max-width:520px;
}

.card{
  background: var(--branco);
  border-radius: 22px;
  padding: 34px 26px;
  text-align:center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
  border: 1px solid rgba(11,44,109,0.10);
}

.brand{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 18px;
}

.logo{
  max-width: 190px;
  width: 70%;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.12));
}

h1{
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--azul-escuro);
  margin-bottom: 12px;
}

.subtitle{
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 22px;
}

.actions{
  display:flex;
  flex-direction:column;
  gap: 12px;
  margin-bottom: 18px;
}

.btn{
  text-decoration:none;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease, filter .18s ease;
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* ===== BOTÃO SOCIAL (AZUL + ÍCONE BRANCO) ===== */
.btn-social{
  background: linear-gradient(135deg, var(--azul), var(--azul-escuro));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: .3px;
}

.btn-social i{
  font-size: 1.2rem;
  color: #fff;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0,0,0,0.18);
}

.btn:active{
  transform: translateY(0);
  opacity: .92;
}

.btn-social:hover{
  filter: brightness(1.05);
}

.footer{
  display:flex;
  flex-direction:column;
  gap: 10px;
  align-items:center;
  margin-top: 6px;
}

.pill{
  display:inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11,44,109,0.06);
  color: var(--azul-escuro);
  font-weight: 700;
  border: 1px solid rgba(11,44,109,0.10);
}

small{
  color: rgba(0,0,0,0.55);
}
