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

:root{
  font-size: 62.5%; /*1 rem = 10px*/
  --primary-color: #51B86E;
  --headline: #212529;
  --paragraph: #495057;
  --header-background: #DCE9E2;
  --dados-background: #FFFAF1;
  --servicos-background: #F7F9F9;
  --brand-green:#DCE9E2;
  --icon-color: #fff;
  --icon-hover: #fff;
  --background-color: #00c800;
  --background-hover: #009600
}

body{
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  text-align: center;
}

header nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 7.2rem;
  transition: all .5s;
}

.heroSection::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  
  width: 100%;
  height: 90rem;
}


.container{
  padding: 0rem 2.4rem;
}

.heroSection h4{
  margin-top: 4rem;
  font-size: 1.4rem;
  color: var(--primary-color);
}

h1{
  margin-top: 1.6rem;
  font-size: 3.4rem;
  color: var(--headline);
  line-height: 130%;
}

.heroSection .container &gt; p{
  margin: 2.4rem 0 3.2rem 0;
  font-size: 1.8rem;
  color: var(--paragraph);
  line-height: 150%;
  font-weight: 400;
}

.heroSection img{
  margin: auto;
  display: block;
  width: 100%;
}

@media (min-width: 768px){
  .heroSection::before{
    background-image: url('/assets/Foto.JPG');
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-filter: blur(3px) brightness(40%);
    -moz-filter: blur(3px) brightness(40%);
    -o-filter: blur(3px) brightness(40%);
    -ms-filter: blur(3px) brightness(40%);
    filter: blur(3px) brightness(40%);
    height: 60rem;
  }
  .heroSection img{
    display: none;
  }
  
}

.servicos h4{
  color: var(--primary-color) !important;
  margin-block: 10rem 1.6rem;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  line-height: 150%;
  position: relative;
}

.modals {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999999;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  backdrop-filter: blur( 4px );
  background: rgba( 255, 255, 255, 0.6 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  -webkit-backdrop-filter: blur( 4px );
  border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.modal-title{
  font-size: 1.8rem;
}

.modal-body {
  font-size: 1.6rem;
}

.about{
  margin-top: 5rem;
  text-align: left;
  padding-block: 10rem 11.6rem;
  background-color: var(--dados-background);
}

.about h4{
  margin-bottom: 1.6rem;
  font-size: 1.4rem;
  line-height: 150%;
  color: var(--primary-color);
}

.about h3{
  margin-bottom: 2.4rem;
  font-size: 3rem;
  line-height: 3.9rem;
}

.about p{
  margin-bottom: 4rem;
  font-size: 1.6rem;
  line-height: 150%;
  color: var(--paragraph);
}

.faq{
  padding: 8rem 0;
}

.faq h4{
  margin-bottom: 1.6rem;
  font-size: 1.4rem;
  line-height: 150%;
  color: var(--primary-color);
}

.faq .accordion-header button{
  font-size: 2.2rem !important;
  padding-block:2rem;
}

.faq .accordion-button:focus{
  border-color: var(--brand-green) !important;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(98, 255, 98, 0.25);
}

.faq .accordion-button:not(.collapsed){ 
  background-color: var(--brand-green) !important;
  color: var(--primary-color) !important;
}

.faq .accordion-body{
  font-size: 2rem;
  text-align: justify;
}

.contact{
  text-align: left;
  background-color: var(--dados-background);
  padding-block: 8rem;
}

.contact h3{
  font-size: 30px;
  line-height: 39px;
}

.contact .app-form-group {
  margin-bottom: 15px;
}

.contact .app-form-group.message {
  margin-top: 40px;
}

.contact .app-form-group.buttons {
  margin-bottom: 0;
  text-align: right;
}

.contact .app-form-control {
  width: 100%;
  padding: 10px 0;
  font-size: 14px;
  background: none;
  border: none;
  border-bottom: 2px solid #666;
  color: rgb(26, 26, 26);
  border-radius: 0;
  outline: none;
  transition: border-color .2s;
}

.contact .app-form-control::placeholder {
  color: rgb(102, 102, 102);
}

.contact .app-form-control:focus {
  border-bottom-color: rgb(53, 53, 53);
}

.contact .app-form-button {
  margin: 2rem 0 !important;
  width: 100%;
}

.contact a{
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: .5rem;
  font-weight: 500;
  margin: 2rem 0 !important;
  width: 100%;
}

.contact a:hover{
  background-color: #25d366;
  color: #FFF;
}

.contact h2{
  font-size: 1.8rem;
  text-align: center;
}

footer{
  background-color: var(--primary-color);
  color: #fff;
  padding-block: 6rem;
}

footer h1 {
  color: #FFF;
}

footer .logo {
  display: block;
  margin-bottom: .9rem;
}

footer p a {
  text-decoration: none;
  color: white;
}

.whatsapp-flutuante{
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align:center;
  position:fixed;
  width: 50px;
  height: 50px;
  bottom:25px;
  right:25px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  font-size:25px;
  box-shadow: 1px 1px 2px #888;
  z-index:1000;
}



.icon {
  width: 48px;
  height: 48px;
  transform: scale(0.6) translate(20%, 20%);
  fill: var(--icon-color)
}

.float {
  position: fixed;
  cursor: pointer;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  transition: 1s;
  background-color: var(--background-color);
  border-radius: 50px;
  animation: pulse 3s infinite;
  -webkit-animation: pulse 3s infinite;
  -moz-animation: pulse 3s infinite;
  -o-animation: pulse 3s infinite;
  z-index: 99999
}

.float:hover {
  background-color: var(--background-hover)
}

.float:hover .icon {
  fill: var(--icon-hover)
}

@-webkit-keyframes pulse {
  0% { -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1) }
  70% { -webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0) }
  100% { -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0) }
}

@-o-keyframes pulse {
  0% { -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1) }
  70% { -webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0) }
  100% { -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0) }
}

@-ms-keyframes pulse {
  0% { -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1) }
  70% { -webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0) }
  100% { -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0) }
}

@-moz-keyframes pulse {
  0% { -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1) }
  70% { -webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0) }
  100% { -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0) }
}

@keyframes pulse {
  0% { -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1) }
  70% { -webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0) }
  100% { -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0) }
}

</pre></body></html>