@font-face {
  font-family: 'Gontserrat';
  src: url('./gontserrat/Gontserrat-Thin.ttf') format('truetype');
}
@font-face {
  font-family: 'GontserratBold';
  src: url('./gontserrat/Gontserrat-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto';
  src: url('./roboto/Roboto-Regular.ttf') format('truetype');
}
body{
    background-color: rgb(0, 0, 0);
}
header{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
#imgLogo{
    width: 30px;
    margin-right: 15px;
}
#nomeLogo{
    font-size: 24px;
    color: white;
    font-family: 'Gontserrat', sans-serif;
}
.faixinha{
    width: 90%;
    height: 1px;
    background-color: rgb(50,50,50);
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}
#tituloDestaque{
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'GontserratBold', sans-serif;
    color: rgb(255, 255, 255);
}
#texto1{
    font-size: 72px;
}
#texto2{
    font-size: 54px;
}
.descricao{
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: rgb(160,160,160);
    line-height: 2;
}
.conteinerBotao{
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 120px;
}
button{
    width: 250px;
    height: 50px;
    background-color: rgb(255, 255, 255);
    cursor: pointer;
    border-radius: 10px;
    font-family: 'GontserratBold', sans-serif;
    font-size: 16px;
    transition: transform 0.2s;
}
button:hover {
  transform: scale(1.1);
}
#caixaSolucoes{
    background-color: rgb(0, 0, 0);
    padding: 0px 50px 100px 50px;
    text-align: center;
}
#gridSolucoes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; /* Substitui as margens manuais */
}
h2{
    color: rgb(255, 255, 255);
    font-family: 'GontserratBold', sans-serif;
    text-align: center;
}
p{
    font-family: "Roboto", sans-serif;
    text-align: center;
    color: rgb(160,160,160);
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
}
.solucao{
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    height: 250px;
    background-color: rgb(30, 30, 30);
    margin-top: 50px;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    vertical-align: top;
    font-family: "Roboto", sans-serif;
    text-align: left;
    color: rgb(160,160,160);
    border: 1px solid rgb(100, 100, 100);
}

@media (max-width: 768px) {
    #tituloDestaque {
        margin-top: 80px; /* Menos respiro no topo para mobile */
        text-align: center;
        padding: 0 20px;
    }
    
    #texto1 {
        font-size: 38px; /* Texto legível no celular */
    }
    
    #texto2 {
        font-size: 28px;
    }

    .descricao {
        max-width: 90%; /* Ocupa a tela quase toda no mobile */
        font-size: 16px;
    }

    #caixaSolucoes {
        padding: 0px 20px 60px 20px;
    }
    
    .conteinerBotao {
        margin-bottom: 60px;
    }
}



