/* Fonte clássica */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Times New Roman", Georgia, serif;
    background-color: #e9eef3;
    color: #333;
}

/* Fundo suave */
.background {
    min-height: 120vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background:
        linear-gradient(90deg, rgba(200, 210, 230, 0.25) 50%, transparent 50%),
        linear-gradient(0deg, rgba(200, 210, 230, 0.25) 50%, transparent 50%),
        linear-gradient(0deg, rgba(200, 210, 230, 0.25) 50%, transparent 50%);
    background-size: 40px 40px;
}

/* Caixa central */
.container {
    margin-top: 40px;
    width: 700px;
    background: #fdfefe;
    border: 1px solid #bfc7d5;
    padding: 20px;
    position: relative;
}

/* Cabeçalho */
header {
    background-image: url('cinnamon title back.jpg');
    background-size: cover;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #bfc7d5;
}

.title h1 {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-size: 28px;
}

.decor {
    position: absolute;
    opacity: 0.9;
    pointer-events: none;
}

.decor-top-left {
    width: 120px;
    top: -40px;
    left: -60px;
}

.decor-bottom-right {
    width: 200px;
    bottom: -50px;
    right: -100px;
}


/* Navegação */
.navegation {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    border-top: 1px solid #bfc7d5;
    border-bottom: 1px solid #bfc7d5;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-button {
    margin: 0;
}

.nav-button a {
    text-decoration: none;
    color: #3a4a6a;
    font-size: 16px;
}

.nav-button a:hover {
    text-decoration: underline;
    color: #1f2f4f;
}

/* Texto */
.text-section {
    padding: 10px;
    line-height: 1.6;
}
p {
    margin: 8px 0;
}
.text-section h2 {
    font-size: 20px;
    margin-bottom: 10px;
}
.inline-decor {
    display: block;
    margin: 30px auto;
    width: 90px;
    opacity: 0.85;
}

.text-section::before {
    content: "✦ ✦ ✦";
    display: block;
    text-align: center;
    color: #9aa6c0;
    margin-bottom: 15px;
}

.info-layout {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

/* colunas */
.info-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-right {
    width: 60%;
}

/* caixas */
.info-box {
    border: 1px solid #bfc7d5;
    background-color: #f7f9fc;
    padding: 10px;
    font-size: 14px;
}

/* títulos */
.info-box h3 {
    margin: 0 0 6px 0;
    font-size: 15px;
    color: #3a4a6a;
    border-bottom: 1px solid #bfc7d5;
    padding-bottom: 4px;
}

/* scroll */
.scroll-box {
    overflow-y: auto;
}

.scroll-box.small {
    max-height: 140px;
}

.scroll-box.large {
    max-height: 240px;
}

/* changelog */
.changelog {
    list-style: none;
    padding: 0;
    margin: 0;
}

.changelog li {
    font-size: 13px;
    margin-bottom: 6px;
}

.changelog span {
    color: #6b7da8;
    margin-right: 6px;
}


/* Imagens */
.image-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.image-container img {
    width: 180px;
    height: auto;
    border: 1px solid #bfc7d5;
    padding: 4px;
    background-color: #ffffff;
}

/* Botões de site */
.button-section {
    margin: 10px 0;
    border-top: 1px solid #bfc7d5;
}

.button-title {
    text-align: center;
    font-size: 16px;
    color: #3a4a6a;
    margin-bottom: 10px;
}

.button-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px;
    scrollbar-width: thin;
}

.site-button {
    min-width: 100px;
    height: 40px;
    background-color: #eef2f7;
    border: 1px solid #bfc7d5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #3a4a6a;
    font-size: 14px;
    white-space: nowrap;
}

.site-button:hover {
    background-color: #dde5f0;
}


/* Rodapé */
footer {
    margin-top: 40px;
    padding-top: 10px;
    text-align: center;
    font-size: 14px;
    color: #6b7485;
    border-top: 1px dotted #bfc7d5;
}
