body {
  font-family: 'Arimo', Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 500px;
  margin: 40px auto;
  text-align: center;
}

/* Texto principal */
.card p {
  margin: 12px 0;
  font-size: 1rem;
  color: #444;
}

/* Destaque para o nome */
.card strong {
  font-size: 1.2rem;
  color: #222;
  letter-spacing: 0.5px;
}

/* Número de telefone */
.card .phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #25D366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.card .phone-link:hover {
  color: #1ebe5d;
  text-decoration: underline;
}

/* Título introdutório */
.card p:first-child {
  font-size: 1.05rem;
  color: #555;
  font-style: normal;
}
/* Botão WhatsApp estilizado */
.whats-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #25D366;
      color: #fff;
      text-decoration: none;
      padding: 14px 20px;
      border-radius: 8px;
      font-weight: bold;
      font-size: 1.1rem;
      transition: transform 0.2s ease, background 0.3s ease;
      box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
.whats-link:hover {
      background: #1ebe5d;
      transform: scale(1.05);
}
.whats-icon {
      display: flex;
      align-items: center;
}