/* Configurações */

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

/* Scrolls Reveals */
.contatos-container{
    visibility: hidden;
}

:root {
    --maincolor1: #e3a72f;
    --maincolor2: #bb8633;
    --maincolor3: #ddd98c;
    --secondcolor1: #245091;
    --secondcolor2: #6494de;
    --darkcolor: #222222;
    --whitecolor: #fcfcfc;

    --montserrat: 'Montserrat', sans-serif;
    --opensans: 'Open Sans', sans-serif;
}

#background {
    width: 100vw;
    height: auto;
}

#whatsapp-fixed {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
}

#whatsapp-fixed a i {
    font-size: 3.2rem;
    color: #25D366;
    transition: 200ms ease-in-out;
}

#whatsapp-fixed a i:hover {
    color:#128C7E;
}

/* Conteúdo */

main {
    width: 100%;
    height: auto;
    padding: 2rem 4rem;
    margin-top: 10vh;
}

main h1 {
    font-family: var(--montserrat);
    font-weight: bold;
    letter-spacing: 0;
}

main p {
    font-size: 1.2rem;
    text-align: justify;
    min-width: 200px;
}

.img-box {
    width: 100%;
    height: auto;
    display: flex;
    gap: 2rem;
    min-width: 200px;
}

.img-box img {
    height: 300px;
    border-radius: 8px;
}

@media screen and (max-width: 967px) {
    .img-box img {
        height: 230px;
    }
}

@media screen and (max-width: 768px) {
    .img-box {
        flex-direction: column;
    }

    .img-box img {
        height: auto;
    }
}

@media screen and (max-width: 450px) {
    main {
        padding: 1rem 2rem;
    }
}