@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700;800;900&display=swap');

:root {
    /* Rainha Color Palette — Carmesim Profundo */
    --primary-purple: #8B0000;   /* Vermelho Carmesim */
    --primary-purple-light: #B22222;
    --sage-green: #8B0000;       /* Carmesim — principal */
    --sage-green-dark: #4A0404;  /* Profundidade carmesim */
    --gold: #8B0000;             /* Carmesim — Botões */
    --gold-dark: #4A0404;        /* Hover carmesim */
    --background-white: #ffffff;
    --background-soft: #f8f4f4;
    --text-dark: #1a0a0a;
    --text-muted: #6b4a4a;
    --border-color: #f0e0e0;

    /* Typography — Rainha */
    --font-logo: 'Playfair Display', Georgia, serif;
    --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-size-base: 18px;
    --font-size-heading: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #f0ece6;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    height: 60px;
    background: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    overflow: visible;
}

.logo {
    font-family: var(--font-logo);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 2px;
    /* Rubi Carmesim — seda vermelha profínda */
    background: linear-gradient(
        160deg,
        #ff6b6b 0%,
        #c0392b 15%,
        #ff8a80 30%,
        #8B0000 48%,
        #e53935 63%,
        #4A0404 76%,
        #c62828 88%,
        #8B0000 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-stroke: 0.5px rgba(74, 4, 4, 0.4);
    filter: drop-shadow(0 1px 0px rgba(139, 0, 0, 0.7))
            drop-shadow(0 2px 6px rgba(139, 0, 0, 0.45))
            drop-shadow(0 0 12px rgba(200, 0, 0, 0.2));
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: filter 0.25s ease, transform 0.25s ease;
}

.logo:hover {
    filter: drop-shadow(0 1px 0px rgba(139, 0, 0, 0.9))
            drop-shadow(0 3px 10px rgba(180, 0, 0, 0.65))
            drop-shadow(0 0 18px rgba(220, 30, 30, 0.4));
    transform: scale(1.015);
}

.search-container {
    flex: 0 1 500px;
}

.search-bar {
    width: 100%;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: #f1f1f1;
    font-size: 16px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-bar:focus {
    box-shadow: 0 0 0 2px rgba(132, 169, 140, 0.2);
    background: white;
    border-color: var(--sage-green);
}

.clube-btn {
    background-color: #ffffff;
    color: #000000;
    padding: 10px 24px;
    border-radius: 8px;
    border: 2px solid var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.clube-btn:hover {
    background-color: #fdf8f0;
    border-color: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.22);
}

/* 3-Column Layout Grid */
.layout-container {
    display: grid;
    grid-template-columns: 280px 1fr 300px;
    gap: 32px;
    padding: 92px 40px 40px;
    /* 60px header + 32px padding */
    min-height: 100vh;
    max-width: 1600px;
    margin: 0 auto;
}

/* Sidebar & Panels Styles */
.sidebar,
.right-panel {
    position: sticky;
    top: 92px;
    height: calc(100vh - 132px);
    overflow-y: auto;
}

.sidebar-nav {
    list-style: none;
}

/* Icon Reliability Fix */
.ph {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    color: #333;
    /* Default solid black-ish */
}

.sidebar-link i {
    color: #000 !important;
}

.sidebar-item {
    margin-bottom: 4px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 12px;
    transition: background 0.2s;
}

.sidebar-link:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Active state — item selecionado no menu (sem cor especial) */
.sidebar-link--active {
    background: rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

.sidebar-link--active:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Clean Black Line Icons */
.sidebar-link svg {
    width: 22px;
    height: 22px;
    stroke: black;
    stroke-width: 2;
    fill: none;
}

/* Main Content Area */
.main-content {
    min-width: 0;
    /* Prevents overflow in grid */
}

/* Apple Aesthetic Cards */
.recipe-card,
.info-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    padding: 48px;
    margin-bottom: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
}

.info-card {
    padding: 24px;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--sage-green);
}

.info-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.info-link {
    color: var(--sage-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* Recipe & News Card Premium Styling */
.recipe-title,
.news-title {
    color: #374151;
    font-size: var(--font-size-heading);
    margin-bottom: 32px;
    font-weight: 700;
    text-align: center;
}

.nossa-cozinha-box {
    background: #fdfdfd;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 40px;
    border: 1px solid #f0f0f0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.01);
}

.section-title {
    font-size: 18px;
    color: #374151;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

/* ── Recipe Summary (Sumário da Coleção) ─────────────────────────────────── */
.recipe-summary-grid {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0;
    padding: 0;
}

.summary-item {
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

/* All items look identical — uniform active links */
.summary-link {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding: 10px 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    width: 100%;
}

.summary-link:hover {
    background: rgba(132, 169, 140, 0.07);
    color: var(--sage-green-dark);
}

.summary-num {
    font-weight: 700;
    font-size: 11px;
    color: var(--text-muted);
    min-width: 26px;
    flex-shrink: 0;
}

@media (max-width: 680px) {
    .recipe-summary-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Locked Recipe Engagement Card ──────────────────────────────────────── */
.locked-card {
    background: #f5f7f9;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 36px;
    text-align: center;
    margin-top: 8px;
}

.locked-card__icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.locked-card__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 16px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.locked-card__text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.locked-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: #ffffff;
    color: #000000;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid var(--gold);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.locked-card__btn:hover {
    background: #fdf8f0;
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.28);
}


.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 17px;
}

.check-item-icon {
    color: var(--gold);
    font-weight: bold;
}

.preparo-section h3 {
    text-align: center;
    margin-bottom: 32px;
    color: var(--gold);
}

.preparo-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-card {
    padding: 20px 24px;
    background: #fff;
    border-radius: 12px;
}

.step-text {
    font-size: 18px;
    color: #334155;
}

.step-text strong {
    color: var(--gold);
}

/* ── Destaque card — última notícia de Manipulação ─────────────────────── */
.news-card--destaque {
    border: 2px solid #8B0000 !important;
    box-shadow: 0 0 0 4px rgba(139,0,0,0.12), 0 8px 28px rgba(74,4,4,0.22) !important;
    position: relative;
    overflow: visible !important;
}

.news-card--destaque::before {
    content: '♥ EM DESTAQUE';
    position: absolute;
    top: -14px;
    left: 24px;
    background: linear-gradient(90deg, #4A0404, #8B0000, #c62828, #8B0000, #4A0404);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    padding: 4px 16px;
    border-radius: 99px;
    z-index: 10;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(139,0,0,0.45);
}

.news-card--destaque .news-header-title {
    background: linear-gradient(135deg, #4A0404 0%, #8B0000 40%, #e53935 70%, #8B0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* ── Modal Veludo Carmesim — Paywall de Contéudo ────────────────────── */
.velvet-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 0, 0, 0.72);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.velvet-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.velvet-modal-box {
    background: linear-gradient(160deg, #1a0a0a 0%, #2d0808 50%, #1a0505 100%);
    border: 1px solid rgba(139,0,0,0.6);
    border-radius: 24px;
    padding: 52px 48px 44px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 0 1px rgba(200,0,0,0.15),
                0 24px 64px rgba(0,0,0,0.6),
                inset 0 1px 0 rgba(255,80,80,0.08);
    animation: velvetRise 0.55s cubic-bezier(0.23,1,0.32,1) forwards;
}

@keyframes velvetRise {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.velvet-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    color: rgba(255,120,120,0.5);
    font-size: 22px;
    cursor: pointer;
    transition: color 0.2s;
    font-family: var(--font-logo);
}

.velvet-modal-close:hover { color: rgba(255,80,80,0.9); }

.velvet-modal-icon {
    font-size: 44px;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 12px rgba(220,0,0,0.6));
}

.velvet-modal-title {
    font-family: var(--font-logo);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ff8a80 0%, #e53935 50%, #ff8a80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.velvet-modal-text {
    font-size: 15px;
    color: rgba(255,200,200,0.75);
    line-height: 1.75;
    margin-bottom: 32px;
}

.velvet-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    background: linear-gradient(135deg, #8B0000, #c62828, #8B0000);
    color: #fff;
    font-family: var(--font-logo);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: box-shadow 0.25s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(139,0,0,0.5);
    width: 100%;
}

.velvet-modal-btn:hover {
    box-shadow: 0 8px 28px rgba(180,0,0,0.7);
    transform: translateY(-2px);
}

.velvet-modal-subtext {
    font-size: 12px;
    color: rgba(255,150,150,0.4);
    margin-top: 16px;
}

/* News Feed Specific Styles */
.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.news-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background: #eee;
}

.news-content {
    padding: 40px;
}

.news-category {
    display: inline-block;
    padding: 6px 12px;
    background: #fdf8f0;
    color: var(--gold-dark);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    margin-bottom: 16px;
    border: 1px solid rgba(197,160,89,0.25);
}

.news-header-title {
    font-size: 28px;
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.3;
}

/* Voting Poll Style */
.voting-poll {
    background: #fdf8f0;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--sage-green);
    margin-bottom: 24px;
}

.voting-poll h3 {
    color: var(--sage-green-dark);
    font-size: 18px;
    margin-bottom: 12px;
}

.voting-option {
    display: block;
    padding: 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
}

.voting-option {
    padding: 16px 24px;
    background: #fffaf2;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
}

.voting-option:hover {
    border-color: var(--sage-green);
    background: #fdf8f0;
    transform: scale(1.02);
    color: var(--sage-green-dark);
}

/* Voting Buttons — Modal (Dourado) */
.vote-btn {
    display: block;
    width: 100%;
    padding: 13px 20px;
    background: #fffaf2;
    border: 2px solid #e8d4a8;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    color: var(--sage-green-dark);
    text-align: left;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.vote-btn:hover {
    background: var(--sage-green);
    border-color: var(--sage-green);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(132, 169, 140, 0.3);
}

/* Banner Fechamento */
.promo-banner {
    background: #fdf8f0;
    border: 1px solid var(--sage-green);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 48px;
}

.promo-banner h2 {
    color: var(--sage-green-dark);
    margin-bottom: 16px;
}

.promo-btn {
    background-color: #ffffff;
    color: #000000;
    padding: 14px 40px;
    border-radius: 8px;
    border: 2px solid var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    transition: all 0.2s;
}

.promo-btn:hover {
    background-color: #fdf8f0;
    border-color: var(--gold-dark);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.28);
}

/* Page Transitions (Slide Effect) */
.slide-container {
    position: relative;
    width: 100%;
}

.slide-out-left {
    position: absolute;
    width: 100%;
    transform: translateX(-100px);
    opacity: 0;
}

.slide-in-right {
    animation: slideInCustom 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInCustom {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Content column: paper-unroll entrance (matches modal physics) */
@keyframes unrollContent {
    0% {
        opacity: 0;
        transform: perspective(1200px) rotateX(-20deg) scaleY(0);
    }

    100% {
        opacity: 1;
        transform: perspective(1200px) rotateX(0deg) scaleY(1);
    }
}

.content-unroll {
    transform-origin: top center;
    animation: unrollContent 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* ── Keyframe: Paper Scroll Unrolling from Top ── */
@keyframes unrollPaper {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateX(-30deg) scaleY(0);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }

    100% {
        opacity: 1;
        transform: perspective(1000px) rotateX(0deg) scaleY(1);
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
    }
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: flex-start;
    /* Paper drops from near the top */
    padding-top: 80px;
    /* Below the fixed header */
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* Modal Container — compact "paper" card */
.modal-container {
    background: #ffffff;
    padding: 36px 40px 32px;
    border-radius: 20px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    position: relative;
    transform-origin: top center;

    /* Initial (hidden) state — will be overridden by animation */
    opacity: 0;
    transform: perspective(1000px) rotateX(-30deg) scaleY(0);
}

/* When .active is added → trigger the unroll animation */
.modal-overlay.active .modal-container {
    animation: unrollPaper 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
}

/* Advertising Showcase Styles — Carrossel dos Livros */
.ad-showcase {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.ad-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.52);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    pointer-events: none;
    z-index: 2;
}

.ad-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #fdf8f0;
}

.ad-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.ad-fade-in {
    animation: adFadeIn 0.55s ease forwards;
}

@keyframes adFadeIn {
    from { opacity: 0; transform: scale(1.04); }
    to   { opacity: 1; transform: scale(1); }
}

.ad-content {
    padding: 20px 20px 18px;
    text-align: center;
}

.ad-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.ad-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.ad-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    background: #ffffff;
    color: #000000;
    border: 2px solid var(--gold);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.ad-btn:hover {
    background: #fdf8f0;
    border-color: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(197, 160, 89, 0.30);
}

/* Dots navigation */
.ad-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
}

.ad-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e8d4a8;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    flex-shrink: 0;
}

.ad-dot.active {
    background: var(--sage-green);
    transform: scale(1.35);
}

.ad-dot:hover:not(.active) {
    background: var(--sage-green-dark);
    opacity: 0.6;
}


/* Scrollbar styling for a clean look */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

/* ── Remove browser focus outline from card anchor links ─────────────────── */
a:focus {
    outline: none;
}
a:focus-visible {
    outline: 2px solid var(--sage-green);
    outline-offset: 2px;
}

/* ── Search Dropdown ─────────────────────────────────────────────────────── */
#search-dropdown {
    display: none;
    position: fixed;
    top: 66px;
    width: 480px;
    max-width: calc(100vw - 40px);
    background: #ffffff;
    border: 1px solid #e8d4a8;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 9999;
    overflow: hidden;
    max-height: 420px;
    overflow-y: auto;
}

#search-dropdown.search-dropdown--visivel {
    display: block;
}

.search-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f5f0e8;
    transition: background 0.15s;
}

