:root {
    --primary: #15803D; /* Deep Bible Green */
    --gold: #D4AF37; /* Premium Metallic Gold */
    --gold-light: #FDE047;
    --gold-dark: #854D0E;
    --bg: #0C0A09;
    --surface: #1C1917;
    --border: #292524;
    --text: #F5F5F4;
    --text-muted: #A8A29E;
    --white: #FFFFFF;
    --red: #DC2626;
    --whatsapp: #25D366;
    
    /* Feature Card Accent Colors */
    --c-pink: #EC4899;
    --c-yellow: #EAB308;
    --c-green: #22C55E;
    --c-blue: #3B82F6;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 1.85rem;
    text-align: center;
    margin-bottom: 25px;
    color: var(--white);
}

/* 1. URGENCY BAR */
.urgency-bar {
    background-color: var(--red);
    color: var(--white);
    text-align: center;
    padding: 8px 10px; /* More compact */
    font-size: 0.75rem; /* Smaller text */
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.timer-highlight {
    background: #FFD700;
    color: #000;
    padding: 1px 6px;
    border-radius: 4px;
    margin-left: 4px;
    display: inline-block;
    font-weight: 800;
}

/* 2. HERO */
.hero {
    padding: 25px 0 40px; /* Reduced from 60px to 25px */
    text-align: center;
    background: radial-gradient(circle at top, #1C1917 0%, #0C0A09 100%);
}

.logo img {
    max-width: 120px; /* Smaller logo */
    height: auto;
    display: block;
    margin: 0 auto 25px; /* Added 25px gap at the bottom */
}

h1 {
    font-size: 1.75rem; /* Reduced from 2.1rem */
    margin-bottom: 12px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 0.9rem; /* Balanced size */
    margin-bottom: 30px;
    line-height: 1.5;
    padding: 0 10px;
}

.hero-video {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 30px;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--border);
    box-shadow: 0 25px 60px rgba(0,0,0,0.7);
    position: relative;
}

.video-placeholder {
    aspect-ratio: 9/16;
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 72px;
    height: 72px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: 0.3s;
}

.play-button:hover { transform: scale(1.1); }

.video-overlay-text {
    position: absolute;
    top: 20px;
    background: var(--red);
    color: white;
    padding: 8px 18px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.social-proof-text {
    font-size: 1rem;
    font-weight: 700;
    color: #C084FC;
    margin-bottom: 30px;
}

/* BUTTONS */
.btn-primary {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: white;
    padding: 18px; /* Reduced from 22px */
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.15rem; /* Reduced from 1.25rem */
    text-align: center;
    box-shadow: 0 5px 0 #14532D;
    transition: 0.1s;
}

.btn-primary:active {
    transform: translateY(3px);
    box-shadow: 0 3px 0 #14532D;
}

.microcopy {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* 4. BENEFITS */
.benefits {
    padding: 80px 0 40px;
}

.check-list {
    list-style: none;
}

.check-list li {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    font-weight: 600;
}

.check-list .icon {
    color: #22C55E;
    font-size: 1.4rem;
}

/* 5. FEATURES */
.features {
    padding: 60px 0;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-row {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.feature-row:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
}

.card-pink:before { background: var(--c-pink); }
.card-yellow:before { background: var(--c-yellow); }
.card-green:before { background: var(--c-green); }
.card-blue:before { background: var(--c-blue); }

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.feature-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.feature-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 6. COMPARISON */
.comparison {
    padding: 60px 0;
}

.table-container {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 15px;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 15px 10px;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

th {
    color: var(--text-muted);
    font-weight: 800;
    text-transform: uppercase;
}

th.highlight {
    color: #22C55E;
}

td.success {
    color: #22C55E;
    font-weight: 800;
}

.arrow-down {
    text-align: center;
    font-size: 2rem;
    color: var(--border);
    margin-top: 25px;
}

/* 7. PREVIEW */
.preview {
    padding: 80px 0;
}

.preview-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
    margin-top: -15px;
    padding: 0 10px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.preview-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 15px;
    text-align: center;
}

.preview-img {
    width: 100%;
    background: transparent;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
}

.preview-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.preview-card:hover .preview-img img {
    transform: scale(1.1);
}

.preview-card h3 {
    font-size: 0.9rem;
    color: var(--gold);
}

.preview-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* 8. JOURNEY */
.journey {
    padding: 60px 0;
}

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.journey-step {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-circle {
    width: 44px;
    height: 44px;
    background: #8B5CF6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.step-text h3 {
    font-size: 1.1rem;
}

.step-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 9. BONUS */
.bonus {
    padding: 60px 0;
}

.bonus-wrapper {
    background: rgba(34, 197, 94, 0.05);
    border: 2px dashed var(--c-green);
    border-radius: 28px;
    padding: 40px 20px;
}

.bonus-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bonus-card {
    background: var(--surface);
    border: 1px solid var(--border); /* Subtle border */
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
}

.bonus-card:hover {
    border-color: var(--gold); /* Highlight on hover */
}

.bonus-img, .bonus-img-render {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bonus-img-render img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border: 1px solid var(--gold); /* Border directly on the image */
    border-radius: 12px;
}

/* 11. WARRANTY */
.warranty {
    padding: 60px 0;
}

.warranty-badge {
    background: linear-gradient(135deg, #450A0A 0%, #7F1D1D 100%);
    color: #FEE2E2;
    padding: 40px 25px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #991B1B;
}

.warranty-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    color: var(--gold);
}

/* 12. PRICING */
.pricing {
    padding: 80px 0;
}

.pricing-grid-tiered {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scarcity-card {
    background: #FF4444;
    color: white;
    padding: 15px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(255, 68, 68, 0.2);
    text-transform: uppercase;
}

.pricing-card-basic, .pricing-card-final {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 32px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.card-body {
    padding: 30px 25px 40px;
}

.timer-card {
    background: white;
    color: #FF4444;
    padding: 2px 10px;
    border-radius: 6px;
    margin-left: 8px;
    font-size: 1.1rem;
}

.social-proof-tag-inline {
    font-size: 0.75rem;
    font-weight: 700;
    color: #FFA500;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 165, 0, 0.05);
    padding: 8px;
    border-radius: 10px;
}

.pricing-card-final.featured {
    border: 3px solid var(--gold);
    box-shadow: 0 35px 80px rgba(0,0,0,0.8);
}

.ribbon-pricing {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    color: #000;
    padding: 8px 30px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.offer-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.old-price {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.strike { text-decoration: line-through; color: var(--red); }

.price-value-basic, .price-value-basic strong {
    font-size: 2.5rem; /* Reduced */
    font-weight: 900;
    color: var(--text);
    margin: 10px 0;
    line-height: 1;
}

.price-value, .price-value strong {
    font-size: 3.8rem; /* Reduced from 4.5rem */
    font-weight: 900;
    color: var(--gold);
    margin: 10px 0;
    line-height: 1;
    letter-spacing: -2px;
}

.price-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.offer-list {
    text-align: left;
    list-style: none;
    margin: 30px 0;
}

.offer-list li {
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

.offer-list li:before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    font-size: 1.1rem;
}

.offer-list li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.offer-list li.disabled:before {
    content: '\f057';
    color: var(--text-muted);
}

.btn-buy-basic, .btn-buy {
    display: block;
    width: 100%;
    padding: 20px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    text-align: center;
    transition: 0.2s;
}

.btn-buy-basic {
    border: 2px solid var(--border);
    color: var(--text);
}

.btn-buy {
    background: var(--gold);
    color: white; /* Changed from #000 */
    box-shadow: 0 6px 0 var(--gold-dark);
}

.checkout-secure {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #22C55E;
    font-weight: 700;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 1.8rem;
    opacity: 0.6;
    color: var(--text-muted);
}

/* 13. DELIVERY */
.delivery {
    padding: 40px 0;
}

.delivery-card {
    background: rgba(34, 197, 94, 0.05);
    border: 2px solid #22C55E;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.delivery-icon {
    font-size: 2.5rem;
    color: #22C55E;
}

/* 14. FAQ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
}

.faq-q {
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    cursor: pointer;
}

.faq-a {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 12px;
    display: none;
}

.faq-item.active .faq-a {
    display: block;
}

.faq-item.active .faq-q i {
    transform: rotate(180deg);
}

.faq-q i {
    transition: transform 0.3s ease;
}

.whatsapp-footer {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 60px;
}

.btn-whatsapp {
    background: #16A34A;
    color: white;
    padding: 18px 35px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
}

/* RESPONSIVE REFINEMENTS */
@media (max-width: 360px) {
    h1 { font-size: 1.7rem; }
    .section-title { font-size: 1.5rem; }
    .price-value { font-size: 3.5rem; }
    .price-value-basic { font-size: 2.5rem; }
    .preview-grid { grid-template-columns: 1fr; } /* Single column on very small phones */
    .bonus-card { padding: 15px; }
    .check-list li { font-size: 0.9rem; padding: 15px; }
}

@media (min-width: 768px) {
    .container {
        max-width: 800px; /* Expand a bit for tablets/desktop if needed */
    }
    
    .pricing-grid-tiered {
        flex-direction: row;
        align-items: stretch;
        gap: 20px;
    }
    
    .pricing-card-basic, .pricing-card-final {
        flex: 1;
    }

    .preview-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on larger screens */
    }
    
    .bonus-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* FIX: Ensure table doesn't overflow */
.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-spacing: 0;
}

/* FIX: Sticky Bar improvement */
.urgency-bar p {
    margin: 0;
    font-size: 0.8rem;
}

/* 15. SALE NOTIFICATION */
.sale-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    color: #333;
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 9999;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 5px solid #22C55E;
    max-width: 320px;
}

.sale-notification.active {
    transform: translateX(0);
}

.sale-icon {
    width: 40px;
    height: 40px;
    background: #22C55E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.sale-content p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 2px;
}

.sale-content strong {
    font-size: 0.85rem;
    color: #111;
    display: block;
}

@media (max-width: 480px) {
    .sale-notification {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
    }
}

/* 16. MODAL UPSELL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: var(--surface);
    border: 1px solid var(--gold);
    border-radius: 32px;
    padding: 40px 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: modalIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-badge {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.modal-card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--white);
}

.modal-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.green-text {
    color: #22C55E;
    font-weight: 800;
}

.modal-price-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 20px;
    border: 1px dashed var(--border);
    margin-bottom: 25px;
}

.new-price-modal {
    font-size: 2rem;
    color: #22C55E;
    font-weight: 900;
    margin: 5px 0;
}

.save-text {
    font-size: 0.85rem;
    color: #EF4444;
    font-weight: 700;
}

.modal-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.modal-features li {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-features li i {
    color: #22C55E;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-modal-no {
    color: var(--text-muted);
    text-decoration: underline;
    font-size: 0.85rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

/* Responsividade do Modal */
@media (max-width: 480px) {
    .modal-card {
        padding: 25px 20px;
        border-radius: 24px;
    }

    .modal-badge {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .modal-card h2 {
        font-size: 1.4rem;
    }

    .modal-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .modal-price-box {
        padding: 15px;
        margin-bottom: 20px;
    }

    .new-price-modal {
        font-size: 1.6rem;
    }

    .modal-features {
        margin-bottom: 20px;
    }

    .modal-features li {
        font-size: 0.8rem;
    }
}

/* 17. TESTIMONIALS (WHATSAPP STYLE) */
.testimonials {
    padding: 60px 0;
    background: #0C0A09;
    overflow: hidden;
}

.whatsapp-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 20px 40px; /* More bottom padding for shadows */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}

.whatsapp-card {
    flex: 0 0 300px; /* Prevent shrinking */
    background: #e5ddd5;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    padding: 20px;
    border-radius: 20px;
    scroll-snap-align: start;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    filter: brightness(1.02) contrast(0.98) saturate(1.05);
}

/* Watermark */
.whatsapp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/logo.png');
    background-size: 60px;
    background-repeat: repeat;
    opacity: 0.04; /* Very subtle */
    pointer-events: none;
    z-index: 0;
}

.chat-header {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.chat-msg {
    max-width: 82%; /* Slightly smaller for more 'whatsapp' feel */
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.82rem;
    line-height: 1.4;
    margin-bottom: 12px;
    position: relative;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.client-msg {
    background: white;
    color: #333;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.support-msg {
    background: #dcf8c6;
    color: #333;
    align-self: flex-end;
    margin-left: auto; /* Force to right */
    border-top-right-radius: 0;
}

.chat-time {
    display: block;
    text-align: right;
    font-size: 0.65rem;
    color: #999;
    margin-top: 5px;
}

.support-msg .chat-time i {
    color: #34b7f1; /* WA blue ticks */
}

.scroll-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 20px;
}

/* 18. SOBRE O AUTOR */
.author {
    padding: 80px 0;
    background: radial-gradient(circle at bottom, #1C1917 0%, #0C0A09 100%);
}

.author-card {
    background: var(--surface);
    border: 1px solid var(--gold);
    border-radius: 32px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.author-name {
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.author-title {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 40px;
}

.author-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 10px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 900;
    color: #22C55E;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
    font-style: italic;
    margin-bottom: 40px;
    padding: 0 20px;
}

.author-img-container {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    border: 3px solid var(--gold);
    padding: 5px;
    background: var(--surface);
}

.author-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 480px) {
    .author-stats {
        grid-template-columns: 1fr;
    }
    .author-name {
        font-size: 1.8rem;
    }
}

/* 19. MAP CATALOG SCROLL */
.map-catalog {
    padding: 40px 0;
    background: #0C0A09;
}

.catalog-subtitle {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.catalog-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 20px 30px; /* Better padding for shadows */
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.catalog-scroll::-webkit-scrollbar {
    display: none;
}

.catalog-item {
    flex: 0 0 220px; /* Prevent shrinking */
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    scroll-snap-align: start;
    transition: 0.3s;
}

.catalog-item:hover {
    border-color: var(--gold);
}

.catalog-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.catalog-item h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.catalog-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}
