header {
    width: 100%;
    position: absolute;
    z-index: 99;
}

#menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

#menu>nav a {
    text-decoration: none;
    color: black;
    padding: 0 50px;
    font-weight: 500;

}

#menu>nav i {
    font-weight: 600 !important;
    font-size: 17px;
    transition: all 100ms ease-in-out;
}

#menu>nav i:hover {
    color: #25d366;
    transform: scale(1.25);
}
/* Estilizando a estrutura do dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Escondendo o menu inicialmente */
.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 150px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

/* Estilizando os itens do dropdown */
.dropdown-menu li {
    border-bottom: 1px solid #ddd;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: block;
    padding: 5px;
    color: black;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: #f0f0f0;
}

/* Exibir o dropdown quando passar o mouse */
.dropdown:hover .dropdown-menu {
    display: block;
}


.banner-principal {
    width: 100%;
    height: 95vh;
    position: relative;
}

.banner-principal video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Para ajustar o vídeo ao tamanho da div */
}

.texto-banner {
    display: flex;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    text-align: center;
    line-height: 35px;
    align-items: center;
    flex-direction: column;
    justify-content: center;


    p {
        color: black;
        font-size: 27px;
        font-weight: 600;

    }
}

.texto-banner h1 {

    font-size: 105px;
    color: black;
}


.wave-banner {
    position: absolute;
    bottom: -6px;
    width: 100%;

    img {
        width: 100%;
    }
}

.quem-somos {
    justify-content: space-between;
    align-items: center;

    img {
        border-radius: 10px;
    }
}

.texto-quem-somos {
    position: relative;
    line-height: 30px;
    width: 40%;
}

.quem-somos:hover img {
    transition: all 500ms ease-in;
    box-shadow: -22px -22px 0px 0px rgba(33, 91, 158, 1);
    border-radius: 10px;
}

.line-azul::before {
    content: '';
    position: absolute;
    width: 0px;
    height: 2px;
    background-color: #215b9e;
    top: -10px;
}

.quem-somos:hover ::before {
    width: 200px;
    transition: all 500ms ease-in;
}

.servicos {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;

}

.titulo-servicos {
    text-align: justify;
    margin-bottom: 5%;
    width: 45%;
    padding-left: 2%;
}

.titulo-servicos-100{
    text-align: center;
    margin-bottom: 5%;
    width: 100%;
}

.galery-and-txt {
    background-color: var(--primary-color);
    color: white;
    .container{
        margin: 0 auto; 
    }
}

.btn-orcamento-txt {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 0px;

    i{
        margin: 0 10px;
    }
}

.btn-orcamento-txt a {
    font-weight: 400;
    font-size: 18px;
    font-style: none;
    text-decoration: none;
    color: white;

}

.btn-orcamento-txt:hover {
    a{
        color: white;
        transform: translate(3px, 0px);
        transition: all 0.5s;
    }
    i{
        
        transform: translate(5px, 0px)   scaleX(1.3);
        transition: all 0.5s;
    }


}


.texto-redes-de-protecao {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    width: 80%;
    border-radius: 15px;

}

.gallery img {
    border-radius: 15px;
    height: 300px;
    width: 100px;
    object-fit: cover;
}

.galery-and-text {
    display: flex;
    flex-direction: column;
    width: 30%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    h3{
        padding: 15px 0;
    }

}

.list-servicos{
    display: flex;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 5%;
}

.servicos button {
    border: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    padding: 25px 0;
    background-color: white;
}

#contatos {
    background-color: var(--primary-color);
    width: 100%;

}

.texto-contatos {
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 5%;
    text-align: center;

}

.cards-contatos {
    align-items: center;
    gap: 30px;
}

.icon-contatos {
    background-color: white;
    height: 70px;
    width: 70px;
    justify-content: center;
    align-items: center;
    border-radius: 40px;

    i {
        font-size: 45px;
        color: var(--primary-color);
    }
}

.dados {
    p {
        color: white;
        font-size: 12px;
        margin: 3px 0;
    }

    a {
        color: white;
        text-decoration: none;
    }

    a:hover {
        color: white;
    }
}

.contatos-dados {
    justify-content: space-around;
}

#orcamento {
    width: 100%;
    text-align: center;
    color: white;
    margin-top: 5%;

    h2 {
        text-align: center;
    }
}

form {
    margin-top: 35px;
}

.formulario input {
    border-radius: 40px;
    background-color: #4e9ffcc0;
    border: 1px solid #0c4586;
    height: 40px;
    width: 400px;
    color: white;
    font-size: 16px;
    padding-left: 15px;
}

