<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
   background-color: #FFF ;
   min-height: 200vh;
    font-family: 'Sora';
}

nav
{
    width: 100%;
    top: 0;
    left: 0;
    height: 80px; 
    padding: 0;
    background-color: transparent;
    border-style: hidden !important;
    box-shadow: none;
}


header
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    z-index: 998;
}

header.sticky
{ 
    background-color: #000;
}

header.sticky .logo,
header.sticky ul li a
{
    color: #FFF;
    align-items: center;

}

header .logo
{
    position: relative;
    font-weight: 700;
    color: #FFF;
    text-decoration: none;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.6s;
}

#flu{
    visibility: hidden;
}
.flua{
    visibility: visible !important;
}

nav ul
{
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li a
{
    margin: 0 15px;
    text-decoration: none;
    color: #FFF;
    letter-spacing: 3px;
    font-weight: 500px;
    font-size: 16px;
    transition: 0.6s;
}

.banner 
{
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
}
.titulo-hr {
  border-style: solid;
  color: #8c1010;
  border: 2px solid;
  width: 14em;
}
.linha {
  border-style: solid;
  color: #8c1010;
  border: 3px solid;
  width: 100%;
  align-items: center;
}
.align {
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel .carousel-item {
    height: 80px;
}
.sli{
    height: 100vh !important;
}
.sle{
    height: 600px !important;
}
.titulo{
    font-weight: bold; 
    font-family:'Fahkwang' !important;
    font-size: 1.8em;
}

#preloader {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#000000; /* cor do background que vai ocupar o body */
    z-index:999; /* z-index para jogar para frente e sobrepor tudo */
}

#preloader .inner {
    position: absolute;
    align-items: center;
    display: flex;
    top: 50%; /* centralizar a parte interna do preload (onde fica a animaÃ§Ã£o)*/
    left: 50%;
    transform: translate(-50%, -50%); 
}
.coracao {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  margin: 30px; /* EspaÃ§amento entre os coraÃ§Ãµes */
  animation-fill-mode: both;
  animation-name: animarCoraÃ§Ã£o;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.coracao::before,
.coracao::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 80px;
  background: darkred;
  border-radius: 50px 50px 0 0;
}

.coracao::before {
  top: -30px;
  left: 0;
  border-radius: 50px 50px 50px 0;
  transform: rotate(-51deg);
}

.coracao::after {
  top: -30px;
  left: 30px;
  border-radius: 50px 50px 0 50px;
  transform: rotate(51deg);
}

.inner &gt; div:nth-child(1) {
    animation-duration:0.75s ;
    animation-delay: 0;
}
.inner &gt; div:nth-child(2) {
    animation-duration: 0.75s ;
    animation-delay: 0.12s;
}
.inner &gt; div:nth-child(3) {
    animation-duration: 0.75s  ;
    animation-delay: 0.24s;
}

@keyframes animarCoraÃ§Ã£o {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  16% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }
  33% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; 
  } 
}


.parallax-container {
  height: 300px;
}

img {
    object-fit: cover;
}

.card-content{
    font-size: 1.2em; 
    padding: 0px !important; 
    margin-top: 12px; 
    text-align: justify;
}

.card{
    background-color: transparent !important;
     box-shadow: none;
}

hr{
  border-style: dotted;
  background-color: white;
}

.input-field input[type=text]:focus + label {
     color: #000 !important;
   }
   .input-field input[type=text]:focus {
     border-bottom: 1px solid #000 !important;
     box-shadow: 0 1px 0 0 #000 !important;
   }

   .waves {
  background-color: #ff0000; /* Replace with your desired color */
}

.progress{
    background-color: transparent;
}

.progress .indeterminate{
    background-color: #8c1010 !important;
}

@media (min-width: 768px) {
  .brand-logo {
    margin-left: 0.5em; /* A margem que vocÃª deseja aplicar */
  }
  .sld{
    padding-right: 3em !important;
  }
}</pre></body></html>