.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
}

.filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.charts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.chart-wrapper {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 30px;
    align-items: center;
    min-height: 700px;
}

.text-content {
    padding-right: 20px;
}

.chart {
    width: 100%;
    height: 700px;
}

.logo {
    /* position: fixed;
    bottom: 180px;
    right: 140px;
    width: 150px;
    height: auto;
    z-index: 1000; */
}

@media (max-width: 1200px) {
    .charts-container {
        grid-template-columns: 1fr;
    }

    .chart-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .text-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .chart {
        height: 600px;
    }

}


/* =========================================
           ESTILOS PERSONALIZADOS (Modernización)
           ========================================= */
body {
    /* Agregamos 'Ancizar' como primera opción para coincidir con tu gráfica, fallback a Inter */
    /* font-family: 'Ancizar', 'Inter', sans-serif;
            background: linear-gradient(135deg, #eef2f3 0%, #e0e7ff 100%);
            min-height: 100vh;
            color: #343a40; */
}

/* Utilidades modernas */
.rounded-xl {
    border-radius: 1rem !important;
}

.rounded-2xl {
    border-radius: 1.5rem !important;
}

.shadow-soft {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

.bg-indigo-light {
    background-color: #e0e7ff;
    color: #4f46e5;
}

.text-indigo {
    color: #4f46e5;
}

.btn-indigo {
    background-color: #4f46e5;
    border-color: #4f46e5;
    color: white;
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.3);
    transition: all 0.3s;
    padding: 10px 30px;
    font-size: 18px;
}

.btn-indigo:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(79, 70, 229, 0.4);
    color: white;
}

/* =========================================
        MODAL FULL SCREEN CON TRANSICIÓN SLIDE UP
           ========================================= */

.modal-fullscreen {
    padding: 0 !important;
}

.modal-fullscreen .modal-dialog {
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
    background-color: #f8f9fa;
}

/* Transición personalizada: Deslizar desde abajo */
.modal.fade .modal-dialog {
    transform: translate(0, 100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.show .modal-dialog {
    transform: translate(0, 0);
}

.modal-header {
    background: white;
    border-bottom: 1px solid #e9ecef;
    padding: 1.25rem 2rem;
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
}

.modal-footer {
    background: #fff;
    border-top: 1px solid #e9ecef;
    padding: 1rem 2rem;
}

/* Tarjetas */
.card-modern {
    border: 1px solid #eef2f6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    border-radius: 1rem;
    background: white;
    transition: transform 0.2s;
}

/* Icono circular */
.icon-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #e0e7ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
}

.txt_analisis {
    font-size: 16px;
    line-height: 1.2;
}





/* =========================================
   SECCIÓN: tareas
   ========================================= */

/* --- Variables Generales (Si no las tienes ya) --- */
:root {
    --unal-blue: #1B264F;
    --unal-teal: #2D8B96;
    --unal-yellow: #FBBF24;
    --font-family-general: "Ancizar sans";
    /* Colores Específicos de Tarjetas */
    --color-emerald: #34d399;
    --color-pink: #f472b6;
    --color-purple: #a78bfa;
}

/* --- Sección Principal --- */
.tasks-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--unal-blue);
    color: #fff;
    overflow: hidden;
    font-family: var(--font-family-general);
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
}

.z-10 {
    position: relative;
    z-index: 10;
}

/* --- Fondos Difuminados (Glows) --- */
.glow-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.glow-top-right {
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: rgba(45, 139, 150, 0.2);
    /* Teal alpha */
    filter: blur(120px);
}

.glow-bottom-left {
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(251, 191, 36, 0.1);
    /* Yellow alpha */
    filter: blur(100px);
}

/* --- Header Styles --- */
.badge-pill-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--unal-yellow);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.badge-text {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #cbd5e1;
}

.section-title-dark {
    font-family: var(--font-family-general);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.section-subtitle-dark {
    font-size: 1.125rem;
    font-weight: 300;
    color: #94a3b8;
    /* Slate-400 equivalent */
    line-height: 1.6;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(251, 191, 36, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
    }
}

/* --- Card Styles (Glassmorphism) --- */
.task-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.task-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Watermark Number */
.watermark-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-family-general);
    font-size: 5.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s;
}

.task-card:hover .watermark-number {
    color: rgba(255, 255, 255, 0.1);
}

/* Icons */
.task-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.task-card:hover .task-icon-box {
    transform: scale(1.1);
}

/* icon svg */
.icons_obj_opg {
    fill: var(--color-emerald);
    width: 35px;
    height: 35px;
}

