/* ==========================================================================
   FONTES
   ========================================================================== */
@font-face {
    font-family: 'Venice Classic';
    src: url('Assets/fonts/VeniceClassic.ttf');
}

@font-face {
    font-family: 'Pixel Times';
    src: url('Assets/fonts/Pixel Times.ttf');
    font-weight: normal;
}

@font-face {
    font-family: 'Pixel Times';
    src: url('Assets/fonts/Pixel Times Bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: 'Pixel Georgia';
    src: url('Assets/fonts/Pixel Georgia.ttf');
    font-weight: normal;
}

@font-face {
    font-family: 'Zelda';
    src: url('Assets/fonts/zeldadxt.ttf');
}

@font-face {
    font-family: 'bleo';
    src: url('Assets/fonts/Bleo.ttf');
}

@font-face {
    font-family: 'harnold';
    src: url('Assets/fonts/HarnoldPixel-Regular_demo.otf');
}

/* ==========================================================================
   VARIÁVEIS
   ========================================================================== */
:root {
    --bg-page: #faf8f2;
    --bg-container: #fffefc;
    --block-bg: #ffffff;
    --block-border: #d7c0b0;
    --soft-shadow: #ece0d8;
    --cozy-brown: #a39288;
    --dusty-rose: #eac8c8;
    --sage-green: #b8c9b8;
    --soft-apricot: #f4d4b8;
    --creamy-yellow: #f9e8c9;
    --text-main: #6b5e57;
    --text-title: #8a6e64;
    --text-link: #c28888;
    --text-link-hover: #d4a373;
    --font-title: 'Venice Classic', serif;
    --font-body: 'Pixel Times', 'Times New Roman', serif;
    --font-hand: 'Pixel Georgia', serif;
    --font-accent: 'Zelda', fantasy;
    --font-idk: 'bleo', serif;
    --font-header: 'harnold', serif;
}

/* ==========================================================================
   RESET E GERAL
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    cursor: url('Assets/cursor/normal.png'), auto;
}

body {
    padding: 20px;
    background-color: var(--bg-page);
    background-image: url('Assets/background.png');
    background-repeat: repeat;
    background-size: auto;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-main);
    image-rendering: pixelated;
    font-smooth: never;
    -webkit-font-smoothing: none;
}

/* Garante que imagens e iframes nunca estourem a largura da janela */
img, iframe, video {
    max-width: 100%;
    height: auto;
}

::selection {
    background: var(--dusty-rose);
    color: #fff;
}

a, button, .shrine-link, .stamp-grid img, .pixel-btn {
    cursor: url('Assets/cursor/link.png'), pointer;
}

a {
    text-decoration: none;
    color: var(--text-link);
    font-weight: bold;
    border-bottom: 1px dotted var(--sage-green);
    transition: 0.3s;
}

a:hover {
    color: var(--text-link-hover);
    background-color: var(--creamy-yellow);
    letter-spacing: 1px;
    border-bottom-style: solid;
}

/* ==========================================================================
   ESTRUTURA LAYOUT
   ========================================================================== */
#container {
    max-width: 1500px;
    margin: 0 auto;
    min-height: 100vh;
    padding: 20px;
    background-color: var(--bg-container);
    border: 3px solid var(--dusty-rose);
    outline: 5px solid var(--bg-page);
    box-shadow: 10px 10px 0px var(--soft-apricot);
    border-radius: 10px;
}

header {
    text-align: center;
    margin-bottom: 25px;
}

header h1 {
    font-family: var(--font-idk);
    font-size: 3.5rem;
    color: var(--text-title);
    font-weight: normal;
    margin-bottom: 1rem;
    line-height: 0.8;
    margin-top: 1rem;
}

