@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=Newsreader:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --paper: #f2f2f2;
    --ink: #000000;
    --ink-dim: #444;
    --blood: #8b0000;
    --border: #d1d1d1;
}

* { margin: 0; padding: 0; box-sizing: border-box; outline: none; }

body {
    background-color: var(--paper);
    color: var(--ink);
    font-family: 'Newsreader', serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- NAVEGAÇÃO --- */
nav {
    position: fixed;
    top: 0; width: 100%;
    background: rgba(242, 242, 242, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--ink);
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.nav-logo-img { height: 35px; width: auto; filter: invert(1); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }

.nav-links a {
    text-decoration: none;
    color: var(--ink-dim);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--blood); }

/* --- BOTÃO RITUALÍSTICO (CRUZ INVERTIDA) --- */
/* --- BOTÃO RITUALÍSTICO (CRUZ INVERTIDA CORRIGIDA) --- */
.menu-toggle {
    display: none;
    width: 30px; height: 30px;
    position: relative;
    cursor: pointer;
    background: none; border: none;
    z-index: 1100;
}

.menu-toggle span {
    display: block; position: absolute;
    height: 2px; width: 100%;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Efeito elástico suave */
}

/* Estado Fechado (Hambúrguer) */
.menu-toggle span:nth-child(1) { top: 6px; }
.menu-toggle span:nth-child(2) { top: 14px; }
.menu-toggle span:nth-child(3) { top: 22px; }

/* Estado Aberto (Cruz Invertida Geométrica) */
.menu-toggle.open span { background: var(--blood); }

/* Haste Vertical (Era a linha 1) */
.menu-toggle.open span:nth-child(1) {
    top: 14px;
    left: 2px; /* Centraliza */
    width: 26px; /* Comprimento da haste vertical */
    transform: rotate(90deg);
}

/* Haste Horizontal (Era a linha 2) */
.menu-toggle.open span:nth-child(2) {
    top: 20px; /* Desce para fazer a cruz invertida */
    left: 5px; /* Centraliza em relação à vertical */
    width: 20px; /* Mais curta que a vertical */
    transform: rotate(0deg);
}

/* Linha 3 desaparece */
.menu-toggle.open span:nth-child(3) {
    opacity: 0;
    transform: translateY(10px);
}

/* --- CONTEÚDO GLOBAL --- */
main { max-width: 700px; margin: 0 auto; padding: 12rem 1.5rem 5rem; }
section { margin-bottom: 8rem; }
.quote-display { margin-bottom: 4rem; padding: 2rem; border: 1px solid var(--border); background-color: #fcfcfc; text-align: center; font-style: italic; color: var(--ink-dim); }
.quote-text { font-size: 1.8rem; line-height: 1.4; margin-bottom: 1.5rem; font-family: 'Newsreader', serif; color: var(--ink); }
.quote-author { font-size: 1.1rem; font-weight: 600; color: var(--blood); font-family: 'Inter', sans-serif; }
.label { font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4em; color: var(--blood); margin-bottom: 1.5rem; display: block; }
h1 { font-size: clamp(2.4rem, 8vw, 3.8rem); font-weight: 400; line-height: 1.1; margin-bottom: 2rem; letter-spacing: -0.04em; }
h2 { font-size: 2.2rem; margin-bottom: 1.5rem; font-weight: 600; }
p b { color: var(--ink); font-weight: 600; }
.notice-box { padding: 2.5rem; border-left: 4px solid var(--blood); margin: 4rem 0; font-style: italic; background: #ebebeb; text-align: center; }
#content-area { transition: opacity 0.4s ease, transform 0.4s ease; }
.fade-out { opacity: 0; transform: translateY(10px); }
.blog-item { display: flex; justify-content: space-between; align-items: baseline; padding: 1.5rem 0; border-bottom: 1px solid var(--border); text-decoration: none; color: inherit; transition: color 0.3s; }
.blog-item:hover { color: var(--blood); }

/* Add-ons do FAQ */
h3 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 900; color: var(--blood); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; margin-top: 2.5rem; }
.faq-content p { margin-bottom: 1.5rem; }

/* --- FOOTER --- */
footer { background: #e0e0e0; border-top: 3px solid var(--ink); padding: 5rem 5% 3rem; }
.footer-wrap { max-width: 1000px; margin: 0 auto; }

/* Grid de 3 Colunas */
.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 3rem; 
    margin-bottom: 3rem; 
}

.footer-col h4 { 
    font-family: 'Inter', sans-serif; 
    font-size: 0.75rem; 
    font-weight: 900; 
    text-transform: uppercase; 
    margin-bottom: 1.5rem; 
    color: var(--blood);
    letter-spacing: 0.1em;
}

.footer-col a { 
    display: block; 
    text-decoration: none; 
    color: var(--ink-dim); 
    font-family: 'Inter', sans-serif; 
    font-size: 0.8rem; 
    margin-bottom: 0.8rem; 
    transition: 0.2s;
}
.footer-col a:hover { color: var(--ink); transform: translateX(5px); }

/* Ícones Sociais */
.social-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ccc;
}

.social-row a svg {
    width: 24px;
    height: 24px;
    fill: var(--ink);
    transition: all 0.3s ease;
}

.social-row a:hover svg {
    fill: var(--blood);
    transform: translateY(-3px);
}

.legal-footer { 
    text-align: center; 
    font-family: 'Inter', sans-serif; 
    font-size: 0.7rem; 
    color: var(--ink-dim); 
    text-transform: uppercase; 
    letter-spacing: 0.1em; 
}

/* --- MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .nav-brand span { font-size: 0.75rem; letter-spacing: 0.01em; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    
    .nav-links {
        display: none; 
        position: fixed; top: 0; left: 0; 
        width: 100%; height: 100vh; 
        background: var(--paper); /* Fundo cinza papel */
        flex-direction: column; 
        justify-content: center; /* Centralizado verticalmente */
        align-items: center; 
        gap: 2rem; /* Espaço elegante entre itens */
        z-index: 1050;
        overflow-y: hidden; /* Evita rolagem desnecessária */
    }
    
    .nav-links.active { display: flex; }
    
    /* Tipografia Mobile Ajustada */
    .nav-links > li > a { 
        font-family: 'Inter', sans-serif;
        font-size: 1rem; /* Reduzido de 1.3rem para ficar proporcional */
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.2em; /* Mais espaçamento = mais elegância */
        color: var(--ink);
    }

    /* Efeito ao passar o dedo */
    .nav-links > li > a:hover {
        color: var(--blood);
    }
    
    .nav-brand span { font-size: 0.65rem; }
    main { padding-top: 8rem; }
    .quote-text { font-size: 1.4rem; }
    
    /* Footer Mobile */
    footer { padding: 4rem 1.5rem 2rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
    
    .footer-col h4 {
        font-size: 0.8rem; 
        margin-bottom: 1rem;
        border-bottom: 1px solid var(--border);
        display: inline-block;
        padding-bottom: 0.5rem;
    }
    
    .footer-col a { display: block; width: 100%; font-size: 0.85rem; margin-bottom: 0.8rem; }
    .social-row { margin-bottom: 2rem; padding-top: 2rem; }
    .legal-footer { font-size: 0.6rem; line-height: 1.5; }
}
