<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Exo:wght@300;400;700;900&amp;display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Exo', sans-serif;
}
:root{
    --red-color: #ed3237;
    --grey-color: #737373;
    --grey-color-2: #353535;
}
html{
    scroll-behavior: smooth;
}
body{
    margin: 0;
    padding: 0;
}
.red{
    color: var(--red-color);
}
.star{
    margin-bottom: 20px;
}
.fi-xnsuxl-star-solid{
    color: #edb601;
}
/* HERO PAGE */
.hero-pre-tittle{
    font-size: 30px;
    font-weight: 300;
    color: white;
    text-transform: uppercase;
}
.hero-tittle{
    max-width: 50%;
    font-size: 56px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
}
.hero-tittle::after{
    content: '';
    width: 100px;
    height: 5px;
    background-color: var(--red-color);
    position: absolute;
    left: 0;
    bottom: 0;
}
.hero-p{
    max-width: 50%;
    font-size: 18px;
    font-weight: 400;
    color: white;
    margin-bottom: 20px;
}
@media (max-width: 768px){
    .hero-tittle{
        max-width: 100%;
    }
    .hero-p{
        max-width: 100%;
    }
}
@media (max-width: 425px){
    .hero-tittle{
        font-size: 46px;
    }
}
/* FIM DO HERO PAGE */
.bbb{
    width: 1080px;
    margin: 0 auto;
    text-align: center;
    padding: 10px 0;
}
/* BOTÃƒO VERMELHO */
.btn-red{
    width: 160px;
    height: 45px;
    background-color: var(--red-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: opacity .3s ease-in;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-red:hover{
    opacity: .5;
}
.btn-red-link{
    font-size: 18px;
    font-weight: 300;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    margin-left: -12px;
}
.btn-red-link::before{
    content: '';
    width: 7px;
    height: 2px;
    background-color: white;
    position: absolute;
    top: 46%;
    right: -15px;
    transform: rotate(45deg) translateX(-46%);
    transition: right .2s ease-in;
}
.btn-red-link::after{
    content: '';
    width: 7px;
    height: 2px;
    background-color: white;
    position: absolute;
    top: 46%;
    right: -15px;
    transform: rotate(-45deg) translateX(-46%);
    transition: right .2s ease-in;
}
.btn-red:hover &gt; ::before{
    right: -20px;
}
.btn-red:hover &gt; ::after{
    right: -20px;
}
/* FIM DO BOTÃƒO VERMELHO */
/* BOTÃƒO BRANCO */
.btn-white{
    width: 160px;
    height: 45px;
    background-color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: opacity .3s ease-in;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-white:hover{
    opacity: .5;
}
.btn-white-link{
    font-size: 18px;
    font-weight: 300;
    color: black;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    margin-left: -12px;
}
.btn-white-link::before{
    content: '';
    width: 7px;
    height: 1px;
    background-color: black;
    position: absolute;
    top: 46%;
    right: -15px;
    transform: rotate(45deg) translateX(-46%);
    transition: right .2s ease-in;
}
.btn-white-link::after{
    content: '';
    width: 7px;
    height: 1px;
    background-color: black;
    position: absolute;
    top: 46%;
    right: -15px;
    transform: rotate(-45deg) translateX(-46%);
    transition: right .2s ease-in;
}
.btn-white:hover &gt; ::before{
    right: -20px;
}
.btn-white:hover &gt; ::after{
    right: -20px;
}
/* FIM DO BOTÃƒO BRANCO */
/* TÃTULO E TEXTO PRETO */
.title-h2-black{
    font-size: 42px;
    font-weight: 600;
    color: black;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.title-h2-black::after{
    content: '';
    width: 100px;
    height: 5px;
    background-color: var(--red-color);
    position: absolute;
    left: 0;
    bottom: 0;
}
.title-h3-black{
    font-size: 30;
    font-weight: 300;
    color: var(--grey-color);
    text-transform: uppercase;
    margin-bottom: 40px;
}
.title-p-black{
    font-size: 18;
    font-weight: 400;
    color: var(--grey-color);
    margin-bottom: 20px;
}
/* FIM DO TÃTULO E TEXTO PRETO */
/* TÃTULO E TEXTO BRANCO */
.title-h2-white{
    font-size: 42px;
    font-weight: 600;
    color: white;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.title-h2-white::after{
    content: '';
    width: 100px;
    height: 5px;
    background-color: white;
    position: absolute;
    left: 0;
    bottom: 0;
}
.title-h3-white{
    font-size: 30;
    font-weight: 300;
    color: white;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.title-p-white{
    font-size: 18;
    font-weight: 400;
    color: white;
    margin-bottom: 20px;
}
/* FIM DO TÃTULO E TEXTO BRANCO */
/* MÃDIAS*/
.midias{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
}
.midias img{
    transition: opacity .3s ease-in;
}
.midias img:hover{
    opacity: .5;
}
@media (max-width: 445px){
    .midias{
        display: none;
    }
}
/* FIM DAS MÃDIAS */
/* CALL */
.call{
    width: 100%;
    background-image: linear-gradient(to right, #7c080b,#ed3237,#7c080b);
}
.call-container{
    max-width: 1024px;
    padding: 20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.call-container h2{
    font-size: 24px;
    font-weight: 300;
    color: white;
    margin-right: 20px;
}
@media (max-width: 546px){
    .call-container{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .call-container h2{
        margin-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }
}
/* FIM DA CALL */
/*NAV*/
.menu{
    width: 100%;
    height: 95px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: #000;
}
.menu-contensor{
    max-width: 1024px;
    height: 95px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu-contensor-logo{
    max-width: 100%;
    opacity: 1;
    transition: opacity .3s ease-in;
}
.menu-contensor-logo:hover{
    opacity: .5;
}
.menu-contensor-label{
    cursor: pointer;
    display: none;
}
.fi-xnsuxl-three-bars-solid{
    font-size: 28px;
    color: white;
}
.menu-contensor-input{
    display: none;
}
.menu-contensor-btns{
    list-style: none;
    display: flex;
}
.menu-contensor-btns-btn{
    margin-left: 30px;
}
.menu-contensor-btns-btn-link{
    font-size: 14px;
    font-weight: 400;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .5s ease-in;
}
.menu-contensor-btns-btn-link:hover{
    color: var(--red-color);
}
.ativo{
    color: var(--red-color);
}
.ativo:hover{
    color: #fff;
}
.contato{
    border: 1px solid var(--red-color);
    border-radius: 5px;
    padding: 5px 15px;
    transition: all .5s ease-in;
}
.contato:hover{
    border: 1px solid #fff;
}
@media (max-width: 768px){
    .menu{
        background-color: rgba(0, 0, 0, 0.8);
    }
    .menu-contensor{
        position: relative;
        padding: 0;
    }
    .menu-contensor-logo{
        padding-left: 20px;
    }
    .menu-contensor-label{
        cursor: pointer;
        display: block;
        margin-right: 20px;
    }
    .menu-contensor-input{
        display: none;
    }
    .menu-contensor-btns{
        width: 100%;
        height: calc(100vh - 95px);
        flex-direction: column;
        justify-content: space-around;
        align-items: flex-end;
        position: absolute;
        top: 95px;
        background-color: rgba(0, 0, 0, 0.8);
        display: none;
        animation: menu .3s ease-in;
    }
    @keyframes menu{
        from{
            opacity: 0;
            transform: translateX(-100%);
        }
        to{
            opacity: 1;
            transform: translateX(0);
        }
    }
    .menu-contensor-btns-btn{
        margin-left: 0;
        margin-right: 20px;
    }
    .menu-contensor-btns-btn-link{
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        text-decoration: none;
        text-transform: uppercase;
        transition: color .5s ease-in;
    }
    .menu-contensor-btns-btn-link:hover{
        color: var(--red-color);
    }
    .ativo{
        color: var(--red-color);
    }
    .ativo:hover{
        color: #fff;
    }
    .contato{
        border: 2px solid var(--red-color);
        border-radius: 50px;
        padding: 5px 15px;
        transition: all .5s ease-in;
    }
    .contato:hover{
        border: 2px solid #fff;
    }
    #burger:checked ~ .menu-contensor-btns{
        display: flex;
    }
}
/* END NAV */

/* FIRST */
.first-container{
    max-width: 1024px;
    display: flex;
    margin: 0 auto;
    padding: 150px 10px 50px 10px;
}
.first-container-txt{
    width: 50%;
    display: flex;
    align-items: center;
}
.first-container-txt p{
    font-size: 50px;
    font-weight: 900;
}
.first-container-txt-red{
    color:var(--red-color);
}
.first-container-video{
    width: 50%;
}
@media (max-width: 768px){
    .first-container{
        display: flex;
        flex-direction: column;
    }
    .first-container-txt{
        width: 100%;
        text-align: center;
    }
    .first-container-txt p{
        font-size: 36px;
    }
    .first-container-video{
        width: 100%;
    }
}
/* END FIRST */

/* HOME */
.home-hero-content{
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, .7);
    position: relative;
}
.home-hero-container{
    max-width: 1024px;
    min-height: calc(100vh - 105px);
    margin: 0 auto;
    padding: 105px 20px 0 20px;
    display: flex;
    align-items: center;
}
.home-hero-language{
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    background-color: black;
    border: 2px solid white;
    border-radius: 50px;
    padding: 5px 15px;
}
.home-hero-language p{
    font-size: 14px;
    font-weight: 300;
    color: white;
    text-transform: uppercase;
}
.navegador-linguas-img{
    margin-left: 5px;
}
.home-hero-infos-videos{
    display: flex;
    gap: 10px;
}
.home-hero-video-bg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: -2;
}

.home-testimonials-container{
    width: 100%;
    min-height: 540px;
}
.home-testimonials-content{
    max-width: 1024px;
    padding: 100px 20px;
    margin: 0 auto;
}
.home-testimonials-row-1{
    width: 100%;
}
.home-testimonials-row-2{
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px 0;
}
.card{
    width: 280px;
    height: 380px;
    background-color: #f4f4f4;
    border-radius: 5px;
    padding: 20px 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
    position: relative;
}
.card-photo{
    width: 100%;
    border-radius: 5px;
}
.card-title{
    display: flex;
    align-items: center;
}
.fi-xnsuxl-user-solid{
    margin-right: 5px;
    color: #4a4a4a;
}
.card-title h2{
    color: #4a4a4a;
    margin: 10px 0;
}
.card p{
    text-align: left;
    font-size: 14px;
}
.card-stars{
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.home-testimonials-row-3{
    width: 100%;
}

@media (max-width: 598px){
    .home-hero-language{
        display: none;
    }
    .home-hero-infos-videos{
        display: none;
    }
}
/* END HOME */
/* OUR SERVICES */
.ours-hero{
    width: 100%;
    min-height: 540px;
    background-image: url('../IMG/SERVICES-BG-HERO.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.ours-hero-container{
    max-width: 1024px;
    min-height: 540px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 105px 20px 0 20px;
    position: relative;
}
/* END OUR SERVICES */
/* PEST CONTROL */
.pestc-hero{
    width: 100%;
    min-height: 540px;
    background-image: url('../IMG/pest-control-bg-banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.pestc-hero-container{
    max-width: 1024px;
    min-height: 540px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 105px 20px 0 20px;
    position: relative;
}
.pestc-hero-container-img{
    position: absolute;
    bottom: 0;
    right: 20px;
}
.pestc-abt-content{
    width: 100%;
    height: auto;
    padding: 100px 0;
    background-image: linear-gradient(90deg, #fff 50%, var(--grey-color) 50%);
}
.pestc-abt-container{
    max-width: 1024px;
    height: auto;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    padding: 0 20px;
    align-items: center; 
}
.pestc-abt-left{
    width: 50%;
    height: auto;
}
.rc-pest-control-sub{
    color:var(--red-color);
}
.pc-about-h3-depoimento{
   color:var(--grey-color);
   font-size:20px;
}
.pestc-abt-right{
    width: 50%;
    height: auto;
    display: flex;
    gap: 10px;
}
.pestc-gallery-1{
    width: 100%;
    display:flex;
    justify-content: space-between;
    gap: 10px;
}
.pestc-gallery-2{
    width: 50%;
}
.pestc-gallery-1 img{
    width: 100%;
}
.pestc-gallery-2 img{
    width: 100%;
}
.pestc-over-content{
    width: 100%;
    height: auto;
    padding: 50px 0;
    background-image: url('../IMG/PC-BG-01.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.pestc-over-container{
    max-width: 1024px;
    height: auto;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    padding: 0 20px;
    align-items: center;
}
.pestc-over-left{
    width: 50%;
    height: auto;    
    position: relative;
}

.pestc-over-right{
    width: 50%;
    height: auto;    
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
}
.pestc-feel-content{
    width: 100%;
    height: auto;
    padding: 100px 0;
    background: linear-gradient(90deg, #000 50%, #fff 50%);    
    position: relative;
    overflow: hidden;
}
.pestc-feel-container{
    max-width: 1024px;
    height: auto;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    padding: 0 20px;
    align-items: center;   
}
.pestc-feel-left{
    width: 50%;
    height: auto;    
}
.pestc-feel-right{
    width: 50%;
    height: auto;   
    display: flex;
    flex-direction: column;
    flex-wrap: wrap; 
}
.pestc-feel-right img{
    width: 50%;
}
.pestc-gallery-content{
    width: 100%;
    height: auto;
    padding: 100px 0 0 0;
    background-image: url('../IMG/PESTC-GALLERY-BG.jpg');    
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative; 
}
.pestc-gallery-container{
    max-width: 1024px;
    height: auto;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    padding: 0 20px;
    align-items: center;
}
.pestc-gallery-center{
    width: 100%;
    height: auto; 
    margin-bottom: 50px;      
}
.pestc-gallery-img{
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.pestc-gallery-img a{
    width: 20%;
    height: 100%;
    text-decoration: none;
    opacity: .5;
    margin: 0;
    padding: 0;
    transition: opacity .3s ease-in;
}
.pestc-gallery-img a:hover{
    opacity: 1;
}
.pestc-gallery-img a img{
    width: 100%;
}
.pestc-gallery-language{
    display: flex;
    align-items: center;
    background-color: #000;
    border-radius: 5px;
    border: 1px solid #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    padding: 5px 15px;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
}
.pestc-west-content{
    width: 100%;
    height: auto;
    padding: 100px 0;
    background-image: linear-gradient(90deg, #fff 50%, #000 50%);    
    position: relative; 
    overflow: hidden;
}
.pestc-west-container{
    max-width: 1024px;
    height: auto;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    padding: 0 20px;
    align-items: center;
}
.pestc-west-left{
    width: 50%;
    height: auto;      
}
.pestc-west-left-license{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 500px;
    margin: 50px auto 0 auto;
}
.pestc-west-left-license img{
    max-width: 100%;
}
.pestc-west-right{
    width: 50%;
    height: auto;      
}
.pestc-contact-content{
    width: 100%;
    height: auto;  
    position: relative;
    display: none;
}
.pestc-contact-container{
    max-width: 1024px;
    height: auto;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    padding: 0 20px;
    align-items: center;
}
.pestc-contact-left{
    width: 50%;
    height: auto;  
    background-color: #000;   
    padding: 100px 20px;
}
.pestc-contact-left h2{
    font-size: 28px;
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    padding-bottom: 20px;
}
.pestc-contact-left h2::after{
    content: '';
    width: 100px;
    height: 5px;
    background-color: var(--red-color);
    position: absolute;
    left: 0;
    bottom: 0;
}
.pestc-contact-left form{
    display: flex;
    flex-direction: column;
}
.pestc-contact-left form input{
    border: none;
    border-bottom: 1px solid var(--red-color);
    background-color: inherit;
    margin-bottom: 20px;
    color: white;
    font-size: 16px;
    outline: none;
}
.pestc-contact-left form input:nth-child(1){
    margin-top: 30px;
}
.pestc-contact-left form input::placeholder{
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
}
.pestc-contact-left form textarea{
    max-width: 100%;
    min-width: 100%;
    border: none;
    border-bottom: 1px solid var(--red-color);
    background-color: inherit;
    margin-bottom: 20px;
    color: white;
    font-size: 16px; 
    outline: none;   
}
.pestc-contact-left form textarea::placeholder{
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;   
}
.pestc-contact-left form button{
    border: none;
    background-color: var(--red-color);
    border-radius: 5px;
    padding: 5px 0;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    transition: opacity .3s ease-in;
}
.pestc-contact-left form button:hover{
    opacity: .5;
}
.pestc-contact-left form button a{
    text-decoration: none;
}
.pestc-contact-right{
    width: 50%;
    height: auto;     
}
@media (max-width: 768px){
    .pestc-hero-container-img{
        display: none;
    }
    .pestc-abt-content{
        background-image: linear-gradient(0deg, var(--grey-color) 50%, #fff 50%);
    }
    .pestc-abt-container{
        flex-direction: column; 
    }
    .pestc-abt-left{
        width: 100%;
    }
    .pestc-abt-right{
        width: 100%;
        flex-direction: column;
    }
    .pestc-over-container{
        flex-direction: column;
        padding: 0 20px;
    }
    .pestc-over-left{
        width: 100%; 
    }
    .pestc-over-right{
        width: 100%;
        padding: 20px;
        border-radius: 0;
    }
    .pestc-feel-content{
        background: linear-gradient(0deg, #fff 40%, #000 40%);    
    }
    .pestc-feel-container{
        flex-direction: column;   
    }
    .pestc-feel-left{
        width: 100%;   
    }
    .pestc-feel-right{
        width: 100%; 
    }
    .pestc-west-content{
        background-image: linear-gradient(0deg, #000 50%, #fff 50%);    
    }
    .pestc-west-container{
        flex-direction: column;
    }
    .pestc-west-left{
        width: 100%;      
    }
    .pestc-west-right{
        width: 100%;      
    }
    .pestc-contact-container{
        flex-direction: column;
    }
    .pestc-contact-left{
        width: 100%;
    }
    .pestc-contact-right{
        width: 100%;     
    }
}
@media (max-width: 425px){
    .pestc-contact-container{
        flex-direction: column;
    }
    .pestc-contact-left{
        width: 100%;
    }
    .pestc-contact-right{
        width: 100%;     
    }
    .pestc-west-content{
        background-image: linear-gradient(0deg, #000 50%, #fff 50%);    
    }
    .pestc-west-container{
        flex-direction: column;
    }
    .pestc-west-left{
        width: 100%;      
    }
    .pestc-west-right{
        width: 100%;      
    }
    .pestc-feel-content{
        background: linear-gradient(0deg, #fff 40%, #000 40%);    
    }
    .pestc-feel-container{
        flex-direction: column;   
    }
    .pestc-feel-left{
        width: 100%;   
    }
    .pestc-feel-right{
        width: 100%; 
    }
    .pestc-over-container{
        flex-direction: column;
        padding: 0 20px;
    }
    .pestc-over-left{
        width: 100%; 
    }
    .pestc-over-right{
        width: 100%;
        padding: 20px;
        border-radius: 0;
    }
    .pestc-abt-content{
        background-image: linear-gradient(0deg, var(--grey-color) 50%, #fff 50%);
    }
    .pestc-abt-container{
        flex-direction: column; 
    }
    .pestc-abt-left{
        width: 100%;
    }
    .pestc-abt-right{
        width: 100%;
    }
    .pestc-gallery-img a{
        width: 100%;
        height: 100%;
    }
    .pestc-gallery-language{
        width: 75%;
        justify-content: center;
    }
}
/* FIM DO PEST CONTROL */

.home-pest-container-2{
    max-width: 100%;
    padding: 50px 20px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    background-color: #000;
    z-index: 2;
}
.home-pest-container-2 &gt; h2{
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 50px;     
}
.home-pest-container-2 &gt; h2::after{
    content:'';
    width: 100px;
    height: 5px;
    background-color: var(--red-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;     
}

/*HOME-CRITTER*/
.home-critter{
    width: 100%;
    min-height: 540px;
    background-image: url('../IMG/HOME-BG-1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.home-critter-container{
    max-width: 1024px;
    min-height: 540px;
    padding: 50px 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}
.home-critter-container &gt; h2{
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;   
}
.home-critter-container &gt; h2::after{
    content:'';
    width: 100px;
    height: 5px;
    background-color: var(--red-color);
    position: absolute;
    right: 0;
    bottom: 0;   
}
.home-critter-container &gt; h3{
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;    
}
.home-critter-container &gt; p{
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
    width: 50%;
    text-align: right;
}
.home-critter-container &gt; a{
    font-family: 'Exo', sans-serif;
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--red-color);
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.3);
    transition: all .3s ease-in;
    position: relative; 
}
.home-critter-container &gt; a:hover{
    opacity: .5;
}
@media (max-width: 768px){
    .home-critter-container &gt; p{
        width: 100%;
    }
}
/*END-HOME-CRITTER*/

/* TESTIMONIALS */
.test-hero{
    width: 100%;
    min-height: 540px;
    background-image: url('../IMG/about-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.test-hero-container{
    max-width: 1024px;
    min-height: 540px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 105px 20px 0 20px;
    position: relative;
}
/* FIM DO TESTIMONIAS */
/* ABOUT */
.about-hero{
    width: 100%;
    min-height: 540px;
    background-image: url('../IMG/TESTIMONIALS-BG.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.about-hero-container{
    max-width: 1024px;
    min-height: 540px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 105px 20px 0 20px;
    position: relative;
}
/* FIM DO ABOUT */
/* CONTACT */
.contact-hero{
    width: 100%;
    min-height: 540px;
    background-image: url('../IMG/CONTACT-BG-HERO.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.contact-hero-container{
    max-width: 1024px;
    min-height: 540px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 105px 20px 0 20px;
    position: relative;
}
/* FIM DO CONTACT */
/* FOOTER */
.footer{
    width: 100%;
    min-height: 250px;
    background-color: var(--grey-color-2);
}
.ft-contensor{
    max-width: 1024px;
    min-height: 150px;
    display: flex;
    align-items: flex-start;
    padding: 50px 20px;
    margin: 0 auto;
}
.ft-contensor-esq{
    width: 33.33%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.ft-contensor-esq-title{
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.ft-contensor-esq-title::after{
    content:'';
    width: 50%;
    height: 3px;
    background-color: white;
    position: absolute;
    left: 0;
    bottom: 0;
}
.ft-contensor-esq-title img{
    margin-right: 10px;
}
.ft-contensor-esq-title h3{
    color: white;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
}
.ft-contensor-esq-menu{
    list-style: none;
}
.ft-contensor-esq-menu-link{
    margin-bottom: 5px;
}
.ft-contensor-esq-menu-link a{
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: opacity .5s ease;
}
.ft-contensor-esq-menu-link a:hover{
    opacity: .5;
}
.ft-contensor-centro{
    width: 33.33%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ft-contensor-centro-title{
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.ft-contensor-centro-title::after{
    content:'';
    width: 50%;
    height: 3px;
    background-color: white;
    position: absolute;
    left: calc(50% - 25%);
    bottom: 0;
}
.ft-contensor-centro-title img{
    margin-right: 10px;
}
.ft-contensor-centro-title h3{
    color: white;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
}
.ft-contensor-centro-mail{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.fi-cnsuxl-dot-mail{
    color: white;
    font-size: 14px;
    margin-right: 5px;
}
.ft-contensor-centro-mail h3{
    font-size: 18px;
    font-weight: 400;
    color: white;
}
.ft-contensor-centro-phone{
    display: flex;
    flex-direction:column;
    align-items: center;
    margin-bottom: 20px;
}
.fi-cnsrxl-phone-solid{
    color: white;
    font-size: 14px;
    margin-right: 5px;
}
.ft-contensor-centro-phone-title{
    font-family:'Exo';
    font-size:16px;
    font-weight:400;
    color:#ffffff;
    text-transform:uppercase;
}
.ft-contensor-centro-phone-icon{
    display:flex;
}
.ft-contensor-centro-phone h3{
    font-size: 18px;
    font-weight: 400;
    color: white;   
}
.ft-contensor-centro-address{
    display: flex;
    align-items: center; 
}
.fi-cnsuxl-map-marker-solid{
    color: white;
    font-size: 14px;
    margin-right: 5px;
}
.ft-contensor-centro-address h3{
    font-size: 18px;
    font-weight: 400;
    color: white;   
}
.ft-contensor-dir{
    width: 33.33%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.ft-contensor-dir-title{
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.ft-contensor-dir-title::after{
    content:'';
    width: 50%;
    height: 3px;
    background-color: white;
    position: absolute;
    right: 0;
    bottom: 0;
}
.ft-contensor-dir-title img{
    margin-right: 10px;
}
.ft-contensor-dir-title h3{
    color: white;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;    
}
.ft-contensor-dir a{
    margin-bottom: 20px;
}
@media (max-width: 768px){
    .footer{
        display: none;
    }
}
/* END FOOTER */
/* FOOTER RIGHTS */
.footer-rights{
    width: 100%;
    min-height: 50px;
    border-top: 1px solid white;
    background-color: black;
}
.footer-rights-contensor{
    max-width: 1024px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 5px 20px;
}
.footer-rights-contensor p{
    color: white;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    margin-right: 20px;
    text-align: center;
}
.footer-rights-contensor p a{
    color: white;
    text-decoration: none;
    transition: color .5s ease-in;
}
.footer-rights-contensor p a:hover{
    color: var(--red-color);
}
.footer-rights-contensor-midias a{
    opacity: 1;
    transition: opacity .3s ease-in;
}
.footer-rights-contensor-midias a:hover{
    opacity: .5;
}
@media (max-width: 963px){
    .footer-rights-contensor{
        flex-direction: column;
    }
    .footer-rights-contensor p{
        margin-right: 0;
        margin-bottom: 10px;
    }
}
/* END FOOTER RIGHTS */
/* UP TOP */
.uptop{
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: show ease-in 20s;
}
@keyframes show{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
.uptop a{
    text-decoration: none;
    transition: opacity .3s ease-in;
}
.uptop a:hover{
    opacity: .5;
}
.fi-cnsuxl-chevron-solid{
    color: white;
}
/* END UP TOP */</pre></body></html>