@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --vermelho: #eb2024;
}


body,
html {
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

p {
    font-size: .9rem;
}

a:hover {
    text-decoration: none;
}

h2 {
    font-weight: 300;
    font-weight: bold;
    color: var(--azul);
}

.cta a {
    display: inline-block;
    color: #fff;
    border: 3px solid #fff;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 1.4rem;
    margin-top: 20px;
    transition: all .3s;
    font-weight: bold;
}

.cta a:hover {
    background-color: var(--vermelho);
    color: #fff;
    scale: 1.03;
}

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

@media (max-width: 768px) {
    h2 {
        font-size: 1.5rem;
    }
}

/* 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(--vermelho);
    animation-delay: .2s;
}

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

#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%;
    }

}

/* BARRA TOPO */
#barratopo {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;
}

#barratopo .top-all {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

#barratopo .logo {
    width: 150px;
}

#barratopo .leadfone {
    color: #000;
    display: inline-block;
    font-size: .9rem;
}
#barratopo .container{
    max-width: 95%;
}
#barrobottm {
    background-color: #000;
    padding: 0;
    color: #fff;
}

#barrobottm ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#barrobottm ul li {
    margin: 5px 10px;
}

#barrobottm ul li a {
    color: #fff;
    transition: all .3s;
}

#barrobottm ul li a:hover {
    font-weight: bold;
}

/* RODAPÉ */
footer {
    padding-top: 40px;
    background-color: #000;
    color: #fff;
}

footer img {
    width: 250px;
}

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

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

footer .desenvo,
footer .logo {
    text-align: center;
}

footer .desenvo a {
    font-weight: bold;
    color: var(--vermelho);
}


/* WHATSAPP */

#modalWhatsapp button.cta {
    color: #000;
    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;
    }
}

.obj-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#formulario-contato h2 {
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
}