/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #333;
}

/* Cabeçalho fixo com menu */
header {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: flex-end;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin: 0 15px;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.menu li a:hover {
    color: #1e90ff;
}

/* Seções em tela cheia */
.full-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Ocupa 100% da altura da tela */
    width: 100vw; /* Ocupa 100% da largura da tela */
    text-align: center;
    position: relative;
}

.full-screen img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha a tela mantendo proporção */
    z-index: -1;
}

.full-screen h1,
.full-screen h2 {
    font-size: 2.5rem;
    z-index: 10;
    margin: 10px;
}

/* Botão de Download */
.download-button {
    display: none; /* Oculto por padrão */
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #1e90ff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.download-button:hover {
    background-color: #0056b3;
}

/* Exibir botão apenas em desktop */
@media (min-width: 1025px) {
    .download-button {
        display: inline-block; /* Botão visível apenas em desktop */
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .menu li a {
        font-size: 0.9rem;
    }

    .full-screen h1,
    .full-screen h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .menu li {
        margin: 0 5px;
    }

    .full-screen h1,
    .full-screen h2 {
        font-size: 1.5rem;
    }
}
