@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Great+Vibes&display=swap');
    /* ==========================================================================
    1. REGRAS GERAIS E CONFIGURAÇÕES DO BODY
    ========================================================================== */
    body {
        text-align: center;
        font-family: 'Cormorant Garamond', Georgia, serif;
        background-color: rgb(0, 0, 0); /* Mantido o padrão escuro das suas páginas */
        color: #ffffff;
        margin: 0;
        padding: 0;
    }

    p {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

   /* ==========================================================================
   2. BOTÕES DE ACESSO (LOGIN / CADASTRO)
   ========================================================================== */
  /* ── BOTÕES DE ACESSO / CHIP DE USUÁRIO ── */
    .top-access-btns {
        position: fixed;
        top: 14px;
        right: 18px;
        z-index: 999;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .access-btn {
        padding: 5px 14px;
        border-radius: 20px;
        font-family: inherit;
        font-size: 0.78rem;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.2s;
        letter-spacing: 0.04em;
        border: 1px solid rgba(255,255,255,0.15);
        color: rgba(255,255,255,0.55);
        background: none;
    }
    .access-btn:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
    .access-btn-cadastro {
        background: rgba(163,78,158,0.15);
        border-color: rgba(163,78,158,0.4);
        color: #c87fc3;
    }
    .access-btn-cadastro:hover { background: rgba(163,78,158,0.3); }

    .access-btn-login {
    background: transparent;
    color:#d4a87a;
    border: 1px solid #d4a87a;
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 2px;
    padding: 7px 20px;
    }
    .access-btn-login:hover {
        background: #d4a87a;
        color: #0a0508;
    }
        .user-chip {
        display: flex;
        align-items: center;
        gap: 7px;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 20px;
        padding: 3px 10px 3px 4px;
        text-decoration: none;
        transition: all 0.2s;
        cursor: pointer;
    }
    .user-chip:hover { background: rgba(255,255,255,0.1); border-color: rgba(163,78,158,0.4); }
    .user-avatar-mini {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: rgba(163,78,158,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        color: #c87fc3;
        overflow: hidden;
        flex-shrink: 0;
    }
    .user-avatar-mini img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
    .user-chip-nome {
        font-size: 0.8rem;
        color: rgba(255,255,255,0.7);
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* ── DRAWER USUÁRIA ── */
    .drawer-user-area {
        padding: 1rem 1.2rem;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        margin-bottom: 0.5rem;
    }
    .drawer-user-chip {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }
    .drawer-user-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(163,78,158,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        color: #c87fc3;
        overflow: hidden;
        flex-shrink: 0;
    }
    .drawer-user-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
    .drawer-user-info { display: flex; flex-direction: column; }
    .drawer-user-nome { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
    .drawer-user-sub  { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
    .drawer-btn-sair {
        background: none;
        border: none;
        color: rgba(255,255,255,0.3);
        font-family: inherit;
        font-size: 0.78rem;
        cursor: pointer;
        padding: 0.5rem 0;
        text-align: left;
        transition: color 0.2s;
        width: 100%;
        margin-top: 0.4rem;
    }
    .drawer-btn-sair:hover { color: rgba(255,255,255,0.6); }

    /* esconde no mobile (drawer cuida disso) */

    /* ==========================================================================
    3. HEADER COM BANNER E MENU (NAV)
    ========================================================================== */
    /* ── Header ── */
    header.header-com-banner {
        position: relative !important;
        overflow: hidden !important;
        width: 100% !important;
        aspect-ratio: 1280 / 250 !important;
        padding: 0 !important;
        z-index: 1 !important;
        border-bottom: 1px solid rgba(163, 78, 158, 0.2) !important;
    }

    .header-bg-static {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
        background-size: cover !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
    }

    .header-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(to bottom, rgba(10, 5, 8, 0.65), rgba(10, 5, 8, 0.35)) !important;
        z-index: 2 !important;
    }

    .header-content {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 10 !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: flex-end !important;
        padding: 20px 110px !important;
        box-sizing: border-box !important;
    }

    .header-content nav {
        width: auto !important;
        gap: 2.5rem !important;
        display: flex !important;
        justify-content: space-between !important;
        margin: 0 !important;
        margin-bottom: 5px !important;
        font-size: 20px !important;
    }

    nav a {
       
        color: rgba(255, 255, 255, 0.85) !important;
        font-family: 'Cormorant Garamond', serif !important;
        font-size: 18px !important;
        letter-spacing: 0.2em !important;
        text-decoration: none !important;
        font-weight:bold !important;
        margin: 0 !important;
        transition: color 0.2s !important;
    }

    nav a:hover,
    nav a.active {
        color:  #d4a87a !important;
        text-decoration: none !important;
    }

    /* ==========================================================================
    4. FOOTER (RODAPÉ)
    ========================================================================== */
    footer {
        background: #000000;
    color: rgba(255, 245, 230, 0.7);
    text-align: center;
    padding: 2rem 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.05em;
    }

    .social-media p {
        margin-bottom: 6px;
    }

    .social-media a {
        color: #7a12a3;
        text-decoration: none;
        font-weight: 500;
    }

    .social-media a:hover {
        text-decoration: underline;
    }

    .copyright {
        margin-top: 12px;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.7);
    }   
   
   
   body.autora {
            
            font-family: 'Cormorant Garamond', Georgia, serif;
            color: #2a1f1a;
            margin: 0;
        }

        .author-section {
            max-width: 860px;
            margin: 0 auto;
            padding: 4rem 2rem 3rem;
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 3.5rem;
            align-items: start;
        }

        .author-img-container {
            position: relative;
        }

        .photo-frame {
            position: relative;
            width: 230px;
        }

        .photo-frame::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            width: 100%;
            height: 100%;
            border: 1.5px solid #ffffff;
            border-radius: 2px;
            z-index: 0;
        }

        .author-photo {
            position: relative;
            z-index: 1;
            width: 100%;
            border-radius: 2px;
            display: block;
            filter: sepia(8%) contrast(1.04);
        }

        .author-stats {
            margin-top: 1.4rem;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 2px;
            border-left: 2px solid #ffffff;
            padding-left: 10px;
        }

        .stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
        }

        .stat-label {
            font-size: 11.5px;
            color: #d4a87a;
            letter-spacing: 0.07em;
            text-transform: uppercase;
        }

        .author-social {
            margin-top: 1.5rem;
        }

        .ig-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: 0.04em;
            font-family: 'Cormorant Garamond', serif;
            transition: color 0.2s;
        }

        .ig-link:hover {
            color: #ffffff;
        }

        .ig-icon {
            width: 28px;
            height: 28px;
            border: 1px solid #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            color: #c4956a;
            flex-shrink: 0;
        }

        .section-eyebrow {
             font-family: 'Poppins', sans-serif;
            font-size: 11px;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: #a34e9e;
            margin: 0 0 6px 0;
        }

        .author-bio h2 {
            font-family: 'Playfair Display', serif;
            font-size: 50px;
            font-weight: 400;
            color: #ffffff;
            margin-bottom: 1.6rem;
            line-height: 1.2;
        }

        .author-bio h2 em {
            font-style: italic;
            color: #d4a87a;
        }

        .bio-text p {
            font-size: 17px;
            line-height: 1.8;
            color: #ffffff;
            margin-bottom: 1.1rem;
            font-weight: 300;
        }

        .bio-ornament {
            color: #ffffff;
            font-size: 22px;
            text-align: center;
            margin: 1.4rem 0 1.6rem;
            letter-spacing: 0.4em;
        }

        .bio-quote {
            position: relative;
            margin: 1.8rem 0 1.6rem;
            padding: 1.4rem 1.6rem 1.4rem 2rem;
            border-left: 3px solid #ffffff;
            background: #34322f;
        }

        .bio-quote p {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 18px;
            line-height: 1.65;
            color: #ffffff;;
            margin: 0;
        }

        .bio-quote::before {
            content: '\201C';
            font-family: 'Great Vibes', cursive;
            font-size: 72px;
            color: #494644;
            position: absolute;
            top: -18px;
            left: 12px;
            line-height: 1;
            opacity: 0.5;
        }

        .bio-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 1.6rem;
        }

        .bio-tag {
            font-size: 11.5px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 5px 12px;
            border: 1px solid #c46ac4;
            border-radius: 20px;
            color: #ffffff;
            font-family: 'Cormorant Garamond', serif;
        }

        .section-divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, transparent, #c4956a55, transparent);
        }

        

        .social-media p {
            font-size: 12px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            opacity: 0.6;
            margin-bottom: 0.4rem;
        }

        .social-media a {
            color: #742670;
            text-decoration: none;
            font-size: 15px;
            display: block;
            margin-bottom: 0.5rem;
        }

        .copyright p {
            font-size: 12px;
            opacity: 0.5;
            margin-top: 0.5rem;
        }

        @media (max-width: 620px) {
            .author-section {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2rem 1.2rem;
            }

            .photo-frame {
                width: 180px;
            }
        }

        @media (max-width: 700px) {
            .header-content { padding: 20px 20px !important; }
            .header-content nav { width: 100% !important; }
            nav a { font-size: 13px !important; letter-spacing: 0.1em !important; }
        }


        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .section-eyebrow    { animation: fadeUp 0.7s ease both; }
        .author-bio h2    { animation: fadeUp 0.7s  0.1s ease both; }
        .author-bio h2 em   { animation: fadeUp 0.7s  0.1s ease both; }
        .author-photo   { animation: fadeUp 0.7s  0.15s ease both; }
        .author-section   { animation: fadeUp 0.7s  0.15s ease both; }
      

