:root {
    --primary: #37b4e0;
    --bg2: #eef1f2;
    --cta: #49A078;
    --dark: #030406;
}

* {
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

p {
    font-size: 1.1rem;
}

a:hover {
    text-decoration: none;
}

.name-input {
    display: none;
    visibility: hidden;
}

#cuidamos,
#depoimentos,
#produto-principal,
#parceria,
#chamadatop .container-bg,
#chamada,
#depoimentos,
#sobre,
#servicos {
    padding: 40px 0;
}

h2 {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: var(--primary);
}

button:focus {
    outline: none;
}

a.btn-cta,
button.btn-cta {
    border: none;
    background-color: var(--cta);
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 20px 30px;
    font-size: 1.3rem;
    transition: all .3s;
    border-radius: 50px;
    border: 4px solid #fff;
}

a.btn-cta:hover,
button.btn-cta:hover {
    transform: scale(1.03);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


/* ENVIANDO FORM */
#enviando-form {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, .6);
    width: 100%;
    height: 100vh;
    display: none;
}

#enviando-form.active {
    display: block;
}

#enviando-form .wrapper {
    width: 200px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#enviando-form .circle {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    background-color: #fff;
    left: 15%;
    transform-origin: 50%;
    animation: circle .5s alternate infinite ease;
}

@keyframes circle {
    0% {
        top: 60px;
        height: 5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }

    40% {
        height: 20px;
        border-radius: 50%;
        transform: scaleX(1);
    }

    100% {
        top: 0%;
    }
}

#enviando-form .circle:nth-child(2) {
    left: 45%;
    background-color: var(--primary);
    animation-delay: .2s;
}

#enviando-form .circle:nth-child(3) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
    background-color: var(--dark);
}

#enviando-form .shadow {
    width: 20px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    top: 62px;
    transform-origin: 50%;
    z-index: -1;
    left: 15%;
    filter: blur(1px);
    animation: shadow .5s alternate infinite ease;
}

@keyframes shadow {
    0% {
        transform: scaleX(1.5);
    }

    40% {
        transform: scaleX(1);
        opacity: .7;
    }

    100% {
        transform: scaleX(.2);
        opacity: .4;
    }
}

#enviando-form .shadow:nth-child(4) {
    left: 45%;
    animation-delay: .2s
}

#enviando-form .shadow:nth-child(5) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
}

#enviando-form .wrapper span {
    position: absolute;
    top: 75px;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    width: 400px;
    left: -50%;
    text-align: center;
}

@media (max-width: 576px) {
    #enviando-form .wrapper span {
        width: 280px;
        left: -20%;
    }

}


/* HEADER */

/* HEADER */
header {
    position: relative;
}

header .area-form {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header .area-form form {
    max-width: 350px;
    background-color: #fff;
    padding: 10px;
    border-radius: 15px;
    margin-right: 80px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    text-align: center;
}

header .area-form form img {
    width: 100px;
    display: inline-block;
    margin-bottom: 10px;
}

header .area-form form button {
    background-color: #38E54D;
    color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    text-transform: uppercase;
    width: 100%;
    border: none;
    font-weight: bold;
}

@media (max-width: 992px) {
    header .area-form {
        position: initial;
    }

    header .area-form form {
        margin-right: 0;
        max-width: unset;
        width: 100%;
    }
}


@keyframes typing {
    from {
        width: 0
    }
}

@keyframes blink {
    50% {
        border-color: transparent
    }
}



#carouselHeader img {
    width: 100%;
    object-fit: cover;
}

#barra-promo .cta a {
    display: inline-block;
    background-color: var(--cta);
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    padding: 20px 30px;
    font-size: 1.3rem;
    transition: all .3s;
    border-radius: 50px;
    border: 4px solid #fff;
}

#barra-promo .cta a:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.03);
}

/* AREA CONTADOR */
#chamadatop {
    background-color: var(--bg2);
    color: #000;
}

