body {
    margin: 0;
    background-image: url('images/background.png'); /* Substitua por sua imagem de fundo */
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "Bricolage Grotesque", sans-serif;
    }

    header {
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
        padding: 10px 0;
        background-color: #7a7a7a;
        width: 100%;
        z-index: 1000;
        position: fixed; /* Fixa o header no topo */
        top: 0;
        left: 0;
        height: 75px; /* Altura fixa do header */
    }

/* Logo */
.box-img-header {
    height: auto;
}

.img-logo {
    max-width: 400px;
    height: auto;
    margin-top: -17px;
    align-items: center;
    margin-left: 36%;
}

.img-fundo-main {
    width: 100%;
    height: auto;
    margin-top: 90px;
}

.container {
    text-align: center;
    color: #333;
    margin-top: 20px;
}    

h1 {
    font-size: 4rem;
    color: #2B2B2B;
    letter-spacing: 2px;

    margin-top: -120px; /* Remover margem superior para aproximar o texto do topo */
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 20px; /* Ajustar a margem superior dos botões */
}

.btn {
    padding: 1rem 2rem;
    background-color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: white;
    text-decoration: none;
}

.btn:hover {
    background-color: #2B2B2B;
}

img {
    width: 30%;
    margin-top: 1rem; /* Reduzir a margem superior para aproximar a imagem */
}

@supports (padding-top: env(safe-area-inset-top)) {
    body {
        padding-top: calc(60px + env(safe-area-inset-top));
    }

    header {
        padding-top: env(safe-area-inset-top);
    }
}

/* Media query para dispositivos iOS com notch */
@media only screen and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) {
    header {
        padding-top: env(safe-area-inset-top);
    }
}
