@import url('navbar.css');
@import url('bannerInicial.css');
@import url('garantia.css');
@import url('sobre.css');
@import url('criador.css');
@import url('chamado.css');
@import url('preco.css');
@import url('faq.css');
@import url('footer.css');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/* Fontes */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --fonte-SegoeUi: "Inter", sans-serif;
    --fonte-Poppins: "Poppins", sans-serif;
    --fonte-BebasNeue: "Bebas Neue", sans-serif;
    --fonte-NunitoSans: "Nunito Sans", sans-serif;
    --fonte-Montserrat: "Montserrat", sans-serif;
    --fonte-Roboto: "Roboto", sans-serif;
}

.txt-vermelho{
    color: #AF0600;
}
.txt-preto{
    color: black;
}

body{
    background-color: #161616;
    color: white;
}

.container-btn-wpp{
    width: 70px;
    height: 70px;
}
.container-btn-wpp a{
    text-decoration: none;
    
}

.pulse2{
    color: #8f0808;
    animation: pulse2 2s infinite;
    transition: all 0.3s ease 0s;
    transition: transform 0.3s ease-in-out;
    font-size: 3rem;
}

@keyframes pulse2{
    0%{
        color: #8f0808;
    }
    70%{
        color: white;
        
    }
    100%{
        color: #8f0808;
    }
    
}

.pulse{
    border-radius: 16px;
    position: fixed;
    bottom: 5%;
    left: 3%;
    border-radius: 50%;
    background-color: transparent;
    box-shadow: 0 0 0 0 rgba(226, 41, 41, 0);
    animation: pulse 2s infinite;
    transition: all 0.3s ease 0s;
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}
.pulse:hover{
    color: white;
    transform: scale(1.2);
}

@keyframes pulse{
    0%{
        box-shadow: 0 0 0 0 rgba(136, 26, 26, 0.8);
    }
    70%{
        color: white;
        box-shadow: 0 0 0 17px rgba(92, 168, 44, 0);
    }
    100%{
        box-shadow: rgba(92, 168, 44, 0);
    }
    
}

.linha-footer{
    height: 1px;
    width: 80%;
    background: linear-gradient(to right, transparent, rgba(136, 26, 26, 0.8), transparent);
}