/* Importando uma fonte de alta qualidade */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

* {
  box-sizing: border-box; /* Garante que padding não quebre a largura */
}

body {
  font-family: 'Inter', sans-serif;
  text-align: center;
  /* "to bottom" faz o verde começar no topo e o preto terminar na base */
  background: linear-gradient(to bottom, #bfd730 0%, #231f20 100%);
  background-attachment: fixed; /* Mantém o fundo fixo enquanto rola */
  margin: 0;
  padding: 40px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  max-width: 420px;
  width: 100%;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.95); 
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.profile-image {
  width: 180px;
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

p.slogan {
  font-weight: 700;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
  margin-bottom: 30px;
}

.link {
  width: 100%; /* Agora ocupa o espaço todo do container */
  margin-bottom: 12px;
}

.link a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color:#231f20;
  background: linear-gradient(145deg, #bfd730 0%, #a8bd2a 100%);
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.link a:hover {
  transform: scale(1.03); /* Dá um leve zoom ao passar o mouse */
  background: linear-gradient(145deg, #d4eb3a 0%, #bfd730 100%);
  box-shadow: 0 8px 20px rgba(191, 215, 48, 0.4);
}

/* Destaque WhatsApp */
.link:first-of-type a {
  border: 2px solid #fff;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(191, 215, 48, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(191, 215, 48, 0); }
  100% { box-shadow: 0 0 0 0 rgba(191, 215, 48, 0); }
}

.icon-left {
  width: 24px;
  font-size: 1.1rem;
}

.icon-right {
  font-size: 5px;
  opacity: 0.4;
}

/* Footer fixo no final da página */
.footer {
  margin-top: 30px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 400;
}