@charset "utf-8";
/* CSS Document */
/* Estilos generales */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

header {
  width: 97%;
  height: 100px;
  background-color: #f2f2f2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo img {
  height: 50px;
  max-height: 50px;
}

.number {
  height: 50px;
  max-height: 50px;
  font-size: 24px;
  padding: 12px 0 0 12px;
}

main {
  display: flex;
  height: calc(100% - 100px); /* Altura total menos la del header */
}

.parallax {
  flex: 1;
  background-image: url('images/entrance/business-loan.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.botones {
  /*flex: 1;*/
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #ffffff;
  width: 30%;
}

.boton {
  margin-bottom: 20px;
  width: 40%;
}

.boton a {
  display: block;
  padding: 20px 20px;
  text-decoration: none;
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.boton a:hover {
  background-color: #0056b3;
}

/* El resto de tus estilos permanece igual */

.texto-centrado {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white; /* Ajusta el color del texto para que sea visible */
  text-align: center;
  padding: 20px;
  margin-top: 150px;
}

.texto-centrado{
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}



.footer {
  position: relative;
  bottom: 0;
  margin-bottom:0px;
  width: 98.5%;
  background-color: #1447AD;
  text-align: center;
  padding: 10px;
  color: white;
}
