/**
 * bridge-page.css
 * 
 * Estilos para páginas de Bridge/Editorial de materiais.
 * Design premium estilo revista/jornal com foco em conversão.
 */

/* ===== LAYOUT PRINCIPAL ===== */
.bridge-page.editorial-style {
    max-width: 900px;
    margin: 40px auto;
    padding: 50px 40px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.8;
    color: var(--text-primary, #e0e0e0);

    /* Glassmorphism */
    background: rgba(18, 18, 28, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    /* Borda sutil */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;

    /* Brilho Neon bicolor (Rosa + Ciano) */
    box-shadow:
        -5px -5px 30px rgba(255, 0, 222, 0.2),
        5px 5px 30px rgba(0, 210, 255, 0.2);
}

@media (max-width: 768px) {
    .bridge-page.editorial-style {
        padding: 30px 20px;
        margin: 20px auto;
        width: 95%;
        border-radius: 16px;
    }
}

/* ===== BREADCRUMB ===== */
.bridge-page .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted, #888);
    margin-bottom: 24px;
}

.bridge-page .breadcrumb a {
    color: var(--accent, #00D9FF);
    text-decoration: none;
    transition: color 0.2s;
}

.bridge-page .breadcrumb a:hover {
    color: var(--accent-hover, #00b8d4);
    text-decoration: underline;
}

.bridge-page .breadcrumb .separator {
    opacity: 0.5;
}

.bridge-page .breadcrumb .current {
    color: var(--text-primary, #e0e0e0);
}

/* ===== HERO HEADER ===== */
.editorial-hero {
    text-align: center;
    margin-bottom: 40px;
}

.editorial-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    margin: 20px 0;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.editorial-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--text-muted, #888);
}

.editorial-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.editorial-meta .meta-item i {
    width: 16px;
    height: 16px;
    color: var(--accent, #00D9FF);
}

.badge-promo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ff6b35, #ff4444);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.badge-promo.pulse {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(255, 107, 53, 0);
    }
}

/* ===== HERO IMAGE ===== */
.editorial-hero-image {
    margin: 40px 0;
}

.editorial-hero-image figure {
    margin: 0;
    position: relative;
}

.editorial-hero-image .image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 217, 255, 0.15);
}

.editorial-hero-image .hero-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    background: var(--bg-surface, #1a1a1a);
    display: block;
}

.editorial-hero-image .store-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: var(--accent, #00D9FF);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.editorial-hero-image .store-badge i {
    width: 14px;
    height: 14px;
}

.editorial-hero-image figcaption {
    text-align: center;
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-muted, #888);
    font-style: italic;
}

/* ===== LEAD / INTRODUÇÃO ===== */
.editorial-lead {
    margin: 40px 0;
    text-align: center;
}

.editorial-lead .lead-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary, #b0b0b0);
    max-width: 650px;
    margin: 0 auto;
}

.editorial-lead strong {
    color: var(--accent, #00D9FF);
}

/* ===== VÍDEO ===== */
.editorial-video {
    margin: 60px 0;
}

.editorial-video h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: #fff;
}