.icons_obj_opg:hover {
    width: 40px;
    height: 40px;
    fill: var(--brand-cyan);
}

.icons_obj_opg2 {
    fill: var(--unal-yellow);
    width: 40px;
    height: 40px;

}

.icons_obj_opg2:hover {
    fill: #ffde07;
    width: 45px;
    height: 45px;

}
.icons_obj_opg3 {
    fill: var(--color-pink);
    width: 40px;
    height: 40px;

}

.icons_obj_opg3:hover {
    fill:var(--color-pink);
    width: 45px;
    height: 45px;

}
.icons_obj_opg4 {
    fill: var(--unal-teal);
    width: 35px;
    height: 35px;

}

.icons_obj_opg4:hover {

    transform: scale(1.1);

}
.icons_obj_opg5 {
    fill: var(--color-purple);
    width: 35px;
    height: 35px;

}

.icons_obj_opg5:hover {

    transform: scale(1.1);

}









/* Content */
.task-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
    font-family: var(--font-family-general)
}

.hover-arrow {
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--unal-yellow);
}

.task-card:hover .hover-arrow {
    opacity: 1;
    transform: translateX(0);
}

.task-card:hover h3 {
     /* color: var(--unal-yellow); */
}

.task-content p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 0;
    transition: color 0.3s;
}

.task-card:hover p {
    color: #e2e8f0;
}

/* Bottom Line Animation */
.bottom-line {
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.task-card:hover .bottom-line {
    transform: scaleX(1);
}

/* --- Variantes de Color por Tarjeta --- */

/* Emerald (Card 1) */
.card-emerald .task-icon-box {
    background-color: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    color: var(--color-emerald);
}

.card-emerald .bottom-line {
    background-color: var(--color-emerald);
}

/* Yellow (Card 2) */
.card-yellow .task-icon-box {
    background-color: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    color: var(--unal-yellow);
}

.card-yellow .bottom-line {
    background-color: var(--unal-yellow);
}

/* Pink (Card 3) */
.card-pink .task-icon-box {
    background-color: rgba(244, 114, 182, 0.1);
    border: 1px solid rgba(244, 114, 182, 0.2);
    color: var(--color-pink);
}

.card-pink .bottom-line {
    background-color: var(--color-pink);
}

/* Teal (Card 4) */
.card-teal .task-icon-box {
    background-color: rgba(45, 139, 150, 0.1);
    border: 1px solid rgba(45, 139, 150, 0.2);
    color: var(--unal-teal);
}

.card-teal .bottom-line {
    background-color: var(--unal-teal);
}

/* Purple (Card 5) */
.card-purple .task-icon-box {
    background-color: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
    color: var(--color-purple);
}

.card-purple .bottom-line {
    background-color: var(--color-purple);
}



/* =================================== */

/* --- ESTILOS CORREGIDOS CON CÍRCULOS VISIBLES --- */

/* Contenedor relativo para posicionar los círculos respecto a este bloque */
.carousel-wrapper-right {
    position: relative;
    z-index: 1;
    /* Establece un contexto de apilamiento */
    max-width: 450px;
    /* Ancho máximo de la imagen */
    margin: 0 auto;
    /* Centrar en móvil */
    /* Importante: NO poner overflow: hidden aquí para que los círculos salgan */
}

/* El Slider debe estar ENCIMA de los círculos */
.unal-slider {
    position: relative;
    z-index: 10;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background: white;
    /* Para evitar transparencias no deseadas en la imagen */
}

.slick-slide img {
    width: 100%;
    border-radius: 12px;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
}

/* --- DECORACIONES (CIRCULOS) --- */
.deco-blob {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    /* Detrás del slider */
    pointer-events: none;
    /* Click traspasa */
}

/* 1. Círculo Amarillo (Arriba Izquierda) */
/* React: -top-6 -left-12 w-20 h-20 */
.blob-yellow {
    top: -1.5rem;
    left: -3rem;
    width: 5rem;
    height: 5rem;
    background-color: #FBBF24;
    /* Amarillo UNAL */
}

/* 2. Círculo Grande Teal Transparente (Detrás centrado) */
/* React: right-20 w-[120%] h-[110%] bg-unal-teal/10 */
.blob-teal-big {
    top: 50%;
    right: -20%;
    /* Se sale a la derecha */
    transform: translateY(-50%);
    width: 140%;
    height: 110%;
    background-color: rgba(45, 139, 150, 0.1);
    /* Teal muy suave */
}

/* 3. Círculo Teal Mediano (Abajo Derecha) */
/* React: -bottom-12 -right-12 w-48 h-48 bg-unal-teal/30 */
.blob-teal-small {
    bottom: -3rem;
    right: -3rem;
    width: 12rem;
    height: 12rem;
    background-color: rgba(45, 139, 150, 0.3);
    /* Teal medio */
}

/* --- FLECHAS (Igual que antes) --- */
.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: #1B264F;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 20;
    /* Encima de todo */
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    outline: none !important;
}

