.fade-section {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.fade-section.fade-in {
  opacity: 1;
}

section p {
  max-width: 600px;
  line-height: 1.6;
  margin: 20px 0;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
}

input, textarea {
  margin: 10px 0;
  padding: 10px;
  background: #222;
  border: none;
  color: #eee;
}

button {
  padding: 10px;
  background: #eee;
  color: #111;
  border: none;
  cursor: pointer;
}


.about-extra-link {
  margin-top: 40px;
  margin-left: 50px; /* mismo margen que section-title */
}

.about-extra-link a {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #111;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.about-extra-link a:hover {
  opacity: 1;
}
/* Ficha general */
.ficha-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Título editorial */
.ficha-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 0.12em;
  text-align: left;
  margin-bottom: 2.5rem;
  padding-left: 0.3rem;
}

/* Dos columnas */
.ficha-flex {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

/* Foto pequeña, editorial */
.ficha-photo {
  width: 160px;
  margin: 0;
}

.ficha-photo img {
  width: 100%;
  display: block;
  border-radius: 0; /* PLUKU: no redondo, no suave */
}

/* Texto alineado a la izquierda */
.ficha-text {
  flex: 1;
  line-height: 1.7;
}

.ficha-text p {
  margin-bottom: 1.4rem;
  text-align: left;
}
