.directora-arte {
  background-color: #f0f0f0;
  padding: 60px 20px;
  font-family: 'Roboto', serif;
}

.directora-contenido {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.directora-imagen {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.directora-imagen img {
  width: 100%;
  border-radius: 0 50% 0  50%;
  object-fit: cover;
}

.btn-galeria {
  margin-top: 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 20px 80px;
  border-radius: 30px;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: 'Playfair Display', serif;    
}

.btn-galeria:hover {
  background-color: #b3b3b3;
  color: black;
}

.directora-texto {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.directora-texto h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.directora-texto p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #111;
}

.iconos-redes {
  margin-top: 20px;
  font-size: 32px;
  display: flex;
  justify-content: center; /* centra horizontalmente */
  gap: 80px; /* espacio entre íconos */
}


.iconos-redes a {
  color: #000;
  margin: 0;
  transition: color 0.3s ease;
}

.iconos-redes a:hover {
  color: #b3b3b3;
    
}

/* RWD */
@media screen and (max-width: 768px) {
  .directora-contenido {
    flex-direction: column;
    align-items: center;
  }
    
@media screen and (max-width: 768px) {
  .iconos-redes {
    justify-content: center; /* ya lo tenés bien */
    gap: 70px; /* mejor usar gap que margin individual */
  }

  .iconos-redes a {
    margin: 0; /* anulamos el margin-right solo en móvil */
  }
}
    
    
    

  .directora-texto {
    max-width: 100%;
  }

  .directora-imagen img {
    border-radius: 50px;
  }

  .btn-galeria {
    width: 100%;
    text-align: center;
    max-width: 250px;
  }
}

.trazos-inspiracion {
  background-image: url("../img/fondoquiensoy.jpg");    
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}

.trazos-inspiracion::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* oscurece la imagen para mejor legibilidad */
  z-index: 0;
}

.trazos-contenido {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.trazos-contenido h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.trazos-contenido h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 30px;
}

.trazos-contenido p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #eee;
  margin-bottom: 40px;
}

.btn-leer-nota {
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-leer-nota:hover {
  background-color: #b3b3b3;
  color: #000;
}

/* RWD */
@media (max-width: 768px) {
  .trazos-contenido h2 {
    font-size: 36px;
  }

  .trazos-contenido h3 {
    font-size: 18px;
  }

  .trazos-contenido p {
    font-size: 16px;
  }
}

