/* BOOTSTRAP */
@import url(./bootstrap.min.css);
/* FONTE */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* STYLES */
@import url(./home.css);
@import url(./politicas-de-privacidade.css);
@import url(./erro404.css);



:root {
    --roxo: #2A0638;
    --roxo-claro: #540D6E;
    --creme: #D9D4C8;
    --branco: #F4F2EC;
    --preto: #222222;
    
    
    --filtro-roxo: rgba(42, 6, 56, 0.9);
    --grafismo: rgba(84, 13, 110, 0.25);
    --bg-card-fazemos-por-voce: rgba(84, 13, 110, 0.3);
}

html, body, div, ul, li, a, p, h1, h2, h3, h4, h5, h6, input, label {font-family: "Montserrat", sans-serif !important;}

html, body {
    font-size: 16px;

    background-color: var(--preto);

    /* scroll-padding-top: 5rem; */
}

body::-webkit-scrollbar {
    width: .5rem;
}
body::-webkit-scrollbar-track {
    background: var(--roxo);
}
body::-webkit-scrollbar-thumb {
    background-color: var(--roxo-claro);

    border-radius: 20px;
    border: 2px solid var(--roxo);
}

section {
    padding: 8rem 0;
}

a, button {text-decoration: none; transition: all 0.3s ease-in-out; cursor: pointer;}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;

    background: transparent;

    width: 100%;
}
header div.container {
    background-color: var(--roxo);

    border-bottom-left-radius: 2.5rem;
    border-bottom-right-radius: 2.5rem;

    box-shadow: 0px 8px 4px -4px rgba(84, 13, 110, 0.3);
    -webkit-box-shadow: -1px 8px 4px -4px rgba(84, 13, 110, 0.3);
    -moz-box-shadow: 0px 8px 4px -4px rgba(84, 13, 110, 0.3);
}
header img {
    height: 1.5rem;
    width: auto;
}
header a.btn {
    width: fit-content;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: var(--roxo-claro);
    
    padding: 1rem 2rem;
    
    border-radius: 99999px;
    
    font-size: .875rem;
    font-weight: 900;
    color: var(--branco);
    text-transform: uppercase;
    text-align: center;
}
header a.btn:hover {
    background-color: var(--branco);

    color: var(--roxo-claro);
}

div#privacy-policy {
    border-top: 2px solid var(--roxo-claro);

    width: 100%;
    height: auto;

    background-color: var(--creme);

    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
}
div#privacy-policy p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--preto);
}
div#privacy-policy p a {
    color: var(--roxo-claro);

    text-decoration: underline;
}
div#privacy-policy p a:hover {
    opacity: .5;
}
div#privacy-policy button {
    width: fit-content;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: var(--roxo-claro);
    
    padding: .75rem 1.5rem;
    
    border-radius: 99999px;
    
    font-size: .75rem;
    font-weight: 900;
    color: var(--branco);
    text-transform: uppercase;
    text-align: center;
}
div#privacy-policy button.aceitar {
    background-color: var(--roxo-claro);
    color: var(--branco);
}
div#privacy-policy button.declinar {
    background-color: var(--roxo);
    color: var(--branco);
}
div#privacy-policy button.aceitar:hover {
    background-color: var(--branco);

    color: var(--roxo-claro);
}
div#privacy-policy button.declinar:hover {
    background-color: var(--creme);

    color: var(--roxo);
}

footer {
    background-color: var(--roxo);
}
footer div.container {
    background-color: var(--roxo);

    border-top-left-radius: 2.5rem;
    border-top-right-radius: 2.5rem;

    border-top: 2px solid var(--roxo-claro);
    border-left: 2px solid var(--roxo-claro);
    border-right: 2px solid var(--roxo-claro);
}
footer img {
    height: 1.5rem;
    width: auto;

    margin: 0 auto;
}
footer p {
    font-size: .75rem;
    font-weight: 400;
    color: var(--branco);
    text-align: center;
}


@media (max-width: 992px) {
    html, body {font-size: 15px;}
}

@media (max-width: 576px) {
    html, body {font-size: 14px;}

    header img {
        height: 1rem;
    }

    header a.btn {
        padding: 1rem 1.5rem;
        
        font-size: .75rem;
    }
}