* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #052E66;
  --secondary: #73BCD9;
  --text-light: #ffffff;
}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: var(--primary);
  height: 100vh;
}

#container {
  width: 100%;
  max-width: 420px;
  margin: 32px auto;
  padding: 0 16px;
}

/* Logo */
#profile {
  text-align: center;
  margin-bottom: 32px;
}
#profile img {
  width: 70%;
  max-width: 200px;
}

/* Botões */
ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}
ul li a {
  display: block;
  text-align: center;
  width: 100%;
  font-size: 16px;
  padding: 16px;
  border-radius: 12px;
  background-color: var(--primary);
  color: var(--text-light);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
ul li a:hover {
  background-color: var(--secondary);
  color: var(--primary);
  transform: scale(1.02);
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
  text-align: center;

}

.btn {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #fff;
  background: #052E66;
}

.btn:hover {
  background: #fff;
  color: #052E66;
  border: 3px solid #73BCD9;
}

.btn-primary {
  background: #052E66;
  box-shadow: 0 4px 12px rgba(5, 46, 102, 0.3);
}

.btn-primary:hover {
  background: #fff;
  color: #052E66;
  border: 3px solid #73BCD9;
  box-shadow: 0 6px 14px rgba(5, 46, 102, 0.25);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.btn-whatsapp:hover {
  background: #fff;
  color: #25D366;
  border: 3px solid #25D366;
}
.btn-primary.highlight {
  background: linear-gradient(135deg, #052E66, #73BCD9);
  color: #fff;
  font-weight: 700;
  animation: pulse 2.5s infinite;
}

.btn-primary.highlight:hover {
  background: #fff;
  color: #052E66;
  border: 3px solid #73BCD9;
  animation: none; /* Pausa o efeito no hover */
}

/* Animação suave de destaque */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}
/* Redes sociais */
.social-section {
  margin: 30px 0;
}

.social-section h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  font-size: 28px;
  color: #052E66;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #73BCD9;
}

/* Rodapé */
footer {
  text-align: center;
  font-size: 13px;
  color: var(--primary);
  margin-top: 16px;
}

/* Desktop */
@media (min-width: 768px) {
  #container {
    max-width: 588px;
    margin-top: 56px;
  }

  ul li a {
    font-size: 18px;
    padding: 18px;
  }

  #social-links a {
    font-size: 24px;
    padding: 16px;
  }
}