main {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.lado {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.center {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ==========================================================================
   COMPONENTES GERAIS (Janelas, Divisores, Emotes)
   ========================================================================== */
.janela {
    background: var(--block-bg);
    overflow: hidden;
    border: 2px dashed var(--block-border);
    border-radius: 12px;
    box-shadow: 5px 5px 0px var(--soft-shadow);
    transition: transform 0.2s, border-color 0.2s;
}

.janela:hover {
    transform: translateY(-3px);
    border-color: var(--dusty-rose);
}

.conteudo {
    padding: 18px;
}

.conteudo h3 {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 8px;
    font-family: var(--font-hand);
    color: var(--text-title);
    font-size: 1.2rem;
    border-bottom: 2px dotted var(--sage-green);
}

.divider {
    width: 100%;
}

.emo {
    height: 1.2em;
    width: auto;
    vertical-align: middle;
    margin-bottom: 2px;
    margin-left: 2px;
    margin-right: 2px;
    image-rendering: pixelated;
    border: none;
    box-shadow: none;
    display: inline-block;
}

.emo:hover {
    transform: translateY(-2px);
    transition: transform 0.2s;
}

/* ==========================================================================
   COLUNA ESQUERDA - NAVEGACAO
   ========================================================================== */
.nav-conteudo nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-conteudo a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--bg-page);
    border: 1px solid var(--block-border);
    border-radius: 8px;
    text-decoration: none;
    border-bottom: 2px solid var(--block-border);
    font-family: var(--font-hand);
    color: var(--text-main);
    transition: 0.2s;
}

.nav-conteudo a:hover {
    background: var(--dusty-rose);
    color: #fff;
    border-color: var(--cozy-brown);
    transform: translateX(3px);
}

/* ==========================================================================
   COLUNA ESQUERDA - UPDATES
   ========================================================================== */
.update-scroll {
    height: 120px;
    overflow-y: auto;
    padding: 10px;
    font-size: 0.85rem;
    background: #fff;
    border: 5px dashed var(--dusty-rose);
    border-radius: 8px;
}

.update-scroll hr {
    border: 0;
    border-top: 3px dashed var(--dusty-rose);
    margin: 8px 0;
}

/* ==========================================================================
   COLUNA ESQUERDA - BLINKIES E BOTOES
   ========================================================================== */
.button-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.button-grid img {
    max-width: 100%;
    height: auto;
    image-rendering: pixelated;
    border-radius: 2px;
}

.button-grid img:hover {
    opacity: 0.8;
    cursor: pointer;
}

.pixel-btn {
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--soft-apricot);
    border: 1px solid var(--text-link);
    border-radius: 4px;
    font-size: 10px;
    color: var(--text-main);
    font-weight: bold;
}

/* ==========================================================================
   COLUNA ESQUERDA - VIDEO
   ========================================================================== */
iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

/* ==========================================================================
   COLUNA ESQUERDA - APOIO PIX
   ========================================================================== */
details > summary {
    list-style: none;
}

details > summary::-webkit-details-marker {
    display: none;
}

.support-btn {
    background: #ffdddd;
    border: 1px solid #ffbbbb;
    border-radius: 5px;
    padding: 8px;
    text-align: center;
    color: var(--text-main);
    font-weight: bold;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: background 0.2s;
}

.support-btn:hover {
    background: #ffcccc;
}

.qr-area {
    margin-top: 10px;
    text-align: center;
    background: #fff;
    padding: 10px;
    border: 1px dashed #ffbbbb;
    border-radius: 5px;
    animation: fadeIn 0.3s ease-in-out;
}

.qr-area img {
    max-width: 120px;
    border-radius: 4px;
    margin-bottom: 5px;
}