.search-dropdown-item:last-child {
    border-bottom: none;
}

.search-dropdown-item:hover,
.search-dropdown-item--ativo {
    background: #fdf8f0;
}

.search-item-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.search-item-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.search-item-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-item-label mark {
    background: #fff3cd;
    color: var(--sage-green-dark);
    border-radius: 3px;
    padding: 0 2px;
    font-weight: 800;
}

.search-item-sub {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.search-item-tipo {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--sage-green);
    flex-shrink: 0;
    background: #fdf8f0;
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid #e8d4a8;
}

/* ── Books Showcase Vitrine ─────────────────────────────────────────────────── */
.books-showcase {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.book-showcase-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 20px 24px;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.18s;
    font-family: var(--font-body);
}

.book-showcase-btn:hover {
    border-color: var(--sage-green);
    box-shadow: 0 6px 24px rgba(132, 169, 140, 0.18);
    transform: translateY(-2px);
}

.book-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 48px;
    text-align: center;
}

.book-info {
    flex: 1;
    min-width: 0;
}

.book-num {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--sage-green);
    margin-bottom: 2px;
}

.book-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 4px;
}

.book-meta {
    font-size: 13px;
    color: var(--text-muted);
}

/* ── Next Recipe Button (Sage Green) ────────────────────────────────────────── */
.next-recipe-btn {
    background-color: var(--sage-green) !important;
    color: #fff !important;
    font-weight: 700;
    transition: background-color 0.2s, transform 0.18s, box-shadow 0.2s;
}

