 /* CSS Geral */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #d5d5d5;
}

/* Estilos para o cabeçalho */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: #343a40;
}

p {
    text-align: justify;
}

@font-face {
    font-family: "Titulo"; /* Nome que você vai usar no CSS */
    src: url("../fonts/OpenSauceOne-Bold.ttf") format("truetype"); /* Caminho da fonte */
    font-weight: normal;  /* Peso da fonte (padrão: normal) */
    font-style: normal;   /* Estilo da fonte (padrão: normal) */
}

@font-face {
    font-family: "Textos"; /* Nome que você vai usar no CSS */
    src: url("../fonts/Candara.ttf") format("truetype"); /* Caminho da fonte */
    font-weight: normal;  /* Peso da fonte (padrão: normal) */
    font-style: normal;   /* Estilo da fonte (padrão: normal) */
}


.titulo-section{
    font-family: Titulo;
    padding-bottom: 30px;
}

.textos{
    font-family: Textos;    
}

.back-cinza1 {    
    background-color: #e3e3e3;
    padding: 10px;
    padding-bottom: 30px;
    margin-bottom: 1px solid #000;
}

.back-cinza2 {   
    background-color: #ede8e8;
    padding: 10px;
    padding-bottom: 30px;
    margin-bottom: 1px solid #fff;
}

.back-cinza3 {
    
    background-color: #e3d7d7;
    padding: 10px;
    padding-bottom: 30px;
    margin-bottom: 1px solid #fff;
}

.sidebar {
    position: fixed;
    top: 100px;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #343a40;
    transition: 0.3s;
    padding-top: 60px;
}
.sidebar.open {
    left: 0;
}
.sidebar ul {
    list-style: none;
    padding: 0;
}
.sidebar ul li {
    padding: 20px;
    margin-left: 20px;
    text-align: letf;
}
.sidebar ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.sidebar ul li a:hover {
    color: #ffc107;   
}


/* Logo Desktop */
.desktop-logo {
    text-align: left;
    color: #ffc107;
    font-size: 24px;
}

/* Menu Desktop */
.desktop-menu {
    display: flex;
    justify-content: center;
    flex: 2;
}
.desktop-menu .nav-item {
    padding: 0 15px;
}
.desktop-menu .nav-link {
    color: #fff;
    text-decoration: none;
}

.desktop-menu .nav-link:hover {
    color: #ffc107;
    text-decoration: underline;
}

/* Logo Mobile */
.mobile-logo {
    display: none;
}

.saulo-cor{
    color: #a7a7a7 !important;
    font-size: 22px;
}

.saulo-cor2{
    color: #ebe9e9 !important;
    font-size: 13px;
}

.top20{
    margin-top: 20px;
}


.menu-btn {
    display: none;
    font-size: 30px;
    color: white;
    background: none;
    border: none;
}

.parallax-image1 {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-image: url('../img/quem-somos.jpg'); /* Imagem padrão para desktop */
}
.parallax-image2 {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-image: url('../img/nosso-escritorio.jpg'); /* Imagem padrão para desktop */
}

.parallax-image3 {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-image: url('../img/areas-atuacao.jpg'); /* Imagem padrão para desktop */
}


/* Responsividade */
@media (max-width: 768px) {
    .desktop-logo {
        display: none;
    }         

    .mobile-logo {
        display: block;
        text-align: center;
        width: 100%;
        padding: 10px 0;
        color: #ffc107;
        font-size: 24px;
    }

    .menu-btn {
        display: block;
    }

    .desktop-menu {
        display: none;
    }

    .parallax-image1 {
        background-image: url('../img/quem-somos-mobile.jpg'); /* Imagem para celular */
    }
    .parallax-image2 {
        background-image: url('../img/nosso-escritorio-mobile.jpg'); /* Imagem para celular */
    }
    .parallax-image3 {
        background-image: url('../img/areas-atuacao.jpg'); /* Imagem para celular */
    }

   
}

/* Define o parallax */
.parallax {
    /* Cria o efeito de movimento de fundo */
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    height: 300px; /* Ajuste conforme necessário */
}

.parallax-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

/* Para corrigir o problema no mobile onde o background-attachment: fixed não funciona bem */
@media (max-width: 767px) {
    .parallax {
        background-attachment: scroll; /* Desativa o parallax no mobile */
    }
}

 

.whatsapp-button {
    width: 200px; /* Ajuste o tamanho conforme necessário */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: zoomInOut 1.5s infinite alternate ease-in-out;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

.mt-300{
    margin-top: 300px;
}        

.marginLeft-10{
    margin-left: 10px;
}