/* Estilo global */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Wrapper para manter o layout flexível */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Estilos para o Header */
.header {
    background-color: #6E85B7;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
}

/* Botões no Header */
.header-buttons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.btn-header {
    background-color: #fff !important; /* Força o fundo branco */
    color: #6E85B7; /* Texto com a cor principal */
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.btn-header:hover {
    background-color: #f0f0f0; /* Fundo cinza claro ao passar o mouse */
    color: #6E85B7; /* Cor do texto permanece */
}

/* Seção principal com CTA */
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.cta h2 {
    font-size: 28px;
    color: #333;
}

.cta .btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s, transform 0.3s;
}

.cta .btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Estilo do Footer */
.footer {
    background-color: #252525;
    color: white;
    padding: 20px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    text-align: left;
    margin-top: 0;
    align-items: start;
}

.footer .footer-column {
    padding: 0;
}

.footer h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #007bff;
}

.footer p {
    font-size: 14px;
}

.footer a {
    color: white;
}

.footer a:hover {
    color: #007bff;
}

.footer-copyright {
    background-color: #252525;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 0;
    width: 100%;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .header-buttons {
        position: static;
        justify-content: center;
        margin-bottom: 10px;
    }

    .footer {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