.next-recipe-btn:hover {
    background-color: var(--sage-green-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(132, 169, 140, 0.35);
}

/* ══════════════════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVENESS — SeniorHub
   Breakpoints: ≤ 768px (tablet/phone) and ≤ 480px (small phone)
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Hamburger Button (hidden on desktop) ────────────────────────────────── */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 10px;
    flex-shrink: 0;
    transition: background 0.2s;
}

.hamburger-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Sidebar Overlay (mobile tap-to-close) ───────────────────────────────── */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(2px);
    z-index: 1400;
    transition: opacity 0.3s;
}

.sidebar-overlay--visible {
    display: block;
}

/* ── Fluid Images (always applied, not just mobile) ─────────────────────── */
.news-image,
.ad-image,
img {
    max-width: 100%;
    height: auto;
}

/* Keep .news-image fixed height on desktop only — override below on mobile */
.news-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* ══════════════════════════════════════════════════════════════════════════════
   ≤ 768px — TABLET / PHONE BREAKPOINT
   ══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── 1. Viewport & prevent horizontal scroll ─────────────────────────── */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* ── 2. Header — compact for mobile ─────────────────────────────────── */
    .header {
        padding: 0 16px;
        gap: 10px;
    }

    .hamburger-btn {
        display: flex;
    }

    .search-container {
        flex: 1 1 0;
        min-width: 0;
    }

    .search-bar {
        padding: 10px 14px;
        font-size: 15px;
    }

    .clube-btn {
        display: none; /* Hidden on mobile — use sidebar for navigation */
    }

    /* ── 3. Layout — stack to single column ─────────────────────────────── */
    .layout-container {
        display: flex;
        flex-direction: column;
        padding: 76px 20px 32px; /* 60px header + 16px gap, 20px side padding */
        gap: 0;
    }

    /* ── 4. Sidebar — off-canvas drawer ─────────────────────────────────── */
    .sidebar {
        position: fixed;
        top: 60px;
        left: -300px;
        width: 280px;
        height: calc(100vh - 60px);
        background: var(--background-white);
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
        z-index: 1500;
        overflow-y: auto;
        padding: 20px 16px;
        transition: left 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .sidebar.sidebar-open {
        left: 0;
    }

    /* ── 5. Sidebar links — 44px touch targets ───────────────────────────── */
    .sidebar-link {
        padding: 14px 16px;
        min-height: 44px;
        font-size: 17px;
    }

    /* ── 6. Right panel — shown below main content ───────────────────────── */
    .right-panel {
        position: static;
        height: auto;
        overflow: visible;
        margin-top: 24px;
    }

    /* ── 7. Main content full width ──────────────────────────────────────── */
    .main-content {
        width: 100%;
    }

    /* ── 8. News image — shorter on mobile ───────────────────────────────── */
    .news-image {
        height: 220px;
    }

    /* ── 9. News content padding ─────────────────────────────────────────── */
    .news-content {
        padding: 24px 20px;
    }

    /* ── 10. Recipe / Info cards ─────────────────────────────────────────── */
    .recipe-card,
    .info-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    /* ── 11. nossa-cozinha-box — single column ───────────────────────────── */
    .nossa-cozinha-box {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px;
    }

    /* ── 12. Recipe summary grid — single column ─────────────────────────── */
    .recipe-summary-grid {
        grid-template-columns: 1fr;
    }

    /* ── 13. Summary links — 44px touch target ───────────────────────────── */
    .summary-link {
        padding: 12px 14px;
        min-height: 44px;
    }

    /* ── 14. Book showcase buttons — full width, 44px min-height ─────────── */
    .book-showcase-btn {
        padding: 16px 18px;
        min-height: 44px;
    }

    /* ── 15. Book showcase — single column ───────────────────────────────── */
    .books-showcase {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* ── 16. Promo banner ────────────────────────────────────────────────── */
    .promo-banner {
        padding: 28px 20px;
    }

    /* ── 17. Locked card ─────────────────────────────────────────────────── */
    .locked-card {
        padding: 28px 20px;
    }

    /* ── 18. Voting poll options — 44px touch target ─────────────────────── */
    .voting-option,
    .vote-btn {
        min-height: 44px;
        padding: 13px 16px;
    }

    /* ── 19. Buttons — 44px min touch target (global) ────────────────────── */
    button,
    .clube-btn,
    .promo-btn,
    .locked-card__btn,
    .ad-btn,
    .info-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* ── 19b. CTA buttons — near full-width on mobile ────────────────────── */
    .clube-btn,
    .promo-btn,
    .locked-card__btn {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    /* ── 20. News header title ───────────────────────────────────────────── */
    .news-header-title {
        font-size: 22px;
    }

    /* ── 21. Ad showcase image — proportional height ─────────────────────── */
    .ad-image-wrapper {
        height: 200px;
    }

    /* ── 22. Modal — avoid overflow on mobile ────────────────────────────── */
    .modal-overlay {
        padding-top: 70px;
        padding-left: 16px;
        padding-right: 16px;
        align-items: flex-start;
    }

    .modal-container {
        width: 100%;
        padding: 28px 20px 24px;
    }

    /* ── 23. Step cards ──────────────────────────────────────────────────── */
    .step-card {
        padding: 16px 18px;
    }
}

/* ══════════════════════════════════════════════════════════════════════════════
   ≤ 480px — SMALL PHONE BREAKPOINT
   ══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

    /* Keep Clube button hidden on small phones — accessible via hamburger menu */

    .logo {
        font-size: 19px;
    }

    .news-image {
        height: 180px;
    }

    .news-content {
        padding: 18px 16px;
    }

    .layout-container {
        padding: 76px 16px 24px;
    }

    .recipe-card,
    .info-card {
        padding: 20px 16px;
    }

    .nossa-cozinha-box {
        padding: 16px;
    }
}
/* ══════════════════════════════════════════════════════════════════════════════
   LOGIN BUTTON + SIDEBAR
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Botão "Login" no header ────────────────────────────────────────────────── */
.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    background: #ffffff;
    border: 1.5px solid var(--sage-green);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--sage-green-dark);
    cursor: pointer;
    font-family: var(--font-body);
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, box-shadow .2s, transform .18s;
}
.login-btn:hover {
    background: #fdf8f0;
    box-shadow: 0 3px 12px rgba(197,160,89,.25);
    transform: translateY(-1px);
}
.login-btn svg { color: var(--sage-green); }

