﻿body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

h1 {
    color: #A89242;
}

.background-image {
    position: relative;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(70%);
    transition: transform 0.5s ease-in-out;
}

    .background-image:hover {
        transform: scale(1.05);
    }

.safari-only .background-image {
    -webkit-filter: brightness(70%);
    filter: brightness(70%);
    -webkit-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
}

.nav {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: black;
    padding: 10px;
    color: white;
    text-align: center;
    z-index: 10;
    font-family: 'Roboto', sans-serif;
}

    .nav a {
        text-decoration: none;
        color: white;
        margin: 0 10px;
        transition: color 0.3s, transform 0.3s;
    }

        .nav a:hover {
            color: #A89242;
            transform: scale(1.1);
        }

.content {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: white;
    z-index: 1; /* Definido z-index menor para que o conteúdo fique abaixo do menu */
}
