:root {
    --rosa-queimado: #D8AFA0;
    --bege-aconchego: #F2E8DF;
    --branco-creme: #FDFBF7;
    --marrom-terra: #7D6D61;
    --cinza-chumbo: #5E5E5E;
    scroll-behavior: smooth;        
}        

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--branco-creme);        
}        

footer{
    color: var(--bege-aconchego);
}

footer input, textarea{
    background-color: var(--branco-creme);
}

.color-cinza {
    color: var(--cinza-chumbo);            
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--marrom-terra);
}

.banner-bg {
    background-image: url(../img/campo-trigo-73393.gif);    
}

.bg-rosa-queimado { background-color: var(--rosa-queimado); }
.bg-bege-aconchego { background-color: var(--bege-aconchego); }
.bg-branco-creme { background-color: var(--branco-creme); }
.bg-marrom-terra { background-color: var(--marrom-terra); }
.text-bege-aconchego { color: var(--bege-aconchego); }
.text-marrom-terra { color: var(--marrom-terra); }
.text-cinza-chumbo { color: var(--cinza-chumbo); }
.border-rosa-queimado { border-color: var(--rosa-queimado); }

.btn-primary {
    background-color: var(--rosa-queimado);
    color: white;
    padding: 10px 24px;
    border-radius: 9999px;
    transition: background-color 0.3s;
    display: inline-block;
    text-align: center;
}

.color-banner {
    background: linear-gradient(to bottom right, var(--bege-aconchego), var(--rosa-queimado));
}

.btn-primary:hover {
    background-color: #c59b8c;
}

.parallax {
    background-image: url('../img/Imagem5.jpg');
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}
#mobile-menu.is-open {
    max-height: 20rem;
}