/* Logado: mostra avatar */
.login-btn--logged {
    padding: 5px 14px 5px 5px;
    background: #fdf8f0;
}
.login-btn-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sage-green);
}

/* ── Overlay escuro ─────────────────────────────────────────────────────────── */
#login-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0);
    z-index: 3000;
    transition: background .3s;
}
#login-overlay.lsb-overlay--open {
    display: block;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(3px);
}

/* ── Painel Sidebar ─────────────────────────────────────────────────────────── */
#login-sidebar {
    position: fixed;
    top: 0;
    right: -380px;
    width: 340px;
    max-width: 92vw;
    height: 100vh;
    background: #ffffff;
    box-shadow: -6px 0 36px rgba(0,0,0,0.14);
    z-index: 3100;
    display: flex;
    flex-direction: column;
    transition: right .3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
#login-sidebar.lsb--open {
    right: 0;
}

/* ── Header da sidebar ──────────────────────────────────────────────────────── */
.lsb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 16px;
    border-bottom: 1px solid #f0e8d4;
    background: #fdf8f0;
    flex-shrink: 0;
}
.lsb-titulo {
    font-size: 16px;
    font-weight: 800;
    color: var(--sage-green-dark);
}
.lsb-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.07);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    line-height: 1;
    transition: background .2s;
}
.lsb-close:hover { background: rgba(0,0,0,0.14); }

