@charset "utf-8";

html {
    min-height: 100%;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

body {
    min-height: 100%;
    background-color: #f8f3e1;
    background-image: url("img/bg.png");
    background-repeat: repeat;
    color: #36442d;
    font-family: "Outfit", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-y: auto;
    overflow-x: hidden;
}

.geral {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: block;
    text-align: center;
}

.logo {
    position: relative;
    padding-top: 30px;
    display: block;
}

.logo > a {
    display: inline-block;
}

.logo-principal {
    display: block;
    width: 333px;
    max-width: calc(100vw - 40px);
    height: auto;
    margin: 0 auto;
}

.contato {
    position: relative;
    width: 200px;
    margin: 20px auto 0;
    text-align: left;
    line-height: 35px;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #36442d;
    display: block;
}

.chamada-contato {
    margin-bottom: 3px;
    font-weight: 400;
}

.tel {
    font-size: 20px;
}

.contato a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #36442d;
    font-size: 18px;
    font-weight: 600;
    line-height: 35px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contato a:hover,
.contato a:focus-visible {
    color: #5b7748;
}

.icone-contato {
    display: block;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
}

.bg2 {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 40px;
    background-image: url("img/bg2.png");
    background-repeat: repeat;
	padding-top:20px;
}
.bg2::before{
    content:"";
    display:block;
    width:100%;
    height:3px;
    background:#a1814f;
}
.quem {
    position: relative;
    width: 100%;
    max-width: 690px;
    padding: 5px 20px 50px;
    color: #f8f3e1;
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.55;
    text-align: center;
    display: inline-block;
}
.quem h2 {
	
    font-size: 18px;
}
.quem h1 {
    max-width: 620px;
    margin: 0 auto 25px;
    color: #f8f3e1;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.15;
    text-wrap: balance;
}

.quem p {
    margin-bottom: 20px;
}

.quem strong {
    font-weight: 600;
}

.botao-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 5px;
    padding: 12px 24px;
    border: 2px solid #f8f3e1;
    border-radius: 30px;
    color: #f8f3e1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.botao-whatsapp:hover,
.botao-whatsapp:focus-visible {
    background-color: #f8f3e1;
    color: #36442d;
}

a:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 4px;
}

@media screen and (max-width: 1000px) {
    .quem {
        width: 90%;
    }
}

@media screen and (max-width: 600px) {
    .logo {
        padding-top: 20px;
    }

    .logo-principal {
        max-width: 280px;
    }

    .contato {
        width: 245px;
        margin-top: 15px;
    }

    .bg2 {
        margin-top: 30px;
    }

    .quem {
        width: 92%;
        padding: 35px 15px 40px;
        font-size: 16px;
        line-height: 1.5;
    }

    .quem h1 {
        margin-bottom: 22px;
        font-size: 22px;
    }
}

@media screen and (max-width: 360px) {
    .logo-principal {
        max-width: 245px;
    }

    .contato {
        width: 225px;
    }

    .contato a {
        font-size: 16px;
    }

    .tel {
        font-size: 17px;
    }

    .quem {
        width: 94%;
        padding-right: 10px;
        padding-left: 10px;
    }

    .quem h1 {
        font-size: 22px;
    }

    .botao-whatsapp {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        font-size: 15px;
    }
}