/* Reset básico */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #000000;
  color: rgb(0, 0, 0);
  font-family: 'Sora', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Animación fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contenedor principal */
.about-container {
  max-width: 900px;
  margin: 100px auto 40px auto; /* margen superior para no tapar navbar */
  padding: 0 16px;
}

/* Card perfil */
.profile-card {
  background-color: #000000;
  border-radius: 20px;
  box-shadow: 0 8px 24px #7700ff;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 32px;
  align-items: center;
  color: white;
  transition: box-shadow 0.4s ease;
}

.profile-card:hover {
  box-shadow: 0 12px 36px #7700ff;
}

/* Imagen perfil */
.profile-image {
  flex: 1 1 250px;
  max-width: 250px;
  border-radius: 50%;
  border: 4px solid #7700ff;
  box-shadow: 0 0 12px #7700ff;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.profile-image:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px #7700ff;
}

/* Texto descripción */
.profile-description {
  flex: 2 1 400px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: #ddd;
  user-select: text;
}

/* Título */
.profile-title {
  font-size: 36px;
  font-weight: 700;
  color: #7700ff;
  margin-bottom: 12px;
  user-select: none;
}

/* Responsive para móvil */
@media (max-width: 768px) {
  .profile-card {
    flex-direction: column;
    text-align: center;
  }
  .profile-description {
    flex: 1 1 100%;
  }
  .profile-image {
    margin: 0 auto;
  }
}
.footer {
  background-color: #000000;
  padding: 2rem 1rem;
  margin-top: 4rem;
  
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  color: rgb(76, 0, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.footer p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer .socials {
  display: flex;
  gap: 1rem;
}

.footer .socials a {
  transition: transform 0.3s ease;
}

.footer .socials a:hover {
  transform: scale(1.2);
}

.footer .socials img {
  width: 24px;
  height: 24px;
  ;
}

  .goals-funfacts-section {
  color: #f1e8ff;
  padding: 3rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.content-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.goals, .fun-facts {
  flex: 1;
  min-width: 300px;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 6px 12px #7700ff;
  transition: transform 0.3s ease;
}

.goals:hover, .fun-facts:hover {
  transform: translateY(-5px);
}

h2 {
  color: #b491f6;
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  position: relative;
  padding-left: 1.4rem;
}

ul li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #d5b9ff;
}

/* Responsive para móviles */
@media (max-width: 700px) {
  .content-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  ul li {
    font-size: 1rem;
  }
}