.pix-key {
    font-size: 0.7rem;
    color: #666;
    word-break: break-all;
    background: #f9f9f9;
    padding: 4px;
    border-radius: 3px;
    user-select: all;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   COLUNA CENTRAL - TEXTO BOAS VINDAS
   ========================================================================== */
.welcome-text {
    text-align: center;
    padding: 15px;
}

.welcome-text h1 {
    border-bottom: none;
    margin-bottom: 5px;
    color: var(--text-link);
    font-family: var(--font-title);
    /* RESPONSIVO: A fonte vai ter no min 3rem, ideal 10vw, max 5.5rem. */
    font-size: clamp(2.5rem, 8vw, 5.5rem); 
    line-height: 1.1;
    word-wrap: break-word;
}

/* ==========================================================================
   COLUNA CENTRAL - ID CARD PERFIL
   ========================================================================== */
.profile-window .conteudo {
    background-color: var(--bg-page);
}

.id-card-wrapper {
    filter: drop-shadow(8px 8px 0px var(--soft-shadow));
    margin-bottom: 25px;
}

.id-card {
    background: #fff;
    border: 3px solid var(--dusty-rose);
    border-radius: 12px;
    overflow: hidden;
    height: auto;
    display: flex;
    flex-direction: column;
}

.id-header {
    background: linear-gradient(to right, var(--dusty-rose), var(--soft-apricot));
    color: #fff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-hand);
    letter-spacing: 1px;
    font-weight: bold;
}

.id-body {
    display: flex;
    align-items: stretch;
    background: #fff;
}

.id-left {
    width: 180px;
    flex-shrink: 0;
    padding: 25px 15px;
    background: #fff;
    border-right: 2px dashed var(--block-border);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lineart-rosa {
    width: 100%;
    height: 140px;
    border: 3px solid var(--soft-apricot);
    background-color: var(--soft-apricot);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.05);
    margin-bottom: 15px;
}

.lineart-rosa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.id-stamp-icon {
    position: absolute;
    bottom: -20px;
    left: -10px;
    z-index: 10;
    font-size: 2rem;
    color: var(--sage-green);
    background: #fff;
    border: 3px double var(--sage-green);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-20deg);
    box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

.stats-panel {
    background: var(--bg-page);
    border: 1px dashed var(--block-border);
    border-radius: 4px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    text-transform: lowercase;
    margin-top: 15px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    color: var(--text-main);
    margin-bottom: 3px;
    flex-wrap: wrap;
}

.stat-row span {
    font-weight: bold;
    color: var(--text-link);
    margin-right: 4px;
}

.pixel-divider {
    height: 1px;
    background: var(--block-border);
    opacity: 0.5;
    margin: 2px 0;
}

.bar-label {
    font-size: 0.65rem;
    margin-bottom: 4px;
    color: var(--text-title);
    font-weight: bold;
    text-align: center;
}

.stat-value-box {
    background: #fff;
    border: 1px solid var(--block-border);
    padding: 4px;
    border-radius: 3px;
    text-align: center;
    font-size: 0.7rem;
    font-style: italic;
    color: var(--text-main);
}

.hobbies-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.hobbies-tags span {
    background: #fff;
    color: var(--text-main);
    font-size: 0.6rem;
    padding: 3px 6px;
    border-radius: 3px;
    border: 1px solid var(--sage-green);
    width: 100%;
    text-align: center;
}

.hobbies-tags span:hover {
    background: var(--creamy-yellow);
    border-color: var(--text-link);
}

.id-right-scroll {
    flex-grow: 1;
    padding: 25px;
    overflow: visible;
    height: auto;
    background: #fff;
}

.id-right-scroll h2 {
    margin: 0;
    font-family: var(--font-title);
    color: var(--text-title);
    font-size: 2.5rem;
    line-height: 1;
}

.profile-sub {
    font-family: var(--font-hand);
    color: var(--text-link);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 20px;
    display: block;
}

.profile-section {
    background: var(--bg-page);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--block-border);
    margin-bottom: 15px;
}

.profile-section strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-title);
    font-family: var(--font-hand);
    font-size: 1.1rem;
    border-bottom: 1px dotted var(--sage-green);
    padding-bottom: 2px;
}

.profile-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: justify;
    color: var(--text-main);
}

.links a {
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 6px;
    padding: 4px 10px;
    border: 1px solid var(--block-border);
    border-radius: 4px;
    background: #fff;
    color: var(--text-main);
    font-size: 0.85rem;
    text-decoration: none;
    border-bottom: 2px solid var(--block-border);
}

.links a:hover {
    background: var(--dusty-rose);
    color: #fff;
    border-color: var(--text-title);
    transform: translateY(-2px);
}

/* ==========================================================================
   COLUNA CENTRAL - STATUS BOX E IMAGEM DECO
   ========================================================================== */
.conteiner {
    display: flex;
    justify-content: space-between;
}

.imagedeco-conteiner {
    display: flex;
    justify-content: center;
}

.image-deco {
    width: 80%;
}

.status-box {
    background: #fff;
    border: 2px solid var(--block-border);
    border-radius: 8px;
    padding: 15px;
    font-size: 0.7rem;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.05);
    margin-bottom: 20px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px dashed var(--sage-green);
    padding-bottom: 10px;
    margin-bottom: 12px;
    font-family: var(--font-title);
    color: var(--text-title);
}

.status-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
    font-size: 2rem;
}

