/* ============================================================
   ORGANIGRAMA.CSS 
   ============================================================ */

.org-breadcrumb-subtle {
    padding: 0 !important;
    margin-bottom: 20px !important;
}

.org-breadcrumb-subtle a, 
.org-breadcrumb-subtle span, 
.org-breadcrumb-subtle li {
    font-size: 14px !important;
    color: #686868;
    text-decoration: none;
}

.org-breadcrumb-subtle .current, 
.org-breadcrumb-subtle b {
    color: #000000 !important;
    font-weight: 600 !important;
}

/* ==================== BASE ==================== */
.org-section {
    margin-top: 0; 
}

.org-section-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.org-section-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

/* PANEL */
.org-panel {
    background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

/* IMAGEN */
.org-image-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.org-image {
    display: block;
    width: 100%;
    max-width: 1300px;
    height: auto;
    border-radius: 16px;
    background: #ffffff;
}

/* ANIMACIÓN */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: .6s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .org-panel {
        padding: 20px 14px;
    }

    .org-section-title {
        font-size: 24px;
    }

    .org-section-subtitle {
        font-size: 13px;
    }

    .org-image {
        border-radius: 12px;
    }
}