/* ==========================================================================
   MENU HAMBURGUER + RESPONSIVIDADE MOBILE
   ========================================================================== */

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(10, 5, 8, 0.7);
    border: 1px solid rgba(163, 78, 158, 0.4);
    border-radius: 4px;
    cursor: pointer;
    z-index: 1100;
    position: fixed;
    top: 16px;
    left: 16px;
    transition: border-color 0.3s;
}
.hamburger-btn:hover { border-color: #a34e9e; }
.hamburger-btn span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: #d4a87a;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 5, 8, 0.6);
    z-index: 1050;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-overlay.visible { opacity: 1; }

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 260px;
    background: #0f0610;
    border-right: 1px solid rgba(163, 78, 158, 0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 0 0 40px;
    box-sizing: border-box;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 30px rgba(0,0,0,0.5);
}

.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(to right, #7a12a3, #d4a87a, #7a12a3);
}

.mobile-drawer-logo {
    padding: 0;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(163, 78, 158, 0.15);
    overflow: hidden;
    height: 100px;
    flex-shrink: 0;
}

.mobile-drawer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.mobile-drawer nav {
    display: flex;
    flex-direction: column !important;
    padding: 8px 24px 0 !important;
    gap: 0 !important;
    width: auto !important;
    font-size: unset !important;
    justify-content: unset !important;
    margin-bottom: 0 !important;
}

.mobile-drawer nav a {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 13px !important;
    letter-spacing: 0.25em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(163, 78, 158, 0.1) !important;
    transition: color 0.2s, padding-left 0.2s !important;
    display: block !important;
    margin: 0 !important;
}

.mobile-drawer nav a:last-child { border-bottom: none !important; }

.mobile-drawer nav a:hover,
.mobile-drawer nav a.active {
    color: #d4a87a !important;
    padding-left: 8px !important;
}

.mobile-drawer-access {
    margin-top: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(163, 78, 158, 0.15);
}

.mobile-drawer-access .access-btn {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* ==========================================================================
   MEDIA QUERIES — AUTORA
   ========================================================================== */
@media (max-width: 768px) {

    /* Header */
    header.header-com-banner {
        aspect-ratio: unset !important;
        height: 90px !important;
    }
    .header-content nav { display: none !important; }
   
    .hamburger-btn { display: flex; }

    /* Seção autora: empilha coluna única */
    .author-section {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 2rem 1.2rem !important;
        text-align: center;
        order: 0 !important;
        display: flex;
        flex-direction: column;
    }

    

    /* Foto centralizada */
    .author-img-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .photo-frame { width: 180px; }

    /* Stats ficam em linha */
    .author-stats {
        flex-direction: row;
        justify-content: center;
        gap: 0;
        width: 100%;
        border-top: 1px solid rgba(255,255,255,0.15);
        border-bottom: 1px solid rgba(255,255,255,0.15);
        padding: 16px 0;
        margin-top: 16px;
    }

    .stat-item {
        border-left: none;
        border-top: none;
        border-right: 1px solid rgba(255,255,255,0.2);
        padding: 0 16px;
        text-align: center;
        width: auto;
        flex: 1;
    }

    .stat-item:last-child {
        border-right: none;
    }

    .stat-num {
        font-size: 14px;
    }

    .stat-label {
        font-size: 9px;
        letter-spacing: 0.05em;
    }

    

    /* Bio */
    .author-bio h2 { font-size: 22px;  }
    .bio-text p { font-size: 15px; }
    .bio-quote p { font-size: 16px; }

    /* Tags */
    .bio-tags { justify-content: center; }

    .photo-frame {
        margin: 0 auto;
        left: 0;
        right: 0;
    }

    
    .bio-ornament {
        text-align: center;
        width: 100%;
        display: block;
        letter-spacing: 0.6em;
        padding-left: 0.6em; /* compensa o letter-spacing pra centralizar de verdade */
    }

    
}

@media (max-width: 480px) {
    .photo-frame { width: 150px; }
    .author-bio h2 { font-size: 30px; }
}


.page-title-block {
    text-align: center;
    padding: 3rem 1rem 1rem;
}

.header-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #a34e9e;
    margin: 0 0 6px 0;
}

.section-title-great {
    font-family: 'Great Vibes', cursive;
    font-size: 5.5em;
    margin: 0 0 4px 0;
    color: #d4a87a;
}

.page-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.82rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin: 0 auto 1rem;
}

.ornament-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem auto 2rem;
    width: 100%;
    max-width: 300px;
}

.ornament-line::before,
.ornament-line::after {
    content: '';
    flex: 1;
    height: 1px;
}

.ornament-line::before {
    background: linear-gradient(to right, transparent, #c4956a);
}

.ornament-line::after {
    background: linear-gradient(to left, transparent, #c4956a);
}

.ornament-diamond {
    width: 6px;
    height: 6px;
    background: #d4a87a;
    transform: rotate(45deg);
    flex-shrink: 0;
}


.page-title-block      { animation: fadeUp 0.7s ease both; }
.section-title-great   { animation: fadeUp 0.7s 0.1s ease both; }
.page-subtitle         { animation: fadeUp 0.7s 0.2s ease both; }
.ornament-line         { animation: fadeUp 0.7s 0.25s ease both; }