.status-date {
    font-size: 1.5rem;
    opacity: 0.7;
    background: var(--bg-page);
    padding: 2px 6px;
    border-radius: 4px;
}

.status-dot {
    color: #4cd137;
    font-size: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; text-shadow: 0 0 0 rgba(76, 209, 55, 0.4); }
    50% { opacity: 0.4; }
    100% { opacity: 1; text-shadow: 0 0 0 rgba(76, 209, 55, 0.4); }
}

.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 15px;
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.status-grid li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.status-grid b {
    color: var(--text-link);
    font-weight: 600;
}

.status-mood {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mood-label {
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

.mood-bar {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.mood-fill {
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        var(--dusty-rose),
        var(--dusty-rose) 10px,
        rgba(255,255,255,0.3) 10px,
        rgba(255,255,255,0.3) 20px
    );
    width: 60%;
}

.mini-blog {
    background: var(--bg-page);
    border: 1px solid var(--block-border);
    border-radius: 6px;
    padding: 10px;
    margin-top: 15px;
    position: relative;
}

.mini-blog::before {
    content: "💭 thought of the day";
    display: block;
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--text-link);
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mini-blog p {
    margin: 0;
    line-height: 1.4;
    font-style: italic;
    color: var(--text-main);
}

/* ==========================================================================
   COLUNA CENTRAL - SHRINES E OUTROS
   ========================================================================== */
.shrines-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.shrine-link {
    flex: 1 1 45%;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 2px solid var(--sage-green);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.2s;
    color: var(--text-main);
    cursor: pointer;
}

.shrine-cover {
    width: 100%;
    height: 110px;
    background: var(--soft-apricot);
}

.shrine-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shrine-info {
    padding: 15px;
    text-align: center;
    flex-grow: 1;
}

.shrine-info h4 {
    margin: 0 0 5px 0;
    color: var(--text-title);
    font-family: var(--font-hand);
    font-size: 1.1rem;
}

.shrine-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-main);
}

.shrine-link:hover {
    border-color: var(--text-link);
    transform: translateY(-3px);
    box-shadow: 4px 4px 0 var(--soft-shadow);
}

.shrine-link:hover .shrine-info {
    background: var(--sage-green);
}

.shrine-link:hover h4,
.shrine-link:hover p {
    color: #fff;
}

.shrine-link:hover .shrine-cover img {
    transform: scale(1.05);
    transition: transform 0.3s;
}

/* ==========================================================================
   COLUNA DIREITA - GUESTBOOK
   ========================================================================== */
.guestbook-btn-container {
    text-align: center;
    margin: 15px 0;
}

.botao-visitas {
    display: inline-block;
    background-color: var(--creamy-yellow);
    color: var(--text-main);
    font-family: var(--font-hand);
    font-weight: bold;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 20px;
    border: 2px solid var(--sage-green);
    text-decoration: none;
    box-shadow: 2px 2px 0 var(--soft-shadow);
    transition: all 0.2s ease;
}

.botao-visitas:hover {
    background-color: var(--dusty-rose);
    color: #fff;
    border-color: var(--dusty-rose);
    transform: translateY(-3px);
    box-shadow: 4px 4px 0 rgba(0,0,0,0.1);
    cursor: pointer;
}

/* ==========================================================================
   COLUNA DIREITA - PONYTOWN POSTER
   ========================================================================== */
.ponytown-poster.mini {
    text-align: center;
    background-color: #fffaf0;
    border: 2px dashed var(--cozy-brown);
    padding: 12px;
    border-radius: 6px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.03);
    max-width: 100%;
    box-sizing: border-box;
}

.ponytown-poster.mini .wanted-title {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    color: var(--text-title);
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 1px 1px 0 #fff;
}

.ponytown-poster.mini .mugshot-frame {
    background: #fff;
    border: 3px solid var(--block-border);
    width: 100%;
    height: auto;
    margin: 10px auto;
    padding: 30px;
    box-sizing: border-box;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.05);
    border-radius: 3px;
}

.ponytown-poster.mini #ponei {
    width: 100%;
    height: auto;
    image-rendering: pixelated;
    display: block;
}

.ponytown-poster.mini .wanted-info p {
    font-size: 0.75rem;
    margin: 10px 0;
    line-height: 1.3;
    color: var(--text-main);
}

