
#home{
    background: url(../img/foto_background_home.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#home .home-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;   
}            

.centro{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 35%;
}

.centro #titulo{
    color: var(--white);
    font-size: 38px;
    width: 560px;
    text-align: center;
}

.centro #subtitulo{
    font-size: 20px;
}

.low_titulo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    gap: 15px;
}

.botoes_linha{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.botoes_linha a{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    width: 110px;
    border-radius: 20px;
    padding: 10px 20px;
    color: var(--orange-text);
    font-size: 18px;
    text-decoration: none;
    transition: 0.5s;
}

.botoes_linha a:hover{
    cursor: pointer;
    transition: 1s;
    scale: 1.1;
    background-color: var(--orange-dark);
    color: var(--white);
}

.centro img{
    width: 350px;
}

.logo{
    display: flex;
    justify-content: flex-start;
    align-items: end;
    padding: 30px;
}

.logo img{
    width: 160px;
    height: 150px;
}

@media screen and (min-width: 1100px) and (max-width: 1250px){
    .centro{
    margin-top: 20%;
}

.centro #titulo{
    font-size: 33px;
    width: 500px;
}

.centro #subtitulo{
    font-size: 20px;
}

.low_titulo{
    gap: 16px;
}

.botoes_linha a{
    width: 110px;
    padding: 8px 15px;
    font-size: 18px;
}

.centro img{
    width: 300px;
}

.logo{
    padding: 30px;
}

.logo img{
    width: 120px;
    height: 100px;
}

}

@media screen and (min-width: 1251px) and (max-width: 1400px){
        .centro{
    margin-top: 25%;
}

.centro #titulo{
    font-size: 28px;
    width: 500px;
}

.centro #subtitulo{
    font-size: 20px;
}

.low_titulo{
    gap: 16px;
}

.botoes_linha a{
    width: 110px;
    padding: 8px 12px;
    font-size: 16px;
}

.centro img{
    width: 300px;
}

.logo{
    padding: 30px;
}

.logo img{
    width: 120px;
    height: 100px;
}
}


/* ===================== MOBILE =========================== */

/* ======= MOBILE: até 768px ======= */
@media (max-width: 768px) {
  #home {
    background-position: center top;
    background-size: cover;
  }

  #home .home-container {
    display: grid;
    grid-template-columns: 100%;

  }

  .logo img {
    display: none;
  }

  .centro {
    margin-top: 0px;
  }

  .centro #titulo {
    font-size: 25px;
    width: 100%;
    max-width: 360px;
    line-height: 1.08;
    margin: 0 auto;
    padding: 0 6px;
  }

  .centro #subtitulo {
    font-size: 19px;
    margin-top: 8px;
    max-width: 100%;
  }

  .low_titulo {
    gap: 8px;
  }

  .botoes_linha {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }

  .botoes_linha a {
    font-size: 14px;
    padding: 12px 0px;
    margin-bottom: 5rem;
  }

  .centro img {
    width: 90%;
    max-width: 320px;
    height: auto;
    margin-top: 10px;
    border-radius: 12px;
  }
}

/* ======= EXTRA PEQUENOS: até 420px ======= */
@media (max-width: 420px) {
  #home {
    padding: 14px 10px;
  }

  .centro {
    margin-bottom: 20vh;
  }

  .centro #titulo {
    font-size: 22px;
    max-width: 350px;
  }

  .centro #subtitulo {
    font-size: 17px;
  }

  .botoes_linha a {
    width: 30%;
    font-size: 15px;
    padding: 8px 6px;
  }

  .centro img {
    max-width: 260px;
  }
}
