:root {
    --preto-puro: #000;
    --preto-font: #0E0E0E;
    --preto-icon: #202020;
    --cinza-font: #646464;
    --cinza-claro: #A9A7A7;
    --branco-puro: #FFFFFF;
    --button-color: #867E41;
    --diversos: #B1A338;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--preto-puro);

}

h1,
h2,
h3,
h4,
a {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

p {
    margin-top: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

img {
    max-width: 100%;
}


.nav-container {
    width: 100%;
    height: 100px;
    background-color: var(--preto-puro);
    padding: 0 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 200px;
}


.intro-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px);
    overflow: hidden;
}

.intro-container-img {
    width: 100%;
    height: 100%;
}

.intro-container-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    text-align: center;
    font-family: "Poppins", sans-serif;
}*/

#chat-robbu {
    position: fixed;
    top: 18%;
    bottom: 8px;
    left: 28%;
    transform: translateX(-50%);
    z-index: 9999;
    width: auto;
    max-width: 90%;
    text-align: center;
}

.cr-main {
    height: 100vh;
}

/*#cr-trigger {
    display: none !important;
}*/

#cr-chat-trigger {
    right: 140px;
    top: -12px;
}

@media (max-width: 1440px) and (min-width: 1201px) {
    #chat-robbu {
        height: 80vh;
        left: 34%;
        transform: translateX(-50%);
    }

    #cr-chat-trigger {
        display: none !important;   
     
     }

}

@media (max-width: 798px) {
    #chat-robbu {
        position: fixed;
        width: 84%;
        height: 50vh;
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        z-index: 9999;
    }

    /*#cr-trigger {
        display: flex !important;
        top: 100%;
        justify-content: center;
        align-items: center;
    }*/

}

@media (max-width: 400px) {
    #chat-robbu {
        height: 46vh;

    }
}

@media (max-width: 1100px) {
    #chat-robbu {
        height: 52vh;
        left: 50%;

    }
}

@media (min-width: 1800px) {
    #chat-robbu {
        height: 60vh;
        left: 22%;
    }
    #cr-chat-trigger {
        top: -40px;
    }
    
}