/* ── Seções ─────────────────────────────────────────────────────────────────── */
.lsb-section {
    padding: 24px 20px;
}
.lsb-section--user {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* ── Ícone placeholder (não logado) ─────────────────────────────────────────── */
.lsb-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fdf8f0;
    border: 2px solid var(--sage-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.lsb-bemvindo {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.55;
    margin-bottom: 20px;
}

/* ── Botão Google ───────────────────────────────────────────────────────────── */
.lsb-google-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 13px 16px;
    background: #fff;
    border: 1.5px solid #dadce0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #3c4043;
    cursor: pointer;
    font-family: var(--font-body);
    transition: box-shadow .2s, background .2s;
    box-sizing: border-box;
}
.lsb-google-btn:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.13);
    background: #f8f9fa;
}

/* ── Divider "ou" ───────────────────────────────────────────────────────────── */
.lsb-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
}
.lsb-divider::before,
.lsb-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #f0e8d4;
}

/* ── Labels e textos ────────────────────────────────────────────────────────── */
.lsb-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--sage-green-dark);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}
.lsb-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.lsb-fine {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
}

/* ── Botão Assinar Clube ────────────────────────────────────────────────────── */
.lsb-clube-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--sage-green);
    color: #fff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: background .2s, transform .18s;
    box-sizing: border-box;
}
.lsb-clube-btn:hover {
    background: var(--sage-green-dark);
    transform: translateY(-1px);
}

