/* TEXTO CATÁLOGO OFICIAL */

section.box-txt-principal {
  padding: 30px 4%;
}

section.box-txt-principal .txt-bem-vindo {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 90px;
}

.topo-catalogo {
  background: linear-gradient(135deg, #F6E6B5, #E1C781);
  color: #202020;
  padding: 14px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 5px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.topo-catalogo strong {
  display: block;
  font-size: 50px;
  font-weight: 700;
}

.topo-catalogo span {
  font-size: 18px;
}

/* TELA DE PRODUTOS NO CSS GLOBAL */

/* BLOCO CLIENTE VIP — NEUTRO PREMIUM */

section.box-cliente-vip {
  padding: 90px 4%;
  background: linear-gradient(135deg, #f7f2eb, #f3ede6);
}

.box-cliente-vip .flex {
  flex-direction: column;
  max-width: 760px;
  margin: auto;
  text-align: center;
  background: #ffffff;
  padding: 60px 50px;
  border-radius: 28px;
  border: 1px solid #e6d8c3;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.box-cliente-vip h2 {
  font-size: 36px;
  color: #c7a15a;
  margin-bottom: 8px;
}

.box-cliente-vip p {
  font-size: 17px;
  color: #666;
  margin-bottom: 40px;
}

.vantagens-clube {
  list-style: none;
  padding: 0;
  text-align: left;
}

.vantagens-clube li {
  font-size: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed #e0d2b8;
}

.vantagens-clube li:last-child {
  border-bottom: none;
}

.descricao-vantagens {
  display: block;
  font-size: 14px;
  color: #999;
  margin-top: 4px;
}

/* BOTÃO VIP — ELEGANTE */

.btn-vip {
  margin-top: 45px;
  background: transparent;
  color: #c7a15a;
  border: 2px solid #c7a15a;
  padding: 14px 46px;
  border-radius: 50px;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: .35s;
}

.btn-vip:hover {
  background: #c7a15a;
  color: #fff;
  box-shadow: 0 0 20px rgba(199, 161, 90, .5);
  transform: scale(1.05);
}

/* =============  REDES SOCIAIS  ================= */

.conexao-erfashion {
  background-color: #F7F2EB;
  padding: 90px 0;
}

.conexao-erfashion .interface {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
}

/* TOPO */
.conexao-topo {
  text-align: center;
  margin-bottom: 60px;
}

.conexao-topo h2 {
  font-size: 2.3rem;
  color: #202020;
  font-weight: 600;
  margin-bottom: 14px;
}

.conexao-topo h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, #d6b98c, #f2d9c3);
}

.conexao-topo .subtitle-topo {
  font-size: 1rem;
  color: #5f5f5f;
  line-height: 1.7;
}

/* CONTEÚDO */
.conexao-conteudo {
  display: flex;
  justify-content: center;
}

/* CTA GRID */
.conexao-cta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

/* CARD BASE */
.card-rede {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(214, 185, 140, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.card-rede:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* ÍCONE */
.card-rede i {
  font-size: 2.3rem;
  color: #d6b98c;
  margin-bottom: 14px;
  display: inline-block;
}

/* TÍTULO */
.card-rede h3 {
  font-size: 1.2rem;
  color: #202020;
  margin-bottom: 10px;
  font-weight: 500;
}

/* TEXTO */
.card-rede p {
  font-size: 0.95rem;
  color: #5f5f5f;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* BOTÃO */
.card-rede a {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: #202020;
  background: linear-gradient(90deg, #f2d9c3, #d6b98c);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.card-rede a:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

/* DIFERENCIAÇÃO SUTIL */
.card-rede.whatsapp {
  border-color: rgba(214, 185, 140, 0.55);
}

.card-rede.whatsapp::before {
  content: "VIP";
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.7rem;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: 12px;
  background: #f2d9c3;
  color: #202020;
}