#chamadatop .container-bg {
    background-image: url(/assets/images/waves/1.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

#chamadatop img.logo {
    width: 250px;
    display: inline-block;
    margin-bottom: 20px;
}

#chamadatop h2 {
    display: inline-block;
    border: 2px solid var(--primary);
    padding: 10px;
}

#chamadatop .textos {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#chamadatop span.destaque {
    font-weight: bold;
}

#chamadatop form {
    max-width: 400px;
    margin-left: auto;
    background: rgb(55, 180, 224);
    background: linear-gradient(152deg, rgba(55, 180, 224, 1) 28%, rgba(255, 255, 255, 1) 100%);
    padding: 20px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

@media (max-width: 992px) {
    #chamadatop form {
        margin: 0 auto;
        margin-top: 40px;
    }

    #chamadatop .container-bg {
        background-image: url(/assets/images/waves/3.svg);
        background-position: bottom;
        background-repeat: no-repeat;
        background-size: contain;
    }
}

#chamadatop form button {
    display: inline-block;
    width: 100%;
    border-radius: 50px;
    border: 4px solid #fff;
    color: #fff;
    background-color: var(--cta);
    transition: all .3s;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px;
}

#chamadatop form button:hover {
    scale: 1.03;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* PARCERIA */
#parceria {
    background-color: #fff;
}

#parceria .container {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#parceria .cta a {
    display: inline-block;
    background-color: var(--cta);
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    padding: 20px 30px;
    font-size: 1.3rem;
    transition: all .3s;
    border-radius: 50px;
    border: 4px solid #fff;
}

#parceria .cta a:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.03);
}

#parceria .textos {
    background-color: #f7f7f7;
    padding: 20px;
}

#parceria img.comple {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#parceria img.logo {
    width: 200px;
}

@media (max-width: 992px) {
    #parceria .conteudo {
        flex-wrap: wrap-reverse;
    }

}

/* SERVIÇOS */
#servicos {
    background-image: url(/assets/images/waves/3.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

#servicos p {
    font-size: 1rem;
}

#servicos .area-card-servico {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#servicos .area-card-servico .card-servico {
    width: 30%;
    margin: 10px;
    transition: all .3s;
}

#servicos .area-card-servico .card-servico.mt2 {
    margin-top: 50px;
}

#servicos .area-card-servico .card-servico.mt4 {
    margin-top: 100px;
}

#servicos .area-card-servico .card-servico .image {
    height: 200px;
}

#servicos .area-card-servico .card-servico .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#servicos .area-card-servico .card-servico .content {
    padding: 20px;
    transition: all .3s;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;
}

#servicos .area-card-servico .card-servico .content h3 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
}

#servicos .area-card-servico .card-servico:hover {
    scale: 1.03;
}

@media (max-width: 768px) {

    #servicos .area-card-servico .card-servico {
        width: 45%;
    }

    #servicos .area-card-servico .card-servico .content {
        height: 130px;
    }

    #servicos .area-card-servico .card-servico.mt2,
    #servicos .area-card-servico .card-servico.mt4 {
        margin-top: 0px;
    }

}


@media (max-width: 576px) {

    #servicos .area-card-servico .card-servico {
        width: 100%;
    }

    #servicos .area-card-servico .card-servico .content {
        height: unset;
    }
}

/* PRODUTOS PRINCIPAIS */
#produto-principal {
    background-color: var(--primary);
    color: #fff;
    position: relative;
}

#produto-principal h2 {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px;
    display: inline-block;
    position: relative;
}

#produto-principal .lado {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#produto-principal .lado h4 {
    border: none;
    transform: rotate(270deg);
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    margin-right: -200px;
    font-size: 3rem;
    color: var(--primary);
    background-color: var(--primary);
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

#carouselProdutoPrincipal img {
    height: 500px;
    display: inline-block;
    max-width: 75%;
    margin: 0 auto;
    object-fit: cover;
}

#produto-principal .carousel-indicators {
    position: initial;
    margin-top: 20px;
    margin-bottom: 0;
}

