/* Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: linear-gradient(135deg, #1e1e2f, #2a2a40);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Header */

header {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #00d4ff;
  margin-bottom: 15px;
}

.profile h1 {
  font-size: 1.8rem;
}

.profile p {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 300px;
}

/* Main */

main {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.links {
  width: 90%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Botões */

.btn {
  text-decoration: none;
  background: #00d4ff;
  color: #1e1e2f;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #00aacc;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

/* Footer */

footer {
  margin-top: auto;
  padding: 20px;
}

.footer-content {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
}

/* Ícones SVG */

.footer-content a {
  color: #ccc;
  width: 28px;
  height: 28px;
  display: flex;
  transition: all 0.3s ease;
}

.footer-content svg {
  width: 100%;
  height: 100%;
}

/* Hover nos ícones */

.footer-content a:hover {
  color: #00d4ff;
  transform: scale(1.2);
}

/* Responsivo */

@media (max-width: 480px) {
  .profile h1 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 12px;
    font-size: 0.9rem;
  }
}

/*Fonte global*/

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #1e1e2f, #2a2a40);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/*Card de perfil com sombra*/

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/*Botões com sombra*/

.links a {
  text-decoration: none;
  background: #00d4ff;
  color: #1e1e2f;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.links a:hover {
  background: #00aacc;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.5);
}

.footer-content a {
  color: #ccc;
  width: 28px;
  height: 28px;
  display: flex;
  transition: all 0.3s ease;
}

/*Ícones com sombra suave*/

.footer-content a:hover {
  color: #00d4ff;
  transform: scale(1.2);
  filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.6));
}
