/* ============================== */
/* CONFIGURAÇÕES GERAIS           */
/* ============================== */

body {
    font-family: "Georgia", serif;
    margin: 0;
    padding: 0;
    background: #faf9f7;
    color: #333;
    line-height: 1.7;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

/* ============================== */
/* CABEÇALHO                      */
/* ============================== */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    background: #7a0000;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.2em;
}

.brand-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #7a0000;
}

.brand-sub {
    font-size: 0.9em;
    color: #444;
}

nav .cta {
    background: #7a0000;
    color: #fff;
    padding: 8px 14px;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

nav .cta:hover {
    background: #520000;
}

.menu-btn {
    display: none;
}

/* ============================== */
/* CONTEÚDO                       */
/* ============================== */

.page-content {
    margin-top: 60px;
}

.page-content h1 {
    text-align: center;
    font-size: 2.8em;
    color: #7a0000;
    margin-bottom: 10px;
}

.page-content h1 + p,
.page-content > p:first-of-type {
    text-align: center;
    font-style: italic;
    color: #7a0000;
    margin-top: -10px;
}

/* ============================== */
/* CARDS                          */
/* ============================== */

.card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #7a0000;
    box-shadow: 0 0 8px rgba(0,0,0,0.08)
}