/* ===== RESET & VARIABLES ===== */
:root {
    --ink: #141824;
    --ink-light: #1d2333;
    --gold: #c9a84c;
    --gold-light: #e8c96d;
    --accent-red: #8f1e2a;
    --accent-red-light: #b22d3b;
    --accent-red-pale: #fff3f5;
    --gold-pale: #fdf6e3;
    --text-body: #2c2c3e;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --bg: #fafaf8;
    --bg-white: #ffffff;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --whatsapp: #25D366;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
    --radius: 10px;
    --radius-lg: 18px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.75;
    color: var(--text-body);
    background: var(--bg);
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

/* ===== SCROLL PROGRESS LINE ===== */
.scroll-progress-line {
    position: fixed;
    top: 84px;
    right: 18px;
    width: 4px;
    height: calc(100vh - 110px);
    border-radius: 999px;
    background: rgba(178,45,59,0.14);
    border: 1px solid rgba(178,45,59,0.22);
    z-index: 1200;
    overflow: hidden;
    pointer-events: none;
}

.scroll-progress-line span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #ff8f98 0%, #c52739 45%, #8f1e2a 100%);
    box-shadow: 0 0 14px rgba(178,45,59,0.45);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.08s linear;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255, 233, 236, 0.9);
    border-bottom: 1px solid rgba(178,45,59,0.26);
    backdrop-filter: blur(10px);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
    box-shadow:
        0 0 14px rgba(178,45,59,0.16),
        0 0 28px rgba(178,45,59,0.1);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 54px;
}

.nav-brand {
    font-size: 1rem;
    font-weight: 650;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.nav-brand::before {
    content: "";
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background-image: url("images/me/dark knight.jpg");
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(201,168,76,0.45);
    box-shadow: 0 2px 8px rgba(0,0,0,0.14);
}

.nav-brand i {
    color: var(--gold);
    font-size: 0.7rem;
}

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

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.3rem 0.62rem;
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s, transform 0.2s;
}

.nav-menu a:hover {
    color: var(--accent-red-light);
    background: rgba(255,255,255,0.6);
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
    background: var(--ink);
    padding: 3.3rem 0 2.6rem;
    margin-top: 54px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10,12,18,0.78) 0%, rgba(10,12,18,0.6) 42%, rgba(10,12,18,0.4) 65%, rgba(10,12,18,0.62) 100%),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201,168,76,0.1) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,168,76,0.05) 0%, transparent 60%),
        url("images/me/fall-foliage-aerial-5120x2880-25382.jpg");
    background-size: auto, auto, auto, cover;
    background-position: center, center, center, center;
    background-repeat: no-repeat;
    pointer-events: none;
    filter: saturate(0.78) contrast(1.02);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 300px;
    align-items: center;
    gap: 3rem;
}

.hero-left {
    max-width: 640px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.1rem, 4.2vw, 3.15rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 0.6rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.25rem;
    letter-spacing: 0.01em;
}

.hero-description {
    font-size: 0.98rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 2.25rem;
    max-width: 460px;
}

.hero-buttons {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.hero-right {
    display: flex;
    flex-direction: column;
    width: 300px;
    justify-self: stretch;
    align-items: center;
    gap: 0.7rem;
    opacity: 1;
}


.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.7rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 14px rgba(201,168,76,0.24);
}

.hero-stat-books .hero-stat-number {
    font-size: 4.8rem;
    line-height: 0.9;
    text-shadow:
        0 0 16px rgba(201,168,76,0.34),
        0 0 32px rgba(201,168,76,0.2);
}

.hero-stat-books .hero-stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    color: rgba(255,255,255,0.76);
}

.hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
}

.hero-stat-featured .hero-stat-number {
    color: var(--gold-light);
    font-size: 5.3rem;
    text-shadow:
        0 0 22px rgba(201,168,76,0.62),
        0 0 46px rgba(201,168,76,0.48),
        0 0 74px rgba(201,168,76,0.34);
    line-height: 0.95;
    font-weight: 900;
    transform: scale(1.2);
    transform-origin: center;
    display: inline-block;
    animation: infinityPulse 1.9s ease-in-out infinite;
}

.hero-stat-featured .hero-stat-label {
    color: rgba(255,255,255,0.9);
    font-weight: 800;
    letter-spacing: 0.2em;
    font-size: 0.76rem;
}

@keyframes infinityPulse {
    0%,
    100% {
        transform: scale(1.2);
        opacity: 0.95;
    }
    50% {
        transform: scale(1.42);
        opacity: 1;
    }
}

.hero-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.1);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    font-family: inherit;
}

.btn-primary {
    background: var(--gold);
    color: var(--ink);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(201,168,76,0.4);
}

.btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.22);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.45);
}

.btn-secondary {
    background: var(--ink);
    color: #ffffff;
}