.ponytown-poster.mini .reward-box {
    background: var(--creamy-yellow);
    border: 1px solid var(--sage-green);
    padding: 6px;
    border-radius: 4px;
    margin: 10px 0;
}

.ponytown-poster.mini .reward-label {
    display: block;
    font-size: 0.65rem;
    font-weight: bold;
    color: var(--text-main);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.ponytown-poster.mini .reward-value {
    display: block;
    font-family: var(--font-title);
    color: #e76f51;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.1;
}

.ponytown-poster.mini .pony-btn {
    display: block;
    background: var(--dusty-rose);
    color: #fff;
    font-family: var(--font-hand);
    padding: 6px 0;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.8rem;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px var(--dusty-rose);
    width: 100%;
    margin-top: 5px;
    transition: 0.2s;
}

.ponytown-poster.mini .pony-btn:hover {
    background: var(--cozy-brown);
    box-shadow: 0 0 0 1px var(--cozy-brown);
    transform: translateY(-2px);
}

/* ==========================================================================
   COLUNA DIREITA - CHECKLIST
   ========================================================================== */
.checklist {
    list-style: none;
    font-size: 0.9rem;
}

.checklist li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

input[type="checkbox"] {
    accent-color: var(--dusty-rose);
}

/* ==========================================================================
   COLUNA DIREITA - STAMPS
   ========================================================================== */
.stamp-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.stamp {
    width: 60px;
    height: 70px;
    background: #fff;
    border: 2px solid var(--block-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.6rem;
    color: var(--text-main);
    background-image: repeating-linear-gradient(45deg, var(--bg-page), var(--bg-page) 5px, #fff 5px, #fff 10px);
}

/* ==========================================================================
   WIDGET MUSIC PLAYER (EXTRA)
   ========================================================================== */
.music-player {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 5px;
    background: var(--sage-green);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    border: 2px solid var(--bg-page);
}

.music-icon {
    font-size: 1.5rem;
    animation: spin 6s linear infinite;
    opacity: 0.8;
}

.music-info {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.progress-bar {
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 4px;
    margin-bottom: 5px;
    overflow: hidden;
}

.progress-bar .fill {
    width: 50%;
    height: 100%;
    background: var(--creamy-yellow);
}

.player-controls {
    text-align: center;
    letter-spacing: 5px;
    font-size: 0.9rem;
    color: var(--sage-green);
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: var(--bg-page);
    border: 2px dashed var(--block-border);
    border-radius: 12px;
    box-shadow: 5px 5px 0 var(--soft-shadow);
    font-size: 0.9rem;
    color: var(--text-main);
    font-family: var(--font-hand);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   ESTILOS ESPECÍFICOS DO BLOG
   ========================================================================== */

/* Cabeçalho do Blog */
.blog-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px dashed var(--dusty-rose);
    padding-bottom: 15px;
}

.blog-header h2 {
    font-family: var(--font-title);
    font-size: 3rem;
    color: var(--text-title);
    line-height: 1;
}

.blog-subtitle {
    font-family: var(--font-hand);
    color: var(--text-main);
    font-size: 1rem;
    font-style: italic;
}

/* Card de Resumo do Post (na lista) */
.blog-summary-card {
    background: #fff;
    border: 1px solid var(--block-border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.02);
    transition: 0.2s;
}

.blog-summary-card:hover {
    border-color: var(--text-link);
    transform: translateY(-2px);
    box-shadow: 5px 5px 0 var(--soft-shadow);
}

.blog-date-sticker {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--creamy-yellow);
    color: var(--text-title);
    padding: 5px 10px;
    font-family: var(--font-hand);
    font-weight: bold;
    font-size: 0.8rem;
    border: 1px solid var(--sage-green);
    transform: rotate(2deg);
    box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
    z-index: 2;
}

.blog-title {
    font-family: var(--font-header);
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-title);
    line-height: 1.1;
}

.blog-title a {
    text-decoration: none;
    border: none;
    color: inherit;
    background: none;
}

.blog-title a:hover {
    color: var(--text-link);
    letter-spacing: normal;
}

.blog-meta {
    font-size: 0.75rem;
    color: var(--cozy-brown);
    margin-bottom: 15px;
    font-family: var(--font-hand);
    display: flex;
    gap: 10px;
    align-items: center;
}

.blog-tag {
    background: var(--bg-page);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px dashed var(--block-border);
}

.blog-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-main);
}

