

.entrada {
 padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.entrada1 {
  flex: 1;
  text-align: center;
}

.entrada1 img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.entrada2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  text-align: center;
}

.entrada2 h2 {
  font-size: 80px;
  font-weight: bold;
  margin-bottom: 10px;
  max-width: 100%;
  overflow-wrap: break-word;
  padding: 0 80px;
  color: #2d74de;
}

.entrada2 p {
  font-size: 24px;
  margin-bottom: 10px;
  max-width: 100%;
  overflow-wrap: break-word;
  padding: 0px 30px;
}

.entrada2 > *:last-child {
  margin-bottom: 0;
}

.entrada2 a.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2d74de;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px; /* Ajusta este valor según tus necesidades */
  /* Agrega otros estilos según tus preferencias */
}

.entrada2 a.button:hover {
  background-color: #bd2015;
  color: #e9e8e8;
  transition: background-color 0.3s ease;
  /* Agrega animaciones o estilos adicionales para el hover */
}



.entrada2 a.button {
  display: inline-block;
  padding: 10px 30px; /* Ajusta el tamaño del padding según tus preferencias */
  font-size: 24px; /* Ajusta el tamaño de la fuente según tus preferencias */
}




/* Estilos para dispositivos móviles */
@media screen and (max-width: 820px) {
  .entrada {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .entrada1 {
    width: 100%;
    margin: 0;
  }

  .entrada2 {
    width: 100%;
    margin: 20px 0;
   
  }

  .entrada2 h2 {
    font-weight: bold;
    font-size: 25px;
    text-align: center;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;

    }


}



  
  
  
  
  