/* style.css */

/* Estilos gerais */
body {
  margin: 0;
  padding: 0;
  font-family: Poppins, Arial, sans-serif;
  background-image: url('/bg-grupoflash-banner-01.png');
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #fff;
}

.left-column {
  flex-basis: 50%;
  text-align: center;
}

.logo {
  max-width: 60%;
  height: auto;
}

.right-column {
  flex-basis: 50%;
  text-align: left;
}

.right-column h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.right-column p {
  font-size: 16px;
  margin-bottom: 10px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.button {
  display: inline-block;
  background-color: #ff8323;
  color: #fff;
  padding: 10px 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  border-radius: 5px;;
  transition: background-color 0.3s, color 0.3s;
}

.button:last-child {
  margin-right: 0;
}

.button:hover {
  background-color: #102333;

  color: #fff;
}

@media only screen and (max-width: 768px) {
  /* Estilos específicos para dispositivos móveis */
  .container {
    flex-direction: column;
    margin-left: 20;
    margin-right: 200;
  }
  
  .right-column {
    text-align: Center;
    margin-top: 50px;
  }
  
  .buttons {
    text-align: center;
    align-items: center;
    margin-top: 50px;
    padding: 10px 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  }
}