@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,400;0,500;0,700;1,400;1,600&family=Rufina&display=swap');

:root {
    --first-violet: #7030CC;
    --second-violet: #31017B;
    --third-violet: #030128;
    --first-gray: #D9D9D9;
    --second-gray: #4A4A4A;
    scroll-padding-top: 7vh;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
    transition: all ease-in-out 0.3s;
}

/* ===== SCROLL BAR ===== */

::-webkit-scrollbar {
    width: .60rem;
    background-color: #030128;
}
  
::-webkit-scrollbar-thumb {
    background-color: #7030CC;
    border-radius: 5px;
}

body {
    overflow-x: hidden;
}

/* Back Top Button */

.top-button {
    width: 3.2em;
    height: 3.2em;
    display: flex;
    justify-content: center;
    background-color: #32017bb6;
    padding: 1em;
    border-radius: 100%;
    box-shadow: 2px 1px 10px var(--first-gray);
    position: fixed;
    bottom: -10em;
    right: 1em;
    cursor: pointer;
    z-index: 99;
}
.top-button:hover {
    transform: scale(1.2);
}
.bottom{
    bottom: 5em !important;
}

/* Header */

header {
    position: fixed;
    background-color: white;
    top: 0;
    right: 0;
    left: 0;
    box-shadow: 1px 1px 10px var(--first-violet);
    z-index: 9;
}
.logo-box {
    padding: 0.3em 0;
}
.logo {
    font-family: 'Rubik', sans-serif;
    font-weight: bold;
    font-size: 1.5em;
    text-decoration: none;
    color: var(--second-violet); 
}
.nav-itens {
    list-style-type: none;
}
.nav-itens li {
    padding-left: 2em;
}
.nav-itens a {
    text-decoration: none;
    color: var(--second-violet);
    font-size: 1.1em;
    font-weight: 500;
}

.nav-itens a:hover {
    color: var(--first-violet);
}
header img {
    width: 2.5em;
    display: none;
}
#hamburger-menu-icon {
    cursor: pointer;
}

/* Política de Privacidade / Termos e Condições */

.politica-privacidade {
    padding-top: 8em;
    margin-bottom: 7em;
}
.politica-privacidade h1 {
    font-size: 2em;
    color: var(--second-violet);
    padding: 0 1em;
}
.politica-descricao {
    max-width: 45em;
    margin: auto;
    line-height: 1.8em;
}
.politica-descricao p {
    text-align: justify;
}
.politica-descricao span {
    font-weight: 600;
    color: var(--second-violet);
}

/* Section Cookies Bar */

.cookies-container {
    width: 80%;
    position: fixed;
    bottom: 2%;
    left: 10%;
    right: 10%;
    z-index: 9999;
    background-color: #7030CC;
    box-shadow: 1px 1px 1em 3px rgba(211, 211, 211, 0.566);
    border-radius: 3em;
    color: white;
    padding: 0.8em 1.5em;
    display: none;
}
.cookie-description-box img {
    width: 2.2em;
    padding-right: 0.7em;
}
.texto-cookies {
    font-size: 0.8em;
    padding-top: 0.5em;
}
.texto-cookies a {
    color: var(--first-gray);
    padding-left: 1em;
}
.aviso-cookies {
    font-size: 1em;
    font-weight: bold;
    padding-bottom: 0.1em;
}
.cookie-button-box button {
    background-color: black;
    color: white;
    border: none;
    padding: 0.5em 1em;
    border-radius: 3em;
    font-size: 0.9em;
}
.cookie-button-box button:hover {
    background-color: #31017B;
}
.cookies-container.mostrar {
    display: block;
}

/* Footer */

footer {
    background-color: var(--second-violet);
    color: var(--first-gray);
    overflow: hidden;
    border-radius: 1em 1em 0 0;
}
.footer-nome {
    font-family: 'Rufina', serif;
    font-size: 2.5em;
}
.email-telefone-container img {
    width: 2em;
}
.email-telefone-container {
    gap: 5em;
}
.footer-politica a {
    font-size: 0.8em;
    color: var(--first-gray);
    text-decoration: none;
}
.footer-politica a:hover {
    color: white;
}

/* Redes Sociais */

.social {
    transition: all ease-in-out 0.2s;
}
.social:hover {
    transform: scale(1.2);
}

/* Desenvolvido por */

.desenvolvido-por {
    background-color: var(--third-violet);
    color: var(--first-gray);
    font-size: 0.8em;
}
.desenvolvido-por span {
    font-size: 1.1em;
    font-weight: 500;
}










/* --------------- Media Queries */

@media (max-width: 850px) {
    .top-button {
        transform: scale(0.8);
        right: 0.3em;
    }
}

@media  (max-width: 576px) {
    .logo {
        font-size: 1em;
    }
    .politica-privacidade h1 {
        font-size: 1.5em;
    }
    .email-telefone-container {
        gap: 2em;
    }
    .cookies-container {
        width: 96%;
        bottom: 2%;
        left: 2%;
        right: 2%;
        padding: 0.8em 1.5em;
    }
}

@media (max-width: 482px) {
    .cookies-container {
        padding: 0.5em 1em;
        border-radius: 1em;
        bottom: 0.5%;
    }
    .cookie-description-box p {
        font-size: 0.7em;
    }
    .cookie-button-box button {
        font-size: 0.8em;
    }
}