  h1 {
    position: relative;
    z-index: 10;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .icono {
    width: 16px; 
    height: 16px; 
    margin-left: 8px; 
  }
  
  .section-left {
    flex-direction: row; /* Imagen a la izquierda, texto a la derecha */
  }
  
  /* Secciones */
  section {
    padding: 50px;
    text-align: left;
  }
  
  section p{
    color:#31466D;
  }

  section h2{
    color:#31466D;
    padding: 20px;
    padding-left: 0;
  }
  section:nth-child(even) {
    background-color: #f4f4f4;
  }
  
  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 */
}