body {
    margin: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.whatsapp-icon {
    color: #009A44;
    font-size: 50px;
    position: fixed;
    bottom: 85px;
    right: 25px;
    z-index: 99999;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.nav-links button {
    color: white;
    background: none;
    border: none;
    margin: 0 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}

.client-area-button {
    background-color: #ff9000;
    border: none;
    border-radius: 25px;
    padding: 5px 15px;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    outline: none; */
}


.client-area-button .icon {
    margin-right: 8px;
    color: white; 
}

.transparent {
    background-color: transparent;
}

.scrolled {
    background-color: #000056;
}

.content {
    background: url('/pic/fundo_top.png') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.left-content {
    flex: 1;
    text-align: left;
}

.right-content {
    flex: 1;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


.right-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

@media (min-width: 1290px) {
    .right-content img {
        margin-right: 40px;
    }
}

.text-white {
    color: white;
    font-family: Arial, sans-serif;
    font-size: 50px;
}

.text-orange {
    color: #f4b62d;
    font-family: Arial, sans-serif;
    font-size: 50px;
}

.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001; 
}

.vertical-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: white; /* Fundo branco */
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    z-index: 1000;
}

.vertical-menu.show {
    display: flex;
}

.vertical-menu button {
    color: #551A8B; /* Letra roxa */
    background: none;
    border: none;
    padding: 10px 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}

@media (max-width: 1240px) {
    .nav-links {
        display: none;
    }

    .menu-icon {
        display: block;
        color: white;
        font-size: 30px;
    }

    .client-area-button {
        margin-right: 20px;
        margin-top: 10px;
        padding: 5px 10px;
        font-size: 14px;
    }

    .content {
        background: url('/pic/fundo_top1200.png') no-repeat center center;
        background-size: cover;
        height: auto;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .left-content {
        text-align: center;
        margin-top: 80px; /* Espaço de 40px acima do texto */
    }

    .right-content {
        text-align: center;
        align-items: center;
    }

    .right-content img {
        margin: 10px 0; /* Diminuir o espaçamento vertical entre as imagens */
    }
}

@media (max-width: 500px) {
    .content {
        background: url('/pic/36010.png') no-repeat center center;
        background-size: cover; /* Faz com que a imagem de fundo cubra todo o elemento */
        width: 100%; /* Define a largura do elemento para ocupar 100% da largura do contêiner pai */
        padding-top: 60px; /* Adiciona 60px de padding superior para mover todos os elementos para baixo */
    }

    .left-content {
        margin-top: 60px; /* Aumenta a margem superior para mover o texto mais para baixo */
        text-align: center; /* Centraliza o texto em telas menores */
    }

    .right-content {
        display: flex;
        flex-direction: column;
        align-items: center; /* Centraliza as imagens horizontalmente */
        margin-top: 20px; /* Adiciona margem superior para empurrar a seção mais para baixo */
        width: 100%; /* Garante que o contêiner ocupe a largura total */
    }

    .right-content img[alt="Imagem 2"] { /* Seleciona a imagem com o atributo alt "Imagem 2" (QR code) */
        width: 40%; /* Reduz a largura da imagem para 30% do tamanho original */
        height: auto; /* Mantém a proporção da altura */
        margin-top: 295px; /* Margem superior para posicionamento */
    }

    .right-content img[alt="Imagem 3"] { /* Seleciona a imagem com o atributo alt "Imagem 3" (Imagem 5.png) */
        width: 70%; /* Ajusta a largura para 70% */
        height: auto; /* Mantém a proporção da altura */
        margin-bottom: -90px; /* Define um espaçamento de 20px da parte superior do contêiner principal */
        
    }

    .client-area-button {
        padding: 5px 8px;
        font-size: 12px;
    }

    .menu-icon {
        font-size: 25px;
        display: block; /* Garantir que seja exibido em telas pequenas */
    }
}

.client-area-button {
    text-decoration: none;
    border: none;
    outline: none;
    color: inherit;
}
