/* ========================================
   SISTEMA HUB + SATÉLITE - ESTILOS COMPLETOS
   ======================================== */

/* ========================================
   1. GUIA HUB - ESTILOS
   ======================================== */

.bc-guia-hub {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.bc-hub-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.bc-hub-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    z-index: 1;
}

.bc-hub-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 60px 40px;
    max-width: 900px;
}

.bc-hub-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.bc-hub-hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.6;
}

/* Container Principal */
.bc-hub-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

/* Introdução */
.bc-hub-intro {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
}

.bc-hub-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 5px solid #2563eb;
}

.bc-hub-intro p {
    margin-bottom: 20px;
}

/* Índice Clicável */
.bc-hub-indice {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    position: sticky;
    top: 20px;
    z-index: 10;
}

.bc-hub-indice-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bc-hub-indice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bc-hub-indice-list li {
    margin-bottom: 12px;
}

.bc-indice-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 8px;
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.bc-indice-link:hover {
    background: #e0f2fe;
    border-left-color: #2563eb;
    color: #1e40af;
    transform: translateX(5px);
}

.bc-indice-numero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.bc-indice-titulo {
    flex: 1;
}

/* Cards de Etapas */
.bc-hub-etapas {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.bc-hub-etapa-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    scroll-margin-top: 100px;
}

.bc-hub-etapa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.bc-etapa-card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.bc-etapa-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.bc-etapa-header-content {
    flex: 1;
}

.bc-etapa-numero-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #2563eb;
    color: white;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bc-etapa-titulo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}

.bc-etapa-card-body {
    padding-top: 20px;
}

.bc-etapa-resumo {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
}

.bc-etapa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.bc-etapa-btn:hover {
    background: #1e40af;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    color: white;
}

/* CTA Final */
.bc-hub-cta-final {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin-bottom: 50px;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.bc-cta-final-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.bc-cta-final-btn {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.bc-cta-final-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #667eea;
}

/* Sidebar Hub */
.bc-hub-sidebar {
    position: sticky;
    top: 20px;
}

.bc-hub-sem-satelites {
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    color: #64748b;
    border: 2px dashed #cbd5e1;
}

/* ========================================
   2. POST SATÉLITE - ESTILOS
   ======================================== */

.bc-single-satelite {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.bc-link-voltar-hub {
    margin-bottom: 30px;
}

.bc-btn-voltar-hub {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f8fafc;
    color: #2563eb;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.bc-btn-voltar-hub:hover {
    background: #e0f2fe;
    border-color: #2563eb;
    color: #1e40af;
}

.bc-estrategia-conclusao {
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    margin-top: 50px;
    border-left: 5px solid #2563eb;
}

.bc-estrategia-conclusao h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.bc-estrategia-conclusao p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
}

.bc-btn-cta-final {
    display: inline-block;
    padding: 14px 28px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bc-btn-cta-final:hover {
    background: #1e40af;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    color: white;
}

.bc-box-hub-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-top: none;
}

.bc-box-hub-link .bc-link-hub {
    display: block;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.bc-box-hub-link .bc-link-hub:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

.bc-link-hub-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

.bc-box-dica-sidebar {
    background: #fef3c7;
    border-top-color: #f59e0b;
}

/* ========================================
   3. SHORTCODES - BOXES DE CONTEÚDO
   ======================================== */

/* Box Produto */
.bc-box-produto {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bc-box-produto-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

.bc-box-produto-image {
    border-radius: 8px;
    overflow: hidden;
}

.bc-box-produto-image img {
    width: 100%;
    height: auto;
    display: block;
}

.bc-box-produto-info {
    flex: 1;
}

.bc-box-produto-nome {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.bc-box-produto-descricao {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bc-box-produto-pros,
.bc-box-produto-contras {
    margin-bottom: 20px;
}

.bc-box-produto-pros strong {
    color: #059669;
    display: block;
    margin-bottom: 8px;
}

.bc-box-produto-contras strong {
    color: #dc2626;
    display: block;
    margin-bottom: 8px;
}

.bc-box-produto-pros ul,
.bc-box-produto-contras ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bc-box-produto-pros li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    color: #334155;
}

.bc-box-produto-pros li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
}

.bc-box-produto-contras li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    color: #334155;
}

.bc-box-produto-contras li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
}

.bc-box-produto-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bc-box-produto-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    color: white;
}

