@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
    text-align: center;
    background-size: cover;
    height: 600px;
    background-image: url("../imagens/modulartradicional.jpg");
    background-color: black;
    opacity: 0.9;
}

#Nome{
    background-color: rgba(0,0,0,0);
    color: white;
    margin: 40px;
    font-size: 40px;
}

#texto-banner{
    background-color: rgba(0,0,0,0);
    color: black;
    font-size: 72px;
}


.promo-imagem{
    transition: transform .2s;
    transform: scale(0.9);
    object-fit: contain;
}

.promo-imagem:hover{
    transition: transform .2s;
    transform: scale(1);
}

.contato{
    text-align: center;
    background-color: rgba(0,0,0,0);
    color: black;
    margin: 40px;
    font-size: 60px;
}

.contato-sm{
    text-align: center;
    background-color: rgba(0,0,0,0);
    color: black;
    margin: 0px;
    font-size: 20px;
}