@charset "UTF-8";

:root{
    --cor01: #0A7A33;
    --cor02: #5FFB98;
    --cor03: #13FA66;
    --cor04: #2F7A4A;
    --cor05: #10C753;
}

*{
    font-family: Arial, Helvetica, sans-serif;
}

.header-fixed{
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

p.card-text{
    text-align: justify;
}

nav{
    background-color: var(--cor04);
}

h1{
    text-shadow: 1px, 2px, 1px, gray;
}

#telefone{
    text-decoration: none;
    color: white;
    text-align: center;
}

#balaoTelefone{ 
    background-color: #13FA66;
    border-radius: 8px;
    width: 160px;
    text-align: center;
}

#balaoTelefone:hover{
    box-shadow: 1px 1px 7px 4px rgba(0, 0, 0, 0.462);
    transition: 0.4s;
    transform: translateX(3px);
}

.section-config{
    margin-top: 89px;
    background-color: var(--cor05);
}

.margin-left-20{
    margin-left: 20px;
}

.margin-left-5{
    margin-left: 5px;
}

.margin-right-20{
    margin-right: 20px;
}

.align-div-center{
    display: flex;
    justify-content: center;
}

.space-around{
    display: flex;
    justify-content: space-around;
}

.align-div-beetwen{
    display: flex;
    justify-content: space-between;
}

.margin-top-20{
    margin-top: 20px;
}

.footer-config{
    height: 100px;
    width: 100%;
}

.img-carousel-config{
    margin: auto;
}

.carousel-align{
    margin-top: 20px;
    z-index: 0;
}

.btn-wpp{
    position:fixed;
    bottom:20px;
    right:20px;
}

.center-div{
    margin: 0 auto !important;
}

hr{
    box-shadow: 5px 1px 5px black;
}

.shadow-div{
    box-shadow: 1px 1px 10px 1px #393737;
}

.balao {
    font-family: 'open sans';
    font-size: .85em;
    margin: 0 auto; 
    background: #000;
    border-radius: 0 30px 30px 0;
    width: 200px;
    height: 20px;
    color: #fff;
    text-align: center;
    background-color: #35b14e;
  
    /* Position relative para a seta não exceder os limites do balão, já que vamos usar position absolute nele */
    position: relative;
    margin-bottom: 1em;
    animation: animate 
    2s linear infinite;
}

.balao:after{
    /* content necessário para a criação de um elemento vazio */
    content: "";
    width: 0; 
    height: 0;
    /* position: absolute para manipularmos a posição da seta */
    position: absolute;
    /* Right com valor negativo para ele ficar para fora do balão de dialogo */
    right: -3px;
    /* É aqui o truque com as bordas */
    /* 50px é a metade da altura do elemento, assim temos uma seta da mesma altura que nosso elemento */
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #35b14e; /* Defina 'right' e a seta apontará para a esquerda */
    /* Borda de fora do elemento */
    border-radius: 50%;
}

.fixed{
    position: fixed;
    bottom: 20px;
    right: 190px;
    width: 100px;
  }

/* Estilo scroll*/
body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: #CCCCCC;
}
body::-webkit-scrollbar-button {
    border: 1px #817e7e;
}
body::-webkit-scrollbar-track {
    background: #CCCCCC;
}
body::-webkit-scrollbar-track-piece {
    background: #CCCCCC;
}
body::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 5px;
}
body::-webkit-scrollbar-corner {
    background: #0e0d0d;
    border-radius: 5px;
}
.form-comment textarea::-webkit-resizer {
    border: 1px #100f0f;
}

/* Fonts */
.font-size-30{
    font-size: 30px !important;
}

/* Cores */
.color-white{
    color:white !important;
}

/* Keyframes */
@keyframes animate {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 0;
    }
}