.bc-box-produto-disclaimer {
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.85rem;
    color: #94a3b8;
    text-align: center;
}

/* Box Dica */
.bc-box-dica {
    background: #fef3c7;
    border-left: 5px solid #f59e0b;
    border-radius: 8px;
    padding: 20px 25px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.bc-box-dica-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.bc-box-dica-content {
    flex: 1;
}

.bc-box-dica-title {
    display: block;
    color: #92400e;
    font-weight: 700;
    margin-bottom: 8px;
}

.bc-box-dica-text {
    color: #78350f;
    line-height: 1.7;
}

.bc-box-dica-text p {
    margin: 0;
}

/* Box Atenção */
.bc-box-atencao {
    background: #fee2e2;
    border-left: 5px solid #dc2626;
    border-radius: 8px;
    padding: 20px 25px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.bc-box-atencao-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.bc-box-atencao-content {
    flex: 1;
}

.bc-box-atencao-title {
    display: block;
    color: #991b1b;
    font-weight: 700;
    margin-bottom: 8px;
}

.bc-box-atencao-text {
    color: #7f1d1d;
    line-height: 1.7;
}

.bc-box-atencao-text p {
    margin: 0;
}

/* Box Sucesso */
.bc-box-sucesso {
    background: #d1fae5;
    border-left: 5px solid #059669;
    border-radius: 8px;
    padding: 20px 25px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.bc-box-sucesso-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.bc-box-sucesso-content {
    flex: 1;
}

.bc-box-sucesso-title {
    display: block;
    color: #065f46;
    font-weight: 700;
    margin-bottom: 8px;
}

.bc-box-sucesso-text {
    color: #047857;
    line-height: 1.7;
}

.bc-box-sucesso-text p {
    margin: 0;
}

/* ========================================
   4. RESPONSIVIDADE
   ======================================== */

@media (max-width: 1024px) {
    .bc-hub-container,
    .bc-estrategia-container {
        grid-template-columns: 1fr;
    }
    
    .bc-hub-indice {
        position: static;
    }
    
    .bc-hub-sidebar,
    .bc-estrategia-sidebar {
        position: static;
        order: -1;
    }
    
    .bc-box-produto-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bc-hub-hero-title {
        font-size: 2rem;
    }
    
    .bc-hub-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .bc-hub-hero-content {
        padding: 40px 20px;
    }
    
    .bc-hub-intro,
    .bc-hub-etapa-card {
        padding: 25px 20px;
    }
    
    .bc-etapa-titulo {
        font-size: 1.4rem;
    }
    
    .bc-hub-cta-final {
        padding: 30px 20px;
    }
    
    .bc-cta-final-title {
        font-size: 1.5rem;
    }
    
    .bc-estrategia-title {
        font-size: 1.8rem;
    }
    
    .bc-estrategia-content {
        font-size: 1rem;
    }
    
    .bc-relacionados-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   5. ANIMAÇÕES
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bc-hub-etapa-card {
    animation: fadeInUp 0.6s ease-out;
}

.bc-hub-etapa-card:nth-child(1) { animation-delay: 0.1s; }
.bc-hub-etapa-card:nth-child(2) { animation-delay: 0.2s; }
.bc-hub-etapa-card:nth-child(3) { animation-delay: 0.3s; }
.bc-hub-etapa-card:nth-child(4) { animation-delay: 0.4s; }
.bc-hub-etapa-card:nth-child(5) { animation-delay: 0.5s; }
.bc-hub-etapa-card:nth-child(6) { animation-delay: 0.6s; }