#produto-principal .carousel-indicators li {
    width: 10px;
    height: 10px;
    border: 4px solid #fff;
    background-color: var(--primary);
    transition: all .5s;
}

#produto-principal .carousel-indicators li.active {
    border-radius: 50%;
}

@media (max-width: 992px) {
    #produto-principal .lado h4 {
        margin-right: -150px;
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    #produto-principal .lado {
        display: none;
    }

    #carouselProdutoPrincipal img {
        max-width: 100%;
    }

}

/* SOBRE */
#sobre {
    color: #000;
}


#sobre .g-negocio {
    width: 250px;
    margin-bottom: 20px;
}

#sobre .stars {
    color: #FFDE00;
    filter: drop-shadow(1px 0px 0px #F57328);
}

#sobre p {
    color: #000;
}

#sobre hr {
    border-color: #000;
}

#sobre .card-contador {
    text-align: center;
    color: #000;
}

#sobre .card-contador .numero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

#sobre .card-contador .numero i {
    background-color: var(--primary);
    color: #fff;
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 30px;
}

#sobre .card-contador .numero .content-main {
    width: 100%;
}

/* CUIDAMOS */
#cuidamos {}


#cuidamos .container-before {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

#cuidamos .container-before .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
}

#cuidamos .container-before .background-img {
    background-image: url(/assets/images/servicos/servico-de-limpeza-e-revitalizacao-do-material/4.jpeg);
}

#cuidamos .container-before .foreground-img {
    background-image: url(/assets/images/servicos/servico-de-limpeza-e-revitalizacao-do-material/1.jpeg);
    width: 50%;
}

#cuidamos .container-before .slider {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: rgba(242, 242, 242, .1);
    outline: none;
    margin: 0;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cuidamos .container-before .slider:hover {
    background: rgba(242, 242, 242, .1);
}

#cuidamos .container-before .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 6px;
    height: 400px;
    background: white;
    cursor: pointer;
}

#cuidamos .container-before .slider::-moz-range-thumb {
    width: 6px;
    height: 600px;
    background: white;
    cursor: pointer;
}

#cuidamos .container-before .slider-button {
    pointer-events: none;
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    left: calc(50% - 18px);
    top: calc(50% - 18px);
    display: flex;
    justify-content: center;
    align-items: center;
}

#cuidamos .container-before .slider-button:after {
    content: '';
    padding: 3px;
    display: inline-block;
    border: solid #5d5d5d;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
}

#cuidamos .container-before .slider-button:before {
    content: '';
    padding: 3px;
    display: inline-block;
    border: solid #5d5d5d;
    border-width: 0 2px 2px 0;
    transform: rotate(135deg);
}

@media (max-width: 992px) {

    #cuidamos .content {
        margin-bottom: 30px;
    }

    #cuidamos .container-before {
        min-height: 300px;
    }

    #cuidamos .container-before .slider::-webkit-slider-thumb {
        height: 300px;
    }
}

/* DEPOIMENTOS */
#depoimentos {
    background-color: #000;
}

#depoimentos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#depoimentos h2 {
    display: inline-block;
    background-color: #fff;
    padding: 10px;
}

#depoimentos .card-depoimento {
    width: 100%;
    margin: 10px;
    height: 400px !important;
    position: relative;
    cursor: pointer;
    transition: all .3s;
}

#depoimentos .card-depoimento img {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    left: 0;
    z-index: 5;
}

#depoimentos .card-depoimento .content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3));
    z-index: 10;
}

#depoimentos .card-depoimento .content h3 {
    z-index: 10;
    width: 100%;
    color: #fff;
    font-weight: bold;
}

#depoimentos .card-depoimento .content .ver-depoimento {
    opacity: 0;
    position: absolute;
    width: 0%;
    height: 0%;
    z-index: 15;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transition: all .3s;
}

