html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.body {
    background-image: url('/images/fundo.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.privacy-banner {
    position: fixed;
    bottom: 0;
    width: 110vh;
    padding: 10px;
    margin: 10px;
    background-color: #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.barra {
    background-color: #904efa;
    border-radius: 5px;
    width: auto;
    height: 1px;
    margin: 50px;
    align-content:center      

}

/* Paleta de Cores
#421d7d - escuro
#904efa - claro
*/

.bar {
    width: 50px;
    animation: rise 5.5s ease-out infinite;    
}
@keyframes rise {
    from {
        height: 0;
    }

    to {
        
    }
}


.border-elevation {
    border: 2px outset #aaa;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}

.pulse-gradiente {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    animation: Gradiente 10s infinite ease-in-out;
    margin: 100px auto;    
}
@keyframes Gradiente {
    0% {
        transform: scale(1) rotate(45deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.3) rotate(-45deg);
        opacity: 0.5;
    }

    100% {
        transform: scale(1) rotate(45deg);
        opacity: 1;
    }
}

.text-justify {
    text-align: justify;
}

html {
    scroll-behavior: smooth;
}


.btn-outline-primary:hover {
    background-color: #904efa;
}

.footer img {
    width: 50px;
    height: 50px;
    margin: 10px;
}

.d-flex {
    flex-wrap: wrap;
}


@media (max-width: 500px) {
    .row {
        display: block;
    }

    .col {
        display: block;
    }

}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-in-out forwards;
}





