@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');


* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #222;
}

p {
    font-family: "Lato", serif;
    font-weight:600;
    font-style: normal;
    text-align: justify;
    font-size: 16px;
}

.navbar {
    padding: 10     
    px;
}


.navbar-menu {
    display: flex;

    gap: 20px;
    width: 50%;
}

.collapse {
    margin-right: 150px;
    flex-direction: row-reverse;
}

.navbar-nav {
    gap: 20px;
}

.nav-item {
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

.nav-link {
    font-family:"Lato", serif;
    font-weight: bold;
    font-style: normal;
    color: #fff;
}

#sobre{
    margin-top: 50px;
}

.sobre-content{
    order: 1;
    width: 60%;
    padding: 20px;
}

.sobre-content h1 {
    color: #d4bc6a;
    font-family:"Merriweather", serif;
    font-weight: bold;
    font-style: normal;
    
}

.sobre-img{
    order: 2;
    width: 40%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
}

.sobre-img img {
    width: 400px;
}

.sobre-content{
    color: #fff;
}

.btn-whats{
    background-color: #d4bc6a;
    padding: 5px;
    color: #222;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
    font-size: 18px;
    font-family:"Merriweather", serif;
}

.btn-whats:hover{
    color: #fff;
}


.atuacoes{
    margin-top: 45px;

}

.atuacoes h2 {
    color: #222;
    font-family:"Merriweather", serif;
    font-weight: bold;
    font-style: normal;
    text-align: center;
}

.atuacoes button{
    color: #222;
    gap: 12px;
    display: flex;
    align-items: center;
}

.atuacoes span{
    color: #222;
    padding: 2px;
    font-weight: bold;
}


.atuacoes i {
    background-color: #3b3b3b;
    color: #d4bc6a;
    border-radius: 50%;
    padding: 15px;
}

.atuacoes a {
    background-color: #d4bc6a;
    padding: 5px;
    color: #222;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
    font-size: 18px;
    font-family:"Merriweather", serif;
    text-align: center;
}

.atuacoes a:hover {
    color: #fff;
}

.competencias{
    padding: 20px;
    margin-top: 55px;
    margin-bottom: 55px;
    border: 2px solid #d4bc6a;
    background-image: url(imgs/logo-sem-fundo-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.competencias h2{
    text-align: center;
    color: #fff;
    font-family: "Merriweather, serif";
}

.competencias .row {
    margin-top: 40px;
}


.image-section{

    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.competencias i {
    padding: 5px;
    border: 1px solid #d4bc6a;
    color: #d4bc6a;
    margin-right: 12px;
}

.competencias p {
    color: #fff;
    width: 300px;
    margin-top: 20px;
}

#contatos {
    padding: 20px;
    margin-top: 55px;
    margin-bottom: 55px;
}

#contatos h2{
    text-align: center;
    color: #fff;
    font-family: "Merriweather, serif";
}

#contatos i {
    color: #d4bc6a;
    font-size: 26px;
}

#contatos span {
    color: #fff;
    margin-left: 12px;
}

#contatos a {
    text-decoration: none;
}

footer {
    background-color: rgb(26, 26, 26);
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

footer p {
    color: #fff;
    text-align: center;
}

.whatsapp-button {
    position: fixed;
    bottom: 80px; /* Margem inferior */
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito ao passar o mouse */
.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.4);
}

/* Ícone do WhatsApp dentro do botão */
.whatsapp-button img {
    width: 35px; /* Tamanho do ícone */
    height: 35px;
}


@media (max-width: 912px) {
    /* Estilos para telas menores que 768px (tablets e celulares) */
    .sobre-content{
        width: 100%;
        order: 2;
    }

    .sobre-img{
        flex-direction: column;
        width: 100%;
        order: 1;

    }

    .btn-whats{
        align-self: center;
    }

    .atuacoes h2 {
        font-size: 20px;
    }

    footer{
        flex-direction: column;
        gap: 0px;
    }

    footer p {
        margin: 0;
    }

}