.formulario textarea {
    border-radius: 20px;
    height: 250px;
    width: 400px;
    background-color: #4e9ffcc0;
    border: 1px solid #0c4586;
    color: white;
    font-size: 16px;
    padding-left: 15px;
}

.formulario input::placeholder {
    color: white;
    font-weight: 400;
    font-family: "Poppins";
    padding: 0 15px;
}

.formulario textarea::placeholder {
    color: white;
    font-weight: 400;
    font-family: "Poppins";
    padding: 10px 15px;
}

form [type="submit"] {
    border: 1px solid white;
    color: white;
    font-weight: 500;
    background-color: var(--primary-color);
    height: 40px;
    width: 150px;

    border-radius: 40px;
    margin: 25px 0;
    cursor: pointer;
}

form [type="submit"]:hover {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid #3288eb;
}


.depoimentos {
    width: 100%;
    text-align: center;
    margin: 5% 0;

}

.card-depoimentos {
    background-color: #FAF9F6;
    /*    border: .5px solid gray; */
    width: 400px;
    height: 300px;
    position: relative;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.perfil {
    position: absolute;
    height: 60px;
    width: 200px;
    border-radius: 40px;
    justify-content: space-between;
    align-items: center;
    padding-right: 15px;
    background-color: white;
    bottom: -25px;



}

.perfil p:first-child {
    font-weight: 600;
}

.perfil p:nth-child(2) {
    font-weight: 700;
    font-size: 12px;
    color: gray;
}

.estrelas {
    position: absolute;

    top: 0;
}

.cards-dep {
    justify-content: space-around;
}

.titulo-depoimentos {
    margin: 35px 0;
}

footer {
    border-top: 2px solid white;
    background-color: var(--primary-color);
}

.footer {
    width: 100%;
    text-align: center;

    p {
        color: white;
    }
}

.icone-whatsapp {
    position: fixed;
    bottom: 10px;
    right: 25px;
}

.menu-mobile {
    display: none;
}

.gallery-f {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    img{
        object-fit: cover;
    }
}
.gallery-f a {
    display: block;
    width: 30%;
}
.hidden {
    display: none !important;
}
.btn-container {
    text-align: center;
    margin-top: 20px;
}
.btn-g {
    padding: 10px 20px;
    background-color: #007bff;
font-weight: 200;
    border: none;
    cursor: pointer;

}

/* Personalizado */
#menu-personalizado{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    nav a{
        padding: 0 15px;
        font-style: none;
        text-decoration: none;

    }
}

.header-personalizado{
    position:inherit;
}

@media screen and (max-width: 786px) {

    #menu-personalizado{
        display: none;
    }
    .menu-mobile {
        display: block;
    }

    #menu {
        display: none;
    }

    .texto-banner h1 {
        font-size: 65px;
        color: black;
    }

    .texto-banner {
        p {
            color: black;
            font-size: 17px;
            font-weight: 600;
        }
    }

    .bg-body-tertiary {
        --bs-bg-opacity: 1;
        background-color: rgb(255 255 255 / 85%) !important;
    }

    .btn-wpp-menu {
        i {
            font-size: 25px;
        }
    }

    .texto-quem-somos {
        position: relative;
        line-height: 30px;
        width: 100%;
    }

    .gallery img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }

    .servicos button {
        background: white;
        border: none;
        color: var(--primary-color);
        font-weight: 500;
        font-size: 20px;
        cursor: pointer;
        padding: 25px 0;
    }

    .card-depoimentos {
        margin-bottom: 85px;
        background-color: #FAF9F6;

        width: 400px;
        height: 310px;
        position: relative;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .contatos-dados {
        gap: 35px;
        justify-content: flex-start;
    }



    form [type="submit"] {
        border: 1px solid white;
        color: white;
        font-weight: 500;
        background-color: var(--primary-color);
        height: 40px;
        width: 150px;
        padding: 0;
        border-radius: 40px;
        margin: 25px 0;
        cursor: pointer;
    }

    .quem-somos {
        img {
            width: 100%;
            border-radius: 10px;
        }
    }

    .galery-and-text {
        /* gap: 50px; */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        margin: 15% 0;
    }
    .galery-and-txt {
        width: 100%;
    }

    .galery-and-txt {
        container {
            width: 100%;
        }
    }
    .slick-dotted.slick-slider {
        margin-bottom: 30px;
        width: 100%;
    }

    .texto-redes-de-protecao {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    .titulo-servicos{
        text-align: center;
    margin-bottom: 5%;
    width: 100%;
    padding: 2% 5%;
    }
    .video{
        width: 100%;
    }
}