/* =========================
   ROOT VARIABLES
========================= */
:root {
    --mainBg-color: #F5EFE7;

    --primary-color: #986642;
    --secondary-color: #E5D1C1;

    --tag-color: #5A413C;
    --title-color: #3E2D29;
    --subTitle-color: #5A413C;
    --text-color: #6F625E;

    --section-bg: #F5EFE7;
    --section-bg2: #A8744F;

    --tag-bg: #E8DED3;
    --tag-bgDark: #A8744F;

    --borderColor: #C08A5A;
}


/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================
   BASE ELEMENTS
========================= */
html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--mainBg-color);
    overflow-x: hidden !important;
    color: #2E2E2E;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
p,
b,
span {
    font-family: 'Lato', sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

button {
    border: none;
    font-family: inherit;
    cursor: pointer;
}


/* =========================
   LAYOUT
========================= */
.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 100px 150px !important;
}


/* =========================
   RESPONSIVE
========================= */

/* notebooks menores */
@media (max-width: 1400px) {
    .container {
        padding: 80px 100px !important;
    }
}

/* notebooks menores */
@media (max-width: 1200px) {
    .container {
        padding: 80px 80px !important;
    }
}

/* tablets */
@media (max-width: 900px) {
    .container {
        padding: 80px 40px !important;
    }
}

/* celulares */
@media (max-width: 600px) {
    .container {
        padding: 50px 20px !important;
    }
}