/* ── Avatar (logado) ────────────────────────────────────────────────────────── */
.lsb-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--sage-green);
    flex-shrink: 0;
}
.lsb-nome {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.lsb-email {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
    word-break: break-all;
}
.lsb-badge {
    display: inline-block;
    background: var(--sage-green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
}

/* ── Benefícios ─────────────────────────────────────────────────────────────── */
.lsb-beneficios {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lsb-beneficio {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Botão Logout ───────────────────────────────────────────────────────────── */
.lsb-logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background .2s, color .2s, border-color .2s;
}
.lsb-logout-btn:hover {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fca5a5;
}

/* ── Mobile ─────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .login-btn span { display: none; }
    #login-sidebar { width: 100%; max-width: 100vw; right: -100%; }
    #login-sidebar.lsb--open { right: 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   GUIAS — Biblioteca de Guias Práticos
   ═══════════════════════════════════════════════════════════════════════════ */

.guias-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ── Card base ─────────────────────────────────────────────────────────── */
.guia-card {
    background: #fff;
    border: 1px solid #f0e8d4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.25s, transform 0.25s;
}

.guia-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
    transform: translateY(-3px);
}

/* Card bloqueado — posicionamento relativo para o overlay */
.guia-card--locked {
    position: relative;
}

/* ── Cabeçalho do card ─────────────────────────────────────────────────── */
.guia-card__header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid #f5ece0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guia-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 14px;
    border-radius: 99px;
    border: 1.5px solid var(--gold);
    background: #fdf8f0;
    color: var(--gold-dark);
    width: fit-content;
}

.guia-card__title {
    font-size: 20px;
    font-weight: 800;
    color: #2a1a06;
    line-height: 1.3;
    margin: 0;
}

.guia-card__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Corpo do card (conteúdo do guia) ─────────────────────────────────── */
.guia-card__body {
    padding: 24px 28px 28px;
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
}

/* Blur aplicado na prévia dos cards bloqueados */
.guia-card__body--blurred {
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
    opacity: 0.6;
}

/* ── Overlay de cadeado (relativo — aparece dentro do corpo expandido) ───── */
.guia-lock-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 36px 28px;
    text-align: center;
}

