/* ABOUT */
.about-container {
  padding: 4rem 4rem;
  background: #fdf5e6;
  color: #4b2e05;
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

.about-container h2,
.about-container h3 {
  font-family: "Playfair Display", serif;
}

/* Fade-in Animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}
.delay-3 {
  transition-delay: 0.6s;
}
.delay-4 {
  transition-delay: 0.8s;
}

/* Profile Section */
.profile-section {
  display: flex;
  gap: 4rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.profile-image-wrapper {
  position: relative;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-image {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid #663399;
  box-shadow: 0 20px 40px rgba(102, 51, 153, 0.1);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s ease;
}

.profile-image:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(102, 51, 153, 0.15);
}

.profile-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
  padding: 1rem 0;
  text-align: justify;
  hyphens: auto;
}

.profile-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  font-weight: 300;
}

/* LinkedIn Icon */
.linkedin-icon {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: linear-gradient(135deg, #663399 0%, #8b5fcf 100%);
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(102, 51, 153, 0.3);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s ease;
  text-decoration: none;
  width: 44px;
  height: 44px;
}

.linkedin-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 25px rgba(102, 51, 153, 0.4);
}

.linkedin-icon .linkedin-svg {
  width: 24px;
  height: 24px;
  color: #fdf5e6;
  fill: #fdf5e6;
}

/* Headings Hover Interaction */
.hover-heading {
  transition: color 0.3s ease, transform 0.2s ease;
  position: relative;
  display: inline-block;
}

.hover-heading::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #663399;
  transition: width 0.3s ease;
}

.hover-heading:hover {
  color: #663399;
  transform: translateX(4px);
}

.hover-heading:hover::after {
  width: 100%;
}

/* Platform Section */
.platform-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}

.platform-section h2 {
  color: #663399;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}

.platform-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
  hyphens: auto;
}

.values {
  text-align: left;
  margin: 3rem auto;
  max-width: 700px;
}

.values h3 {
  margin-bottom: 1.5rem;
  color: #663399;
  font-size: 1.8rem;
  text-align: center;
}

.values ul {
  margin: 1.5rem 0 0 0;
  padding-left: 0;
  list-style: none;
}

.values li {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(102, 51, 153, 0.1);
  transition: color 0.3s ease, padding-left 0.3s ease;
  text-align: justify;
  hyphens: auto;
}

.values li:last-child {
  border-bottom: none;
}

.values li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #663399;
  font-weight: bold;
  font-size: 1.2rem;
}

.values li:hover {
  color: #663399;
  padding-left: 2.5rem;
}

.forjar-link {
  color: #663399;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s ease;
}

.forjar-link:hover {
  border-bottom-color: #663399;
}

.mission {
  font-style: italic;
  font-size: 1.15rem;
  color: #4b2e05;
  background: rgba(102, 51, 153, 0.05);
  padding: 2rem;
  border-left: 4px solid #663399;
  margin: 3rem auto;
  max-width: 700px;
  text-align: justify;
  hyphens: auto;
}

.tagline {
  margin-top: 3rem;
  font-size: 1.3rem;
  color: #663399;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Playfair Display", serif;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 2rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .about-container {
    padding: 3rem 2rem;
  }

  .profile-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .profile-text {
    text-align: justify;
    padding: 0;
  }

  .profile-image {
    width: 280px;
    height: 280px;
  }

  .platform-section {
    padding: 0 1rem;
  }

  .platform-section h2 {
    font-size: 2.2rem;
  }

  .values {
    text-align: left;
  }

  .values li {
    text-align: justify;
    padding-left: 2rem;
  }

  .mission {
    padding: 1.5rem;
    margin: 2rem 0;
  }
}

@media (max-width: 480px) {
  .profile-image {
    width: 240px;
    height: 240px;
  }

  .linkedin-icon {
    width: 40px;
    height: 40px;
    padding: 10px;
    bottom: -12px;
    right: -12px;
  }

  .linkedin-icon .linkedin-svg {
    width: 20px;
    height: 20px;
  }

  .profile-text p,
  .platform-section p,
  .values li {
    text-align: left;
    hyphens: none;
  }
}
