.contact-section {
  padding-top: 7.5rem;
  background-color: #1a202c;
}

.contact-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
}

.contact-container {
  max-width: 28rem;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-info {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-email {
  font-size: 1.25rem;
  font-weight: 500;
  color: #9f7aea;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-email:hover {
  color: #b794f4;
}

.contact-phone {
  font-size: 1.25rem;
  color: #ffffff;
}

.contact-instagram {
  color: #ffffff;
  transition: color 0.3s ease;
  margin-top: 1rem;
}

.contact-instagram:hover {
  color: #9f7aea;
}

.instagram-icon {
  width: 48px;
  height: 48px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
  

}

.contact-info {
  display: flex;
  justify-items: center;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.contact-info{
  list-style-type:none;
  padding: 0;
}

.contact-info li {
  margin: 10px 0;
  padding: 15px;
  border-radius: 8px;
  transition: transform 0.3s, background-color 0.3s;
  cursor: pointer;
  position: relative; /* Necesario para posicionar la imagen */
  padding-left: 40px; /* Espacio para la imagen */
}


.contact-info li.mail,
.contact-info li.whatsapp,
.contact-info li.instagram {
padding-left: 40px; /* Espacio para la imagen */
background-size: 20px 20px; /* Ajusta el tamaño de la imagen */
background-repeat: no-repeat; /* No repetir la imagen */
background-position: left center; /* Posiciona la imagen a la izquierda */
margin: 10px 0; /* Espacio entre los elementos de la lista */
}

.contact-info li.instagram {
background-image: url('img/instagram_socialnetwork_20033.png'); /* Cambia esta ruta por la de tu imagen */

}

.contact-info li.whatsapp {
background-image: url('img/3721678-whatsapp_108065.png'); /* Cambia esta ruta por la de tu imagen */

}

.contact-info li.mail {
background-image: url('img/Email_30017.png'); /* Cambia esta ruta por la de tu imagen */

}
/* A partir de aquí es para la página de contacto*/
.form-container {
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #000000;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-title {
    text-align: center;
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: bold;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 6px;
    font-weight: 500;
}

.form-input,
.form-textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
    background-color: black;
    border-color: white;
    border-width: 1px;
    color:White;
    font-family: sans-serif;
    resize: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #007BFF;
    outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #ffffff; /* Cambialo por el color que quieras */
  opacity: 1;     /* Asegura que no se vea muy transparente */
  font-family: sans-serif;
}
.form-button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: black;
    color: white;
    border-color: white;
    border-width:  1px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-button:hover {
    background-color:#8b5cf6 ;
}