.btn-secondary:hover {
    background: var(--ink-light);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 0.55rem 1.1rem;
}

.btn-ghost:hover {
    background: var(--gold-pale);
    border-color: var(--gold);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #ffffff;
}

.btn-whatsapp:hover {
    background: #1ea952;
    transform: translateY(-1px);
}

.btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FF0000;
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: bold;
    box-shadow: var(--shadow);
    transition: background-color 0.3s;
}

.btn-youtube:hover {
    background-color: #CC0000;
}

.hero-youtube-button {
    margin-top: 1.1rem;
    width: 100%;
    justify-content: center;
}

.youtube-widget .sidebar-widget-text {
    margin: 0.85rem 0 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== SECTIONS ===== */
.section {
    padding: 3.3rem 0;
}

.section-alt {
    background: var(--bg-white);
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-red-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red-light), var(--gold));
    border-radius: 2px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 540px;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 3rem 0 1.4rem;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3.5rem;
    align-items: start;
}

/* ===== CATEGORY FILTERS ===== */
.blog-categories-nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    align-items: center;
}

.category-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.1rem;
    background: var(--bg-white);
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    font-family: inherit;
    line-height: 1.15;
    min-height: 38px;
    white-space: nowrap;
}

.category-filter i:not(.submenu-arrow) {
    font-size: 0.78rem;
}

.category-filter:hover {
    border-color: rgba(178,45,59,0.45);
    color: var(--accent-red-light);
    background: #ffedf0;
}

.category-filter.active {
    background: var(--ink);
    border-color: var(--ink);
    color: #ffffff;
}

.category-filter.active:hover {
    background: var(--ink-light);
    border-color: var(--ink-light);
    color: #ffffff;
}

/* ===== SUBMENU ===== */
.filter-group {
    position: relative;
    display: flex;
    align-items: center;
}

.has-submenu {
    gap: 0.6rem;
}

.submenu-arrow {
    font-size: 0.65rem !important;
    transition: transform 0.2s ease;
    margin-left: 0.1rem;
}

.category-filter.submenu-open .submenu-arrow,
.category-filter.active .submenu-arrow {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    min-width: 220px;
    z-index: 200;
    display: none;
    flex-direction: column;
    gap: 0.15rem;
}

.submenu.open {
    display: flex;
}

.submenu-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.9rem;
    background: transparent;
    border: none;
    border-radius: var(--radius);
    color: var(--text-body);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    text-align: left;
    width: 100%;
}

.submenu-item i {
    font-size: 0.8rem;
    color: var(--text-light);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    transition: color 0.15s;
}

.submenu-item:hover {
    background: var(--border-light);
    color: var(--ink);
}

.submenu-item:hover i {
    color: var(--gold);
}

.submenu-item.active {
    background: var(--gold-pale);
    color: var(--gold);
    font-weight: 600;
}

.submenu-item.active i {
    color: var(--gold);
}

/* Separador após "Todos em..." */
.submenu-item:first-child {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 0.25rem;
    padding-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ===== BLOG POSTS LIST ===== */
.blog-posts-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.blog-category-group {
    margin-bottom: 3rem;
}

.blog-category-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--text-light);
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.55rem;
}

.blog-category-title i {
    font-size: 0.75rem;
    color: var(--gold);
    opacity: 0.7;
}

.blog-cards-grid {
    display: flex;
    flex-direction: column;
}

/* ===== BLOG CARD ===== */
.blog-card-large {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.3rem 1.1rem;
    border: 1px solid rgba(20,24,36,0.07);
    border-bottom: 1px solid rgba(20,24,36,0.07);
    border-radius: 12px;
    margin: 0.35rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}

.blog-card-large:last-child {
    border-bottom: 1px solid rgba(20,24,36,0.07);
}

.blog-card-large:hover {
    background: linear-gradient(180deg, #fff8f9 0%, var(--accent-red-pale) 100%);
    border-color: rgba(178,45,59,0.42);
    box-shadow: 0 12px 26px rgba(143,30,42,0.14);
    transform: translateY(-1px);
}

.blog-card-large:hover .blog-card-title-large {
    color: var(--accent-red-light);
}

.blog-card-main {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.blog-category-badge {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--gold);
    padding: 0.22rem 0.65rem;
    border-radius: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid rgba(201,168,76,0.22);
}

.blog-sub-badge {
    display: inline-block;
    background: var(--border-light);
    color: var(--text-muted);
    padding: 0.22rem 0.65rem;
    border-radius: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--border);
}

.blog-date-large {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: var(--text-light);
}

.blog-card-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ink);
    transition: color 0.2s;
}