.read-more-btn {
    display: inline-block;
    background: var(--dusty-rose);
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    font-family: var(--font-hand);
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid var(--text-link);
    border-bottom: 3px solid var(--text-link);
}

.read-more-btn:hover {
    background: var(--text-link);
    color: #fff;
    transform: translateY(1px);
    border-bottom-width: 1px;
}

/* Estilos para a Página de Post Único */
.post-content {
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}

.post-content p {
    margin-bottom: 15px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border: 5px solid #fff;
    outline: 1px solid var(--block-border);
    box-shadow: 3px 3px 0 var(--soft-shadow);
    margin: 10px 0;
    border-radius: 4px;
}

.post-content blockquote {
    background: var(--bg-page);
    border-left: 4px solid var(--sage-green);
    margin: 15px 0;
    padding: 10px 15px;
    font-style: italic;
    color: var(--text-title);
}

/* Navegação do Blog (Coluna Direita) */
.archive-list {
    list-style: none;
    font-size: 0.9rem;
}

.archive-list li {
    margin-bottom: 5px;
    border-bottom: 1px dotted var(--block-border);
    padding-bottom: 2px;
}

.archive-list a {
    border: none;
    font-weight: normal;
}

/* ==========================================================================
   RESPONSIVIDADE 
   ========================================================================== */

@media (max-width: 900px) {
  
  /* --- 6. LEITURA DE TEXTOS (BLOG) --- */
    
.post-content {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
        word-wrap: break-word;
        padding: 0;
    }

    .post-content p {
        margin-bottom: 20px;
    }

    .post-content img {
        width: 100%;
        height: auto;
        margin: 15px 0;
    }

    .post-content blockquote {
        margin: 15px 0;
        padding: 10px;
        border-left-width: 3px;
    }

    #post-titulo {
        font-size: 2rem;
        line-height: 1.1;
        word-break: keep-all;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    /* --- 1. GERAL E CONTAINER --- */
    #container {
        padding: 10px; 
        width: 100%;
        max-width: 100%;
        border-width: 2px;
    }

    body {
        padding: 10px; 
    }

    main {
        flex-direction: column;
        gap: 25px;
    }

    /* --- 2. ORDEM E LARGURA DAS COLUNAS --- */
    .center {
        order: -1; 
        width: 100%;
    }

    .lado {
        order: 0;
        width: 100%;
    }

    /* --- 3. CABEÇALHO DO SITE --- */
    header h1 {
        
        font-size: clamp(1.5rem, 8vw, 4.5rem); 
        line-height: 1.1;
        
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .welcome-text h1 {
        font-size: clamp(2rem, 10vw, 4rem);
    }

    /* --- 4. ID CARD (PERFIL) --- */
    .id-card {
        height: auto;
    }

    .id-body {
        flex-direction: column;
    }

    .id-left {
        width: 100%;
        border-right: none;
        border-bottom: 2px dashed var(--block-border);
        padding: 25px 15px;
        
        display: flex;
        flex-direction: column;
        align-items: center; 
    }

    .lineart-rosa {
        width: 160px; 
        height: 160px;
        margin-bottom: 20px;
    }

    .stats-panel {
        width: 100%;
        max-width: 300px;
    }

    .stat-row {
        font-size: 0.8rem; 
    }

    .id-right-scroll {
        width: 100%;
        padding: 20px;
        height: auto;
        overflow: visible;
        
        display: flex;
        flex-direction: column;
        align-items: center; 
    }
    
    .id-right-scroll h2 {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 5px;
    }

    .profile-sub {
        text-align: center; 
        margin-bottom: 25px;
    }

    .profile-section {
        width: 100%;
        text-align: left; 
    }

    /* --- 5. OUTROS AJUSTES VISUAIS --- */
    
  
    .shrine-link {
        flex-basis: 100%; 
    }


    .conteiner {
        flex-direction: column-reverse;
    }
    
    .imagedeco-conteiner {
        display: none; 
    }


    .nav-conteudo a, .read-more-btn {
        padding: 14px; 
        justify-content: center; 
    }


    .button-grid {
        justify-content: center;
    }
}