/* style css */

html, body {
    height: 100%;
    width: 100%;
}

html {
    display: block;
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    background-color: #FAF6F4;
    /* background-color: black; */
    overflow-x: hidden;

    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

* {
    box-sizing: border-box;
    font-size: 16px;
}

h2 {
  /* all: unset; */
}

h3 {
    margin: 0;
}


.center-text {
    justify-content: center;
}

::-webkit-scrollbar {
    width: 5px;
    border-radius: 50px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #ddccd1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #7a3448;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    /* background: #59021b; */
}

@font-face {
    font-family: 'Aller Std 1';
    src: url('../media/font/aller_bd.ttf');
}

/* @font-face {
    font-family: 'Aller Std 2';
    src: url('../media/font/aller_bdit.ttf');
} */

@font-face {
    font-family: 'Aller Std 3';
    src: url('../media/font/aller_it.ttf');
}

/* @font-face {
    font-family: 'Aller Std 4';
    src: url('../media/font/aller_lt.ttf');
}

@font-face {
    font-family: 'Aller Std 5';
    src: url('../media/font/aller_ltit.ttf');
} */

@font-face {
    font-family: 'Aller Std 6';
    src: url('../media/font/aller_rg.ttf');
}

/* @font-face {
    font-family: 'Aller Std 7';
    src: url('../media/font/aller_rgit.ttf');
} */

.pointer {
    cursor: pointer;
}

.aller-bold {
    font-family: "Aller Std 1";
}

.aller-italic {
    font-family: "Aller Std 3";
}

.aller-regular {
    font-family: "Aller Std 6";
}

.invisible {
    opacity: 0;
    transition: 1.5s ease;
    /* display: none; */
}

.visible {
    opacity: 1;
    /* display: flex; */
    transition: 1.5s ease;
}

.whats-app-div {
    z-index: 999;
    position: fixed;
    background-color: #06BB94;
    left: 25px;
    bottom: 25px;
    /* right: 20px;
    bottom: 20px; */
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    --fa-animation-duration: 2s;
}

.whats-app-div a i {
    font-size: 2rem;
    color: white;
}

.whats-app-div a {
    color: inherit;
}

#particles-js{
    position: absolute;
    width: 100%;
    height: 100%;
    /* background-color: #4c0c1f; */
    background-image: url('');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.wave-top {
    position: relative;
    top: 0px;
}
.wave-bottom {
    position: relative;
    bottom: 0px;
}


/* Coookies banner inicio */


.cookies-banner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    position: fixed;
    bottom: 0px;
    background-color: #59021b;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

.cookies-banner .cookies-buttons {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
}

.cookies-banner p {
    color: #dbced2;
    font-family: 'aller-lt';
    font-weight: 600;
    margin: 0px;
    font-size: 15px;
}


.cookies-banner p a {
    font-family: 'aller-lt';
    font-weight: 600;
    margin: 0px;
    font-size: 15px;
}

.white-text {
    color: #FAF6F4;
}

.green {
    background-color: green;
}

.red {
    background-color: #640b19;
}

.cookies-banner button {
    border-style: none;
    font-family: 'aller-lt';
    font-weight: 600;
    color: #dbced2;
    width: 170px;
    margin: 5px;
}

.cookies-banner button:hover {
    cursor: pointer;
}


/* Cookies banner fim */


footer {
    position: relative;
    z-index: 1;
    height: 50px;
    background-color: #4c0c1f;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer h3 {
    font-size: 15px;
    font-family: 'Aller Std 6';
    color: #dbced2;
}

@media only screen and (orientation: portrait) and (max-width: 767px) {
    footer h3 {
        font-size: 2vw;
    }
}