/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.card {
  background: #fff;
  width: 350px;
  text-align: center;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.493);
}

/* Logo */
.logo img {
  width: 120px;
  margin: 10px auto;
}

/* Foto circular */
.profile-pic img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 10px;
  border: 4px solid #4054B2; /* verde */
}

/* Texto */
h2 {
  margin-top: 15px;
  font-size: 22px;
  color: #333;
}

h4 {
  font-size: 16px;
  color: #555;
}
p {
  font-size: 14px;
  color: #777;
}

/* Botones */
.contact-buttons {
  margin: 20px 0;
}
.contact-buttons .btn {
  display: inline-block;
  background: #e9f6e5;
  color: #4054B2;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}
.contact-buttons .btn:hover {
  background: #4054B2;
  color: #fff;
}

/* Botón de red */
.network-btn a {
  display: block;
  border: 2px solid #4054B2;
  padding: 12px;
  border-radius: 5px;
  color: #4054B2;
  text-decoration: none;
  font-weight: bold;
  margin: 15px 0;
}
.network-btn a:hover {
  background: #0056c6;
  color: #fff;
}

h5 {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

/* Redes sociales */
.social a {
  margin: 0 8px;
  color: #555;
  font-size: 18px;
  transition: 0.3s;
}
.social a:hover {
  color: #4054B2;
}

/* Footer */
.footer {
  margin-top: 15px;
  font-size: 12px;
}
.footer a {
  text-decoration: none;
  color: #4054B2;
}
