:root {
    --azul-principal: #22305f;
    --azul-hover: #1e3f5e;
}

body {
    font-family: Arial, sans-serif;
    text-align: justify;
    margin: 0;
    padding: 2rem;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    background-color: #f9f9f9;
}

h1 {
    color: rgb(226, 110, 15);
    text-align: center;
    font-size: clamp(3.5rem, 5vw, 2.8rem); /* aumentado */
}

h2 {
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 1.9rem); /* aumentado */
}

.footer-versao {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: clamp(1.5rem, 2vw, 1rem); /* aumentado */
    color: #213b90;
    z-index: 999;
}

/* Estilo dos botões */
.botoes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.botoes a {
    display: inline-block;
    padding: 2rem 3.5rem;
    background-color: var(--azul-principal);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: clamp(250px, 20vw, 300px);
    font-size: clamp(1.6rem, 3vw, 2rem);
}

.botoes a:hover {
    background-color: var(--azul-hover);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .botoes {
        flex-direction: column;
        align-items: center;
    }

    .botoes a {
        width: 90vw;
        font-size: 1.8rem;
        padding: 2rem;
    }
}