/* overlays */

#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/b1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(50%);
    z-index: -1;
}

#background-overlay-empresa {
    height: 100%;
    background-color: green;
    border-radius: 20px;
    opacity: 50%;
    z-index: 0;
}

#background-overlay-servico {
    padding: 0;
    background-image: url('../img/line.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: absolute;
    z-index: 0;
}

/* Seção sobre nos */

#bar {
    width: 20px;
    height: 16vh;
    background-color: green;
}

#bem-vindo {
    color: white;
    /* padding: 150px; */
    display: flex;
    gap: 10px;
}

#conteudo-sobre-empresa {
    border-top: 10px solid green;
    background-color: white;
    height: min-content;
}

#titulo-diferente {
    text-transform: uppercase;
    color: green;
    border-bottom: 5px solid green;
}

#titulo-acima-empresa {
    font-size: medium;
}

#img-sobre-empresa {
    padding: 0;
    background-image: url('../img/i1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

/* Seção Alguns Serviços */

#conteudo-alguns-servicos {
    background-color: green;
    position: relative;
    padding: 0;
    /* z-index: -1; */
}

.icon-servico{
    font-size: 5rem;
    color: green;
}


/* Estilo para as setas de navegação */

.owl-carousel {
    cursor: grab;
}

.owl-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.owl-prev,
.owl-next {

    span {
        font-size: 25px;
    }

    /* Garante que as setas fiquem visíveis */
}

/* Seção Principios */

#conteudo-principios {
    background-color: white;
}

#img-principios {
    padding: 0;
    background-image: url('../img/i2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

/* Seção Steps */

#conteudo-steps {
    background-color: white;
    padding: 0;
}

#progress {
    position: relative;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    height: max-content;

    p {
        width: 175px;
        text-align: center;
    }
}

.line {
    position: absolute;
    width: 90%;
    height: 5px;
    opacity: 100%;
    background-color: green;
    border: none;
    top: 25%;
    left: 5%;
    z-index: 0;
}

.circle {
    width: 175px;
    height: 175px;
    border-radius: 50%;
    background-color: green;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;

    h1 {
        z-index: 1;
    }

    img {
        z-index: 1;
    }
}


@media (max-width: 992px) {
    .line {
        display: none;
    }

    #progress {
        display: block;
    }

    .cont-circle {
        margin: auto;
        width: max-content;
    }
}

#btn-contato {
    background-color: white;
    border: 2px solid green;
    color: green;
    transition: 0.3s;
}

#btn-contato:hover {
    background-color: green;
    border: 2px solid green;
    color: white;
}

/* Alguns contatos */


#conteudo-alguns-contatos {
    background-color: rgb(70, 70, 70);
}

#texto {
    color: white;
}

#whatsapp {
    color: white;
}

#email {
    color: white;
}

/* Formulário Contato */

#refreshCaptcha {
    background-color: green;
    color: white;

    padding: 1px 8px;
    font-size: 20px;
}

@media (max-width: 568px) {
    #captcha {
        justify-content: center;
    }
}