.custom-arrow:hover {
    background-color: #2D8B96;
    transform: translateY(-50%) scale(1.1);
}

.custom-prev {
    left: -22px;
}

.custom-next {
    right: -22px;
}


.carousel-wrapper-right .slick-list {
    height: 532px;
    overflow: visible !important;

}

.carousel-wrapper-right .slick-list .slick-track {
    height: 532px;

}


/* ================== Banner red neuranl================== */

/* Custom Colors Variables (Neuro Palette) */
:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-100: #f1f5f9;

    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --sky-400: #38bdf8;
    --sky-500: #0ea5e9;
    --purple-400: #c084fc;
    --purple-600: #9333ea;

    /* Brand Color Requested */
    --brand-cyan: #15BFAE;
}


/* Hero / Banner Section */
.hero-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: var(--brand-cyan);
    /* FONDO SOLICITADO */
    margin-top: 0;
}

.canvas-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background: linear-gradient(to bottom, rgba(21, 191, 174, 0) 0%, rgba(0, 0, 0, 0.3) 100%); */
    pointer-events: none;
    z-index: 10;
}

.content-overlay {
    position: absolute;
    inset: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    pointer-events: none;
}

.pointer-auto {
    pointer-events: auto;
}

/* Badge */
.badge-neuro {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dot-container {
    position: relative;
    display: flex;
    height: 6px;
    width: 6px;
}

.dot-ping {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: white;
    opacity: 0.75;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.dot-core {
    position: relative;
    display: inline-flex;
    border-radius: 50%;
    height: 6px;
    width: 6px;
    background-color: white;
}

/* Typography */
.hero-title {
    font-size: 5.25rem;
    font-family: var(--font-family-general);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* @media (min-width: 768px) {
            .hero-title { font-size: 3.5rem; }
        }
         */
.text-gradient-neuro {
    font-family: var(--font-family-general);
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: var(--font-family-general);
}

/* Buttons */
.btn-neuro-primary {
    background-color: #0f172a;
    color: white;
    border-radius: 9999px;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.btn-neuro-primary:hover {
    background-color: #1e293b;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: white;
}

.btn-neuro-primary:active {
    transform: scale(0.95);
}

.btn-neuro-outline {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
    transition: all 0.2s;
    cursor: pointer;
}

.btn-neuro-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: white;
    text-decoration: none;
    color: white;
}

.btn-neuro-outline:active {
    transform: scale(0.95);
}



/* Animations */
@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-700 {
    animation-delay: 700ms;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}


.preview-box:hover .preview-blob {
    transform: scale(1.5);
}

/* Utilities missing in BS4 */
.text-slate-300 {
    color: var(--slate-300);
}

.text-slate-400 {
    color: var(--slate-400);
}

.text-slate-500 {
    color: var(--slate-500);
}


/* =========================================
   SECCIÓN: ¿QUÉ ES EL OPG?
   ========================================= */

.img_opg_logo {
    width: 85%;
}

.about-opg-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Estilo de los títulos */
.opg-title {
    color: #1F2A5C;
    /* Tu azul oscuro corporativo */
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: var(--font-family-general);
}

/* La línea decorativa bicolor debajo del título */
.title-underline-opg {
    width: 200px;
    /* Ancho de la línea */
    height: 3px;
    /* Grosor */
    /* Crea el efecto de mitad celeste y mitad amarillo */
    background: linear-gradient(90deg, #62c3d0 0%, #62c3d0 50%, #F7B52C 50%, #F7B52C 100%);
    border-radius: 2px;
}

/* Estilo del texto de los párrafos */
.text-content-opg p {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #333333;
    /* La clase .text-justify de Bootstrap ya alinea los bordes, pero si quieres forzarlo: */
    text-align: justify;
    font-family: var(--font-family-general);
}

/* Responsive: Ajustes para móviles */
@media (max-width: 992px) {
    .about-opg-section {
        padding: 50px 0;
    }

    .opg-title {
        font-size: 1.75rem;
    }
}