* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #61cddd;
  /* cor da imagem do logo */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  animation: fadeIn 1.2s ease-in;
}

.card {
  background: #ffffff;
  color: #121212;
  border-radius: 20px;
  padding: 30px 24px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.8s ease-out;
}

.logo {
  max-width: 80%;
  margin: 0 auto 20px;
  animation: zoomIn 0.6s ease-in-out;
}

.tagline {
  font-size: 15px;
  color: #2a4d58;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeIn 1s ease-in;
}

.contact-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 10px auto;
  padding: 12px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  max-width: 300px;
  transition: all 0.3s ease;
}

.contact-buttons a i {
  font-size: 16px;
}

/* Estilos individuais com degrade */
.contact-buttons .whatsapp {
  background: linear-gradient(45deg, #25d366, #128c7e);
}

.contact-buttons .whatsapp:hover {
  background: linear-gradient(45deg, #128c7e, #075e54);
}

.contact-buttons .instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.contact-buttons .instagram:hover {
  background: linear-gradient(45deg, #e1306c, #c13584);
}

.contact-buttons .facebook {
  background: linear-gradient(45deg, #1877f2, #0d47a1);
}

.contact-buttons .facebook:hover {
  background: linear-gradient(45deg, #0d47a1, #042e6f);
}

.contact-buttons .email {
  background: linear-gradient(45deg, #5c6bc0, #3949ab);
}

.contact-buttons .email:hover {
  background: linear-gradient(45deg, #3949ab, #1a237e);
}

.contact-buttons .vcf {
  background: linear-gradient(45deg, #607d8b, #455a64);
}

.contact-buttons .vcf:hover {
  background: linear-gradient(45deg, #455a64, #263238);
}

.footer {
  margin-top: 30px;
  font-size: 12px;
  color: #444;
  opacity: 0.9;
}

.site-link {
  display: block;
  margin-top: 4px;
  color: #2a4d58;
  font-size: 13px;
  text-decoration: none;
}

.site-link:hover {
  text-decoration: underline;
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}