/* Card aberto — destaque visual */
.guia-card--open {
    border-color: var(--gold);
    box-shadow: 0 6px 24px rgba(197, 160, 89, 0.18);
}

.guia-lock-icon {
    width: 56px;
    height: 56px;
    background: #fdf8f0;
    border: 2px solid var(--sage-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(197, 160, 89, 0.20);
}

.guia-lock-msg {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    max-width: 280px;
    line-height: 1.5;
    margin: 0;
}

.guia-lock-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    background: #ffffff;
    color: #000000;
    border: 2px solid var(--gold);
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
    margin-top: 4px;
}

.guia-lock-btn:hover {
    background: #fdf8f0;
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(197, 160, 89, 0.28);
}

/* ── Responsivo ────────────────────────────────────────────────────────── */
@media (max-width: 680px) {
    .guia-card__header,
    .guia-card__body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .guia-card__title {
        font-size: 17px;
    }

    .guia-lock-overlay {
        height: calc(100% - 110px);
    }
}

/* ══════════════════════════════════════════════════════════════════════════════
   Oráculo de Promoção Mística — Sidebar Carousel
   ══════════════════════════════════════════════════════════════════════════════ */

/* Wrapper do carrossel — brilho pulsante carmesim */
.ad-showcase--oracle {
    background: linear-gradient(160deg, #1a0505 0%, #2d0808 55%, #1a0a0a 100%);
    border-radius: 20px;
    border: 1px solid rgba(180, 0, 0, 0.35);
    padding: 28px 22px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(139, 0, 0, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.45);
    animation: oracleGlow 3s ease-in-out infinite;
}

@keyframes oracleGlow {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(139,0,0,0.2),
            0 8px 32px rgba(0,0,0,0.45),
            0 0 24px rgba(139,0,0,0.12);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(180,0,0,0.45),
            0 8px 40px rgba(0,0,0,0.5),
            0 0 40px rgba(180,0,0,0.28);
    }
}

