  header {
    height: 100vh;
    position: relative;
    overflow: hidden;
  }

  .icono {
    width: 16px; /* Ajusta el tamaño del ícono */
    height: 16px; /* Ajusta el tamaño del ícono */
    margin-left: 8px; /* Añade espacio entre el texto y el ícono */
  }
  
  
  /* Menú responsive */
  @media (max-width: 768px) {
    .servicios{
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
  
  /* Secciones */
  section {
    padding: 10% 0 10% 0;
    text-align: center;
  }
  /*PERSONALIZADO CONTACTO*/
  header {
    position: relative;
    overflow: hidden;
    max-height: 50vh;
}

.contact-background {
    width: 100%; 
    height: 100%;
    object-fit: cover; 
}

.eslogan {
    font-size: 2em;
}

.texto-header{
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    color: white; 
    text-align: left;
    z-index: 2; 
}

/* Estilo del degradado */
.header-degradado {
    position: absolute; /* Posicionar el degradado sobre la imagen */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(3,0,48);
    background: linear-gradient(90deg, rgba(3,0,48,0.790375525210084) 0%, rgba(7,4,121,0.3337928921568627) 36%, rgba(8,8,135,0) 100%);
    z-index: 1; /* Por debajo del texto pero por encima de la imagen */
}
.contact-section {
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1rem;
  text-align: left;
}

.contact-intro > * + * {
  margin-top: 1rem;
}

.contact-title {
  font-size: 2.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: #31466D;
}

.contact-description {
  color: rgb(107 114 128);
}

.form-group-container {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.form-input::placeholder,
.form-textarea:focus-visible {
  color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid #31466D;
  outline-offset: 2px;
}

.form-textarea {
  min-height: 120px;
}

.form-submit {
  width: 100%;
  margin-top: 1.2rem;
  background-color: #31466D;
  color: #fff;
  padding: 13px 5px;
  border-radius: 0.375rem;
  border: none;
}

.form-submit:hover{
  background-color:  #00a9e0;
  transition: background-color 0.5s ease;
}


  
  
  
  