#depoimentos .card-depoimento .content .ver-depoimento a {
    background-color: var(--cta);
    color: #fff;
    padding: 10px;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1rem;
    border: 2px solid #fff;
}

#depoimentos .card-depoimento:hover>.content .ver-depoimento {
    opacity: 1;
    width: 75%;
    height: 75%;
}

@media (max-width: 992px) {
    #depoimentos .card-depoimento {
        width: 30%;
    }
}

@media (max-width: 768px) {
    #depoimentos .card-depoimento {
        width: 100%;
    }
}


#modalDepoimento video {
    width: 100%;
    height: 400px;
}

/* CHAMADA */

#chamada form {

    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#chamada form small {
    color: #fff;
    display: block;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1rem;
}

#chamada form .area {
    width: 100%;
}

#chamada form h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

#chamada form .area input {
    padding: 25px 15px;
}


#chamada form .area button {
    border: none;
    background-color: var(--cta);
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.3rem;
    text-align: center;
    border-radius: 50px;
    border: 4px solid #fff;
    width: 100%;
    padding: 10px 20px;
    transition: all .3s;
}


#chamada form .area button:hover {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    #chamada {
        text-align: center;
    }
}

/* RODAPÉ */

footer {
    padding-top: 30px;
    background-color: var(--dark);
    color: #fff;
}

footer img {
    width: 150px;
    margin: 15px;
}

footer .logo {
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li a,
footer ul li a:hover {
    color: #fff;
}

footer hr {
    border-color: #fff;
}

footer .desen {
    text-align: center;
}

footer .desen a {
    color: var(--cta);
    font-weight: bold;
}

/* WHATSAPP */

#modalWhatsapp button.cta {
    color: #fff;
    background-color: var(--cta);
    font-size: 1rem;
    font-weight: 500;
    padding: 20px 40px;
    transition: all .5s;
    border: none;
    outline: none;
    width: 100%;
    transition: all .3s;
    font-weight: bold;
    text-transform: uppercase;
}

#modalWhatsapp button.cta:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    z-index: 90;
    position: fixed;
    bottom: 20px;
    right: 40px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    cursor: pointer;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

@media (max-width: 465px) {

    .btn-whatsapp-pulse {
        bottom: 40px;
    }
}

.btn-phone-pulse {
    background: #4e4f4e;
    color: white;
    z-index: 90;
    position: fixed;
    bottom: 120px;
    right: 40px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: phone-pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    cursor: pointer;
}

@keyframes phone-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(78, 79, 78, .8);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}



/* AREA CONTADOR */
#cronometro {
    background-color: var(--dark);
    padding: 40px 0;
}

@keyframes pulse-h2 {
    0% {
        scale: 1;
    }

    100% {
        scale: 1.05;
    }
}

#cronometro h2.baratos {
    background-color: #fff;
    padding: 20px;
    display: inline-block;
    animation: infinite pulse-h2 alternate 1s;
}

#cronometro ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
}

#cronometro ul li {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 130px;
}

#cronometro ul li i,
#cronometro ul li img {
    color: #fff;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

#cronometro ul li img {
    padding: 5px;
}


#cronometro ul li span {
    width: 100%;
    font-size: 1rem;
}

@media (max-width: 576px) {
    #cronometro ul {
        flex-wrap: wrap;
    }

    #cronometro ul li {
        width: 45%;
        margin-bottom: 20px;
    }
}

#cronometro p {
    color: #fff;
}

#cronometro .area-card-contador {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    color: #fff;
    border-radius: 5px;
}

#cronometro .area-card-contador .card-contador {
    text-align: center;
    margin: 0 20px;
}

#cronometro .area-card-contador .card-contador h3 {
    font-size: 3rem;

}

@media (max-width: 576px) {
    #cronometro .area-card-contador .card-contador h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 375px) {
    #cronometro .area-card-contador .card-contador {
        margin: 0 10px;
    }
}

.base-footer {
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.base-footer .carousel-control-next,
.base-footer .carousel-control-prev {
    position: relative;
}