/* Emoji místico flutuante */
.ad-oracle-emoji {
    font-size: 72px;
    line-height: 1;
    margin: 4px 0 20px;
    display: block;
    filter:
        drop-shadow(0 0 14px rgba(220, 0, 0, 0.6))
        drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    animation: emojiFloat 4s ease-in-out infinite;
}

@keyframes emojiFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    30%       { transform: translateY(-6px) scale(1.04); }
    60%       { transform: translateY(-3px) scale(1.01); }
}

/* Fade-in ao trocar slide */
.ad-fade-in {
    animation: adFadeIn 0.5s ease forwards;
}

@keyframes adFadeIn {
    from { opacity: 0; transform: translateY(8px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Badge (Vol. X de 5 / Especialidade) */
.ad-showcase--oracle .ad-badge {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(139, 0, 0, 0.35);
    color: rgba(255, 160, 160, 0.9);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 14px;
    border-radius: 99px;
    border: 1px solid rgba(200, 0, 0, 0.3);
    white-space: nowrap;
}

/* Título do item */
.ad-showcase--oracle .ad-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.3;
    margin: 0 0 8px;
    background: linear-gradient(135deg, #ff8a80 0%, #e53935 50%, #ff8a80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtítulo sedutor */
.ad-showcase--oracle .ad-subtitle {
    font-size: 13px;
    font-style: italic;
    color: rgba(255, 180, 180, 0.72);
    line-height: 1.55;
    margin: 0 0 18px;
}

/* Botão de ação — Vermelho Rubi */
.ad-btn--crimson {
    display: block;
    width: 100%;
    padding: 13px 16px;
    background: linear-gradient(135deg, #8B0000, #c62828, #8B0000);
    color: #fff !important;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 16px rgba(139, 0, 0, 0.45);
    transition: box-shadow 0.25s, transform 0.2s;
}

.ad-btn--crimson:hover {
    box-shadow: 0 8px 28px rgba(180, 0, 0, 0.65);
    transform: translateY(-2px);
}

/* Dots — 7 pontos, menores */
.ad-showcase--oracle .ad-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.ad-showcase--oracle .ad-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 100, 100, 0.25);
    border: 1px solid rgba(200, 0, 0, 0.3);
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    flex-shrink: 0;
}

.ad-showcase--oracle .ad-dot.active {
    background: #c62828;
    border-color: #ff5252;
    transform: scale(1.3);
    box-shadow: 0 0 6px rgba(200, 0, 0, 0.6);
}

/* Seta de navegação (hover lateral) */
.ad-showcase--oracle .ad-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 0, 0, 0.25);
    border: none;
    color: rgba(255, 150, 150, 0.7);
    font-size: 20px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}

.ad-showcase--oracle .ad-nav:hover {
    background: rgba(139, 0, 0, 0.5);
    color: #fff;
}

.ad-showcase--oracle .ad-nav--prev { left: 8px; }
.ad-showcase--oracle .ad-nav--next { right: 8px; }