.blog-excerpt-large {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-arrow {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: color 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.blog-card-large:hover .blog-card-arrow {
    color: var(--accent-red-light);
    transform: translateX(4px);
}

.blog-link-large {
    display: none;
}

/* ===== SIDEBAR ===== */
.blog-sidebar {
    position: sticky;
    top: 48px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: -7rem;
}

.sidebar-widget {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.1rem;
    box-shadow: inset 0 2px 0 rgba(178,45,59,0.12);
}

.sidebar-widget-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1.1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.sidebar-author-img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-pale);
}

.sidebar-author-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
}

.sidebar-author-role {
    font-size: 0.74rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.sidebar-books {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-book {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.sidebar-book:hover {
    background: var(--border-light);
}

.sidebar-book-img {
    width: 42px;
    height: 58px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.sidebar-book-info {
    flex: 1;
    min-width: 0;
}

.sidebar-book-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.sidebar-book-cta {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 600;
}

/* ===== EMPTY STATES ===== */
.empty-state,
.empty-category {
    text-align: center;
    padding: 2.3rem 1.5rem;
    color: var(--text-muted);
}

.empty-state i,
.empty-category i {
    font-size: 2.75rem;
    color: var(--border);
    margin-bottom: 1.1rem;
    display: block;
}

.empty-state p,
.empty-category p {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.empty-state small,
.empty-category small {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===== BOOKS SECTION ===== */
.books-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.books-intro {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.books-intro-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.whatsapp-notice {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
}

.whatsapp-notice-icon {
    width: 46px;
    height: 46px;
    background: rgba(37,211,102,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--whatsapp);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.whatsapp-text h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.whatsapp-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
    line-height: 1.5;
}

.books-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: -5rem;
}

.book-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    transition: box-shadow 0.2s, transform 0.2s;
}

.book-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.book-image {
    width: 130px;
    flex-shrink: 0;
    background: var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem;
}

.book-image img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.book-content {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    flex: 1;
}

.book-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
}

.book-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0.4rem;
}

.book-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3.8rem;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 84px;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: block;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-top: -4.1rem;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.about-role {
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.mackenzie-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 1.1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: fit-content;
}

.mackenzie-badge img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.mackenzie-badge span {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-description {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-body);
}

.about-divider {
    width: 44px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    margin: 0.25rem 0;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--whatsapp);
    color: #ffffff;
    border-radius: var(--radius);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #1ea952;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37,211,102,0.38);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(120deg, #2c0f14 0%, #4f141d 52%, #7d1e2d 100%);
    color: rgba(255,255,255,0.55);
    padding: 2.75rem 0;
    border-top: 1px solid rgba(255,148,158,0.48);
    box-shadow: inset 0 1px 0 rgba(255,198,204,0.14);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer p {
    font-size: 0.875rem;
}

.footer-verse {
    font-style: italic;
    font-size: 0.82rem;
    color: rgba(201,168,76,0.65);
    max-width: 520px;
    text-align: right;
    line-height: 1.55;
}

.footer-verse i {
    margin-right: 0.35rem;
}

/* ===== FLOWMAP ===== */
.flowmap-deformation-wrapper {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.flowmap-deformation-wrapper canvas {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.flowmap-deformation-wrapper.active canvas {
    opacity: 0.3;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr 270px;
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .hero-youtube-mobile {
        display: inline-flex;
    }

    .hero-youtube-button {
        display: none;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .books-section-inner {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        position: static;
        max-width: 240px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.25rem;
    }

    .navbar .container {
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        gap: 0.5rem;
        padding: 0.7rem 0;
    }

    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
        width: 100%;
    }

    .nav-menu a {
        padding: 0.55rem 0.9rem;
        font-size: 0.84rem;
    }

    .hero {
        padding: 4rem 0 3.5rem;
    }

    .hero .container {
        padding-top: 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn,
    .hero-youtube-button {
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 4rem 0;
    }

    .blog-layout {
        gap: 1.75rem;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 0;
        position: static;
    }

    .blog-card-large {
        grid-template-columns: 1fr;
        padding: 1.25rem 1rem;
    }

    .blog-card-arrow {
        display: none;
    }

    .submenu {
        position: fixed;
        left: 1.25rem;
        right: 1.25rem;
        top: auto;
        width: auto;
        min-width: unset;
    }

    .book-card {
        flex-direction: column;
        gap: 1.25rem;
    }

    .books-grid {
        margin-top: 0;
    }

    .book-image {
        width: 100%;
        height: 220px;
    }

    .book-image img {
        height: 100%;
    }

    .sidebar-widget {
        padding: 1.4rem 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .about-image {
        position: static;
        max-width: 100%;
        top: auto;
    }

    .about-text {
        margin-top: 0;
    }

    .youtube-button {
        margin: 2rem 0;
    }

    .scroll-progress-line {
        display: none;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-verse {
        text-align: center;
    }
}