.editorial-video h2 i {
    width: 24px;
    height: 24px;
    color: var(--accent, #00D9FF);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== CONTEÚDO EDITORIAL ===== */
.editorial-content {
    margin: 60px 0;
}

.editorial-content h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: #fff;
}

.editorial-content h2 i {
    width: 24px;
    height: 24px;
    color: var(--accent, #00D9FF);
}

.content-body.prose {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-secondary, #b0b0b0);
}

.content-body.prose p {
    margin-bottom: 1.5em;
}

.content-body.prose h3,
.content-body.prose h4 {
    color: #fff;
    margin-top: 2em;
    margin-bottom: 1em;
}

/* ===== GALERIA ===== */
.editorial-gallery {
    margin: 60px 0;
}

.editorial-gallery h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: #fff;
}

.editorial-gallery h2 i {
    width: 24px;
    height: 24px;
    color: var(--accent, #00D9FF);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.gallery-item {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-surface, #1a1a1a);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* ===== POR QUE COMPRAR ===== */
.editorial-why-buy {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(0, 217, 255, 0.02));
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    margin: 60px 0;
}

.editorial-why-buy h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: #fff;
    text-align: center;
}

.editorial-why-buy h2 i {
    width: 24px;
    height: 24px;
    color: var(--accent, #00D9FF);
}

.why-buy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.why-buy-grid .reason {
    text-align: center;
    padding: 20px;
}

.why-buy-grid .reason .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.why-buy-grid .reason h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
}

.why-buy-grid .reason p {
    font-size: 0.95rem;
    color: var(--text-muted, #888);
    line-height: 1.6;
}

/* ===== SEGURANÇA ===== */
.editorial-safety {
    background: linear-gradient(135deg, #1a1a1a, #252525);
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid var(--accent, #00D9FF);
    margin: 60px 0;
}

.editorial-safety.risco-alto {
    border-left-color: #ff4444;
    background: linear-gradient(135deg, #1a1a1a, #2a1a1a);
}

.editorial-safety.risco-medio {
    border-left-color: #ffc107;
}

.editorial-safety.risco-baixo {
    border-left-color: #4caf50;
}

.safety-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #fff;
}

.safety-header h2 i {
    width: 24px;
    height: 24px;
    color: var(--accent, #00D9FF);
}

.safety-intro {
    color: var(--text-muted, #888);
    margin-bottom: 24px;
}

.alert {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.alert-icon i {
    width: 24px;
    height: 24px;
    color: #ffc107;
    flex-shrink: 0;
}

.alert strong {
    color: #ffc107;
    display: block;
    margin-bottom: 4px;
}

.alert p {
    color: var(--text-secondary, #b0b0b0);
    margin: 0;
    line-height: 1.6;
}

.epi-recommendations {
    margin-top: 24px;
}

.epi-recommendations h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 16px;
}

.epi-recommendations h3 i {
    width: 20px;
    height: 20px;
    color: var(--accent, #00D9FF);
}

.epi-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.epi-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 8px;
}

.epi-list .epi-check {
    color: #4caf50;
    font-weight: bold;
}

.epi-cross-sell {
    margin-top: 32px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
}

.cross-sell-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #ff6b35;
}

.cross-sell-header i {
    width: 20px;
    height: 20px;
    color: #ff6b35;
}

.cross-sell-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-epi {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
    color: #ff6b35;
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-epi:hover {
    background: rgba(255, 107, 53, 0.3);
    color: #fff;
}

.btn-epi i {
    width: 14px;
    height: 14px;
}

/* ===== ESPECIFICAÇÕES ===== */
.editorial-specs {
    margin: 60px 0;
}

.editorial-specs h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: #fff;
}

.editorial-specs h2 i {
    width: 24px;
    height: 24px;
    color: var(--accent, #00D9FF);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-surface, #1a1a1a);
    border-radius: 12px;
    overflow: hidden;
}

.specs-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table th,
.specs-table td {
    padding: 16px 20px;
    text-align: left;
}

.specs-table th {
    width: 35%;
    color: var(--text-muted, #888);
    font-weight: 500;
    background: rgba(0, 0, 0, 0.2);
}

.specs-table td {
    color: #fff;
}

.specs-table .price-highlight {
    color: var(--accent, #00D9FF);
    font-weight: 700;
    font-size: 1.1rem;
}

.coupon-code {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px dashed var(--accent, #00D9FF);
    padding: 8px 14px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.coupon-code:hover {
    background: rgba(0, 217, 255, 0.2);
}

.coupon-code i {
    width: 14px;
    height: 14px;
    color: var(--accent, #00D9FF);
}

.coupon-code.copied {
    background: rgba(76, 175, 80, 0.2);
    border-color: #4caf50;
}

.coupon-code.copied::after {
    content: ' ✓ Copiado!';
    color: #4caf50;
    font-size: 0.85em;
}

/* ===== CTA FINAL ===== */
.editorial-cta {
    text-align: center;
    margin: 80px 0 60px;
}

.cta-box {
    background: linear-gradient(135deg, #00D9FF, #ff66cc);
    padding: 50px 40px;
    border-radius: 20px;
    color: #000;
    box-shadow:
        0 12px 40px rgba(0, 217, 255, 0.4),
        0 0 60px rgba(255, 0, 222, 0.2);
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho animado no CTA */
.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
            transparent 40%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 60%);
    animation: cta-shine 3s infinite;
}

@keyframes cta-shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.cta-box h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.cta-description {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 24px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 48px;
    font-size: 1.2rem;
    font-weight: 700;
    background: #000;
    color: var(--accent, #00D9FF);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cta:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.btn-cta i {
    width: 22px;
    height: 22px;
}

.cta-microcopy {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
}

.trust-badge,
.promo-reminder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.trust-badge i,
.promo-reminder i {
    width: 14px;
    height: 14px;
}

@media (max-width: 480px) {
    .cta-box {
        padding: 35px 24px;
    }

    .btn-cta {
        width: 100%;
        padding: 16px 30px;
        font-size: 1.05rem;
    }
}

/* ===== FOOTER ===== */
.editorial-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--accent, #00D9FF);
    background: transparent;
    color: var(--accent, #00D9FF);
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--accent, #00D9FF);
    color: #000;
}

.btn-outline i {
    width: 16px;
    height: 16px;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {

    .editorial-why-buy,
    .editorial-safety,
    .editorial-specs {
        padding: 24px;
    }

    .why-buy-grid {
        gap: 20px;
    }

    .specs-table th,
    .specs-table td {
        padding: 12px 16px;
    }

    .epi-list {
        grid-template-columns: 1fr;
    }
}


/* ===== GUIDE INDEX (NANO STYLE) ===== */
/* Container Glass Neon - Inspirado no estilo da Home */
.guide-index-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 30px;
    width: 95%;

    /* Glassmorphism */
    background: rgba(18, 18, 28, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    /* Borda sutil */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;

    /* Brilho Neon bicolor (Rosa + Ciano) */
    box-shadow:
        -5px -5px 30px rgba(255, 0, 222, 0.2),
        5px 5px 30px rgba(0, 210, 255, 0.2);
}

/* Header da página de índice */
.nano-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding: 40px 0;
    background: radial-gradient(circle at center, rgba(0, 217, 255, 0.05) 0%, transparent 70%);
}

.nano-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 30%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nano-header .nano-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted, #9ca3af);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Botão voltar */
.nano-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted, #9ca3af);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 20px;
    transition: color 0.2s;
}

.nano-back-link:hover {
    color: var(--accent, #00D9FF);
}

/* Seção de Categoria */
.nano-category-section {
    margin-bottom: 80px;
}

.nano-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nano-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nano-category-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: var(--accent, #00D9FF);
    border-radius: 2px;
}

.nano-category-badge {
    background: rgba(0, 217, 255, 0.1);
    color: var(--accent, #00D9FF);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

/* Grid de Cards */
.nano-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

/* Nano Card */
.nano-card {
    background: var(--bg-surface, #1e1e1e);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.nano-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 217, 255, 0.25),
        0 0 40px rgba(255, 0, 222, 0.15);
    border-color: rgba(0, 217, 255, 0.3);
    z-index: 2;
}

.nano-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Imagem do Card */
.nano-card-image-wrapper {
    position: relative;
    padding-top: 60%;
    /* Aspect Ratio 5:3 */
    overflow: hidden;
    background: #111;
}

.nano-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nano-card:hover .nano-card-image {
    transform: scale(1.08);
}

.nano-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.nano-card:hover .nano-card-overlay {
    opacity: 0.4;
}

/* Tag flutuante na imagem */
.nano-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Conteúdo do Card */
.nano-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.nano-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #fff;
    line-height: 1.3;
}

.nano-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted, #9ca3af);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nano-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nano-read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent, #00D9FF);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.nano-card:hover .nano-read-more {
    gap: 10px;
}

/* Empty State */
.nano-empty-state {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.nano-empty-icon {
    width: 64px;
    height: 64px;
    color: var(--text-muted, #666);
    margin-bottom: 20px;
}

.nano-empty-text {
    font-size: 1.25rem;
    color: var(--text-muted, #9ca3af);
    margin-bottom: 10px;
}

.nano-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent, #00D9FF);
    color: #000;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nano-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 217, 255, 0.25);
}

/* Responsividade */
@media (max-width: 768px) {
    .guide-index-container {
        padding: 30px 20px;
        margin: 20px auto;
        width: 95%;
        border-radius: 16px;
        /* Sombras neon mais sutis no mobile */
        box-shadow:
            -3px -3px 20px rgba(255, 0, 222, 0.15),
            3px 3px 20px rgba(0, 210, 255, 0.15);
    }

    .nano-header h1 {
        font-size: 2.5rem;
    }

    .nano-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nano-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* =====================================================
   LIGHT MODE OVERRIDES
   ===================================================== */
/* Versão robusta para garantir que pegue o modo light no html ou body */
html.light-mode .bridge-page.editorial-style,
html.light-mode .guide-index-container,
body.light-mode .bridge-page.editorial-style,
body.light-mode .guide-index-container,
.light-mode .bridge-page.editorial-style,
.light-mode .guide-index-container {
    /* Fundo claro com transparência */
    background: rgba(255, 255, 255, 0.9) !important;

    /* Borda mais visível */
    border: 1px solid rgba(0, 0, 0, 0.15) !important;

    /* Sombras neon suaves para light mode */
    box-shadow:
        -4px -4px 25px rgba(217, 0, 141, 0.15),
        4px 4px 25px rgba(99, 102, 241, 0.15),
        0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Textos principais */
.light-mode .bridge-page .editorial-title,
.light-mode .bridge-page h2,
.light-mode .bridge-page h3,
.light-mode .nano-header h1,
.light-mode .nano-category-title,
.light-mode .nano-card-title {
    color: #1a1a2e;
}

/* Textos secundários */
.light-mode .bridge-page,
.light-mode .bridge-page .editorial-lead .lead-text,
.light-mode .bridge-page .content-body.prose,
.light-mode .guide-index-container,
.light-mode .nano-subtitle,
.light-mode .nano-card-excerpt {
    color: #4a5568;
}

/* Gradiente do título no light mode */
.light-mode .nano-header h1 {
    background: linear-gradient(135deg, #1a1a2e 30%, #d90094 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header radial gradient mais sutil */
.light-mode .nano-header {
    background: radial-gradient(circle at center, rgba(217, 0, 141, 0.06) 0%, transparent 70%);
}

/* Nano Cards no Light Mode */
.light-mode .nano-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.light-mode .nano-card:hover {
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 0 20px rgba(217, 0, 141, 0.15),
        0 0 40px rgba(99, 102, 241, 0.1);
    border-color: rgba(217, 0, 141, 0.3);
}

.light-mode .nano-card-footer {
    border-top-color: rgba(0, 0, 0, 0.06);
}

/* Breadcrumb no light mode */
.light-mode .bridge-page .breadcrumb {
    color: #6b7280;
}

.light-mode .bridge-page .breadcrumb a {
    color: #d90094;
}

.light-mode .bridge-page .breadcrumb a:hover {
    color: #b10077;
}

/* Seção "Por que comprar" */
.light-mode .editorial-why-buy {
    background: linear-gradient(135deg, rgba(217, 0, 141, 0.04), rgba(99, 102, 241, 0.04));
    border-color: rgba(217, 0, 141, 0.15);
}

.light-mode .why-buy-grid .reason h3 {
    color: #1a1a2e;
}

.light-mode .why-buy-grid .reason p {
    color: #6b7280;
}

/* Seção de Segurança */
.light-mode .editorial-safety {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-left-color: #d90094;
}

.light-mode .epi-list li {
    background: rgba(217, 0, 141, 0.06);
}

/* Especificações */
.light-mode .specs-table {
    background: #f8fafc;
}

.light-mode .specs-table th {
    color: #6b7280;
    background: rgba(0, 0, 0, 0.03);
}

.light-mode .specs-table td {
    color: #1a1a2e;
}

.light-mode .specs-table .price-highlight {
    color: #d90094;
}

.light-mode .coupon-code {
    background: rgba(217, 0, 141, 0.08);
    border-color: #d90094;
}

/* CTA Box no light mode - mantém vibrante */
.light-mode .cta-box {
    background: linear-gradient(135deg, #d90094, #6366f1);
    color: #fff;
}

.light-mode .cta-box h3,
.light-mode .cta-description {
    color: #fff;
}

.light-mode .btn-cta {
    background: #fff;
    color: #d90094;
}

.light-mode .btn-cta:hover {
    background: #1a1a2e;
    color: #fff;
}

/* Footer e botões outline */
.light-mode .editorial-footer {
    border-top-color: rgba(0, 0, 0, 0.1);
}

.light-mode .btn-outline {
    border-color: #d90094;
    color: #d90094;
}

.light-mode .btn-outline:hover {
    background: #d90094;
    color: #fff;
}

/* Back link */
.light-mode .nano-back-link {
    color: #6b7280;
}

.light-mode .nano-back-link:hover {
    color: #d90094;
}

/* Category badge */
.light-mode .nano-category-badge {
    background: rgba(217, 0, 141, 0.1);
    color: #d90094;
    border-color: rgba(217, 0, 141, 0.2);
}

/* Read more link */
.light-mode .nano-read-more {
    color: #d90094;
}

/* Empty state */
.light-mode .nano-empty-state {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

.light-mode .nano-empty-text {
    color: #6b7280;
}

.light-mode .nano-btn-primary {
    background: linear-gradient(135deg, #d90094, #6366f1);
    color: #fff;
}

.light-mode .nano-btn-primary:hover {
    box-shadow: 0 10px 20px rgba(217, 0, 141, 0.3);
}

/* Hero image wrapper no light */
.light-mode .editorial-hero-image .image-wrapper {
    box-shadow: 0 8px 32px rgba(217, 0, 141, 0.12);
}

/* Meta items */
.light-mode .editorial-meta .meta-item {
    color: #6b7280;
}

.light-mode .editorial-meta .meta-item i {
    color: #d90094;
}

/* Video container */
.light-mode .video-container {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

/* Gallery */
.light-mode .gallery-item {
    background: #f8fafc;
}

/* Ícones em geral */
.light-mode .bridge-page h2 i,
.light-mode .editorial-video h2 i,
.light-mode .editorial-content h2 i,
.light-mode .editorial-gallery h2 i,
.light-mode .editorial-why-buy h2 i,
.light-mode .safety-header h2 i,
.light-mode .editorial-specs h2 i {
    color: #d90094;
}

/* Card Tag */
.light-mode .nano-card-tag {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}

/* ===== BARRA DE BUSCA (Articles Page) ===== */
.nano-search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    transition: all 0.2s ease;
}

.nano-search-bar:focus-within {
    border-color: var(--accent, #00D9FF);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.nano-search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    outline: none;
}

.nano-search-bar input::placeholder {
    color: #888;
}

/* Light mode */
.light-mode .nano-search-bar {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

.light-mode .nano-search-bar input {
    color: #333;
}

.light-mode .nano-search-bar input::placeholder {
    color: #999;
}

/* ===== FILTROS POR TAG ===== */
.nano-tag-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.nano-tag-chip {
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #aaa;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.nano-tag-chip:hover {
    border-color: var(--accent, #00D9FF);
    color: var(--accent, #00D9FF);
    background: rgba(0, 217, 255, 0.1);
}

.nano-tag-chip.active {
    background: linear-gradient(135deg, var(--accent, #00D9FF), #ff66cc);
    border-color: transparent;
    color: #000;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

/* Light mode */
.light-mode .nano-tag-chip {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    color: #666;
}

.light-mode .nano-tag-chip:hover {
    background: rgba(217, 0, 148, 0.1);
    border-color: #d90094;
    color: #d90094;
}

.light-mode .nano-tag-chip.active {
    background: linear-gradient(135deg, #d90094, #ff66cc);
    color: #fff;
    box-shadow: 0 4px 15px rgba(217, 0, 148, 0.3);
}