/* ===========================
   BASE
=========================== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #131312;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;

  /* 🌌 Fundo com degradê suave geral */
  background-image: radial-gradient(circle at center, rgba(37, 31, 26, 0.1) 0%, transparent 70%);
  background-repeat: no-repeat;
  background-size: 600px 600px;
}

/* ===========================
   CONTAINER
=========================== */
/* ===========================
   CONTAINER
=========================== */
.container {
  text-align: center;
  max-width: 400px;
  width: 90%;
  position: relative; /* Adicionado */
  z-index: 1; /* Adicionado */
}

/* ===========================
   TÍTULO + EFEITO CIRCULAR
=========================== */
.titulo {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  z-index: 2; /* Texto acima do círculo */
  padding: 1rem 2rem;
}

/* ✨ Efeito circular ATRÁS de tudo */
.titulo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle, 
    rgba(82, 70, 61, 0.6) 0%,    /* Azul */
    rgba(55, 49, 39, 0.4) 50%,   /* Roxo */
    transparent 80%
  );
  border-radius: 50%;
  filter: blur(30px);
  z-index: -1; /* ⚠️ Mantém atrás do texto */
  animation: pulse 6s ease-in-out infinite;
}

/* ===========================
   CARDS
=========================== */
.cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative; /* Adicionado */
  z-index: 3; /* ⚠️ Cards acima do círculo */
}

/* Card padrão */
.card {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  border-radius: 16px;
  padding: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 140px;
  position: relative; /* Adicionado */
  z-index: 4; /* ⚠️ Cada card acima do círculo */
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.05);
}

/* Imagem do card */
.card img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  margin-right: 1rem;
}

/* Conteúdo */
.conteudo {
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
}

.conteudo h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
}

.conteudo p {
  font-size: 1rem;
  color: #2b2b2b;
  margin: 0.2rem 0 0.6rem;
}

/* Container do texto */
.texto-container {
  flex: 1;
}

/* Botão */
.botao {
  display: inline-block;
  font-size: 0.75rem;
  text-decoration: none;
  background: #2b2b2b;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  transition: background 0.3s, transform 0.2s;
  align-self: flex-start;
  margin-top: auto;
}

.botao:hover {
  background: #5c7089;
  transform: scale(1.05);
}

/* ===========================
   CORES DOS CARDS
=========================== */
.card-1 {
  background: linear-gradient(to right, #fdfaf8, #fdfaf8);
  color: #5c7389;
}

.card-2 {
  background: linear-gradient(to bottom right, #564a3e, #7d6d61);
}

.card-3 {
  background: linear-gradient(to bottom right, #2e2f2a, #1a1a18);
}

.card-4 {
  background: linear-gradient(to bottom right, #f4f4f4, #c9c9c9);
  color: #000;
}

.card-4 .botao {
  background: #000;
  color: #fff;
}