@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/* Estilo para a página */
body {
    font-family: Arial, sans-serif;
    background-color: #2d2d2d;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-image: url('girassol2.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* Cabeçalho */
header {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 0;
}

/* Container do cabeçalho */
header .header-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Estilos do título */
header .header-container h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5em;
    margin-bottom: 1px;
}

/* Estilo da data */
header .header-container .date {
    font-size: 1.2em;
    font-weight: lighter;
    margin-top: 0;
}

/* Botão "Menu" (apenas para dispositivos móveis) */
.menu-btn {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
    transition: background-color 0.3s ease;
    text-align: center;
    display: none; /* Esconde o botão no desktop */
}

.menu-btn:hover {
    background-color: #e05a5a;
}

/* Menu de navegação para desktop (horizontal) */
.navbar {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0;
    position: relative;
    z-index: 3;
    margin-top: 20px;
    border-radius: 10px;
    width: 50%;
    display: flex;
    justify-content: center;
}

.navbar ul {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    padding: 0 0;
    width: 100%;
    margin: 0;
}

.navbar ul li {
    display: inline;
    margin: 0;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 0.8em;
    padding: 10px 15px;
    display: block;
}

.navbar ul li a:hover {
    color: #ff6b6b;
}

/* Estilos do conteúdo */
.content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding: 0;
    width: 80%;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    color: #fff;
    line-height: 1.8;
    text-align: left;
    margin: 20px auto;
}

/* Estilos do rodapé */
footer {
    font-family: Arial, sans-serif;
    font-size: 10px;
    text-align: center;
    padding: 10px;
    position: relative;
    z-index: 2;
    width: 20%;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 1.6);
    border-radius: 10px;
    color: #fff;
    line-height: 1.8;
}

.citacao {
    line-height: 1.2;
    margin-bottom: 0;
}

.referencia {
    line-height: 1.2;
    font-style: italic;
}

/* Personalização do botão de confirmação */
button {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

button:hover {
    background-color: #e05a5a;
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .menu-btn {
        display: inline-block;
        margin-top: 10px;
    }

    .navbar {
        display: none;
    }

    .navbar.show {
        display: block;
        position: absolute;
        top: 50px;
        width: 60%;
    }

    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    .navbar ul li a {
        font-size: 1em;
        padding: 12px;
        text-align: center;
    }

    .content {
        margin: 5px auto;
        padding: 10px;
    }
}
