/* SECCIÓN PRINCIPAL */
.seccion_principal {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.contenido {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px; /* MÁS ESPACIO ENTRE TEXTO E IMAGEN */
}

/* Texto */
.texto_principal {
  max-width: 420px;
}

.texto_principal h1 {
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.texto_principal .resaltado {
  color: #e1007a;
}

.texto_principal p {
  font-size: 1rem;
  margin-bottom: 20px;
}


/* Imagen */
.contenedor_imagen {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fondo_circular {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at center, #6c00ff, #d9007e, #0b0015);
  z-index: 1;
}

.imagen_principal {
  position: relative;
  width: 70%;
  z-index: 2;
}

/* Segunda imagen más grande y centrada */
.imagen_superpuesta {
  position: absolute;
  bottom: 50%;  /* La subimos al centro */
  left: 50%;    /* La centramos */
  transform: translate(-50%, 50%); 
  width: 340px; /* MÁS GRANDE */
  z-index: 3;
}

/* 📱 Responsive */
@media (max-width: 900px) {
  .contenido {
    flex-direction: column; /* Texto arriba, imagen abajo */
    gap: 40px;
  }

  .texto_principal {
    max-width: 100%;
  }

  .texto_principal h1 {
    font-size: 2rem;
  }

  .contenedor_imagen {
    width: 280px;
    height: 280px;
  }

  .imagen_superpuesta {
    width: 120px; /* un poco más chico en móvil */
  }
}

@media (max-width: 500px) {
  .texto_principal h1 {
    font-size: 1.7rem;
  }

  .formulario {
    flex-direction: column;
  }

  .formulario input, 
  .formulario button {
    border-radius: 5px;
    margin: 5px 0;
    width: 100%;
  }
}