h1 {
  display: none;
}

.seccion {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
}
.seccion--portada {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contenedor {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
}
/*Contenedor parallax de imagen */
.contenedor--parallax {
  position: relative;
  height: 100vh;
  background-image: url("../../IMG/contactos/contactosDesktop.webp");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
  z-index: 0;
  padding: clamp(1rem, 5vw, 3rem);
}

.contenedor--parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(#454f61, #81a1eb9f, #0d3072a4);
  z-index: 1;
  opacity: 0.85; /* Puedes ajustar la opacidad */
  pointer-events: none;
}

.contenedor--parallax > * {
  position: relative;
  z-index: 2;
}

/*Titulo portada parallax*/
.contenedor--parallax h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.texto--intro,
.contenedor--contenidoParallax p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  line-height: 1.6;
  max-width: 60ch;
  margin-inline: auto;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

/*En media querys cambiar img de contactos*/
@media screen and (max-width: 800px) {
  .contenedor--parallax {
    background-image: url("../../IMG/contactos/contactosPortada.webp");
  }
}
