



   .vertical {
        /* border-top: 2px solid #45b700;
        width: 50px;
        margin: 20px auto; */
        border-right: 1px solid #48a62a;
        position: relative;
        right: 2%;
    }

    .horizontal{
        border-top: 1px solid #48a62a;
        width: 100%;
        margin: 20px auto;
    }
    .subt{
    font-size:0.9rem;
    color: #0a234f;
    line-height: 1;
    font-weight: 600;
    text-align: left;
    }

    .txt-ce{
    font-size:0.8rem;
    line-height: 0.8rem;
    text-align:left;
    }
.linea-vertical {
  height: 100px; /* Ajusta la altura de la línea */
  border-left: 2px solid var(--bs-custom-green-dark); /* Grosor de la línea */
  /* position: absolute; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
}
    .case-card {
        background-color: #ffffff;
        border-radius: 12px;
        margin: auto;
        width: 90%;
        padding: 40px;
        margin-bottom: 40px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .text-brand {
        color: #0b1953;
        font-weight: 700;
    }

    .text-accent {
        color: #1a73e8;
        font-weight: 600;
    }

    .challenge-solution-box {
        background-color: #f8f9fa;
        border-left: 4px solid #1a73e8;
        padding: 25px;
        border-radius: 0 8px 8px 0;
        height: 100%;
        text-align: center;
    }

    .stat-card {
        background-color: #0b1953;
        color: white;
        text-align: center;
        padding: 25px 15px;
        border-radius: 8px;
        height: 100%;
        transition: transform 0.3s;
    }

    .stat-card:hover {
        transform: translateY(-5px);
    }

    .stat-card h3 {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 5px;
        color: #fff;
    }

    .stat-card p {
        font-size: 0.9rem;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .module-card {
        border: 1px solid #e9ecef;
        border-radius: 8px;
        padding: 25px;
        height: 100%;
        background-color: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    }

    .module-card h5 {
        color: #1a73e8;
        border-bottom: 2px solid #f4f6f9;
        padding-bottom: 12px;
        margin-bottom: 15px;
    }

    ul.custom-list {
        padding-left: 1rem;
        list-style-type: none;
    }

    ul.custom-list li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 1.5rem;
    }

    ul.custom-list li::before {
        content: "✓";
        color: #1a73e8;
        position: absolute;
        left: 0;
        font-weight: bold;
    }


    /* =================== NEW STYLES CE =================== */

                        :root {
                            --color-dark-blue: #0b2b46;
                            --color-teal: #48a62a;
                            --color-light-bg: #f8f9fa;
                            --card-shadow: 0 4px 20px rgba(11, 43, 70, 0.04);
                            --card-hover-shadow: 0 12px 30px rgba(11, 43, 70, 0.08);
                        }
            
                        .text-dark-blue {
                            color: var(--color-dark-blue) !important;
                        }
            
                        .text-teal {
                            color: var(--color-teal) !important;
                        }
            
                        .bg-dark-blue {
                            background-color: var(--color-dark-blue) !important;
                        }
            
                        .bg-light-teal {
                            background-color: rgba(0, 135, 117, 0.06) !important;
                        }
            
                        /* Estilo de Títulos */
                        .title-underline {
                            position: relative;
                            display: inline-block;
                            padding-bottom: 8px;
                        }
            
                        .title-underline::after {
                            content: "";
                            position: absolute;
                            left: 0;
                            bottom: 0;
                            width: 60px;
                            height: 4px;
                            background-color: var(--color-teal);
                            border-radius: 2px;
                        }
            
                        .title-center::after {
                            left: 50%;
                            transform: translateX(-50%);
                        }
            
                        /* Tarjetas de Casos de Éxito */
                        .case-section {
                            border-radius: 24px;
                            margin-bottom: 50px;
                            border: 1px solid #eef1f4;
                            background-color: #ffffff;
                            box-shadow: var(--card-shadow);
                        }
            
                        .case-section.sumatec-bg {
                            background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
                        }
            
                        .case-section.colorquimica-bg {
                            background: linear-gradient(180deg, #ffffff 0%, rgba(11, 43, 70, 0.03) 100%);
                        }
            
                        /* Stats Blocks Responsivos */
                        .stat-block {
                            text-align: center;
                            padding: 15px;
                        }
            
                        .stat-number {
                            font-size: 1.8rem;
                            font-weight: 800;
                            color: var(--color-teal);
                            line-height: 1.2;
                        }
            
                        .stat-label {
                            font-size: 0.75rem;
                            font-weight: 600;
                            color: var(--color-dark-blue);
                            text-transform: uppercase;
                            margin-top: 8px;
                        }
            
                        @media (min-width: 576px) {
                            .border-sm-end {
                                border-right: 1px solid #eef1f4;
                            }
                        }
            
                        @media (max-width: 575px) {
                            .stat-block {
                                border-bottom: 1px solid #eef1f4;
                            }
            
                            .stat-block:last-child {
                                border-bottom: none;
                            }
            
                            .stat-number {
                                font-size: 1.5rem;
                            }
                        }
            
                        /* Tarjetas de Solución (Grid) */
                        .solution-card {
                            background: #fff;
                            border: 1px solid #eef1f4;
                            border-radius: 12px;
                            padding: 20px;
                            height: 100%;
                            transition: all 0.3s ease;
                        }
            
                        .solution-card:hover {
                            transform: translateY(-5px);
                            box-shadow: var(--card-hover-shadow);
                            border-color: rgba(0, 135, 117, 0.2);
                        }
            
                        .solution-icon {
                            width: 40px;
                            height: 40px;
                            border-radius: 10px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            font-size: 1.2rem;
                            margin-bottom: 15px;
                            background-color: var(--color-teal);
                            color: #fff;
                        }
            
                        /* Badges de Resultados */
                        .result-badge {
                            display: inline-flex;
                            align-items: center;
                            gap: 8px;
                            background-color: var(--color-dark-blue);
                            color: #fff;
                            padding: 8px 16px;
                            border-radius: 50px;
                            font-size: 0.85rem;
                            font-weight: 600;
                            margin: 5px 5px 10px 0;
                        }
            
                        .result-badge i {
                            color: var(--color-teal);
                        }
            
                        .challenge-box {
                            background-color: rgba(11, 43, 70, 0.05);
                            border-left: 4px solid var(--color-dark-blue);
                            padding: 25px;
                            border-radius: 0 12px 12px 0;
                        }
            
                        @media (max-width: 991px) {
                            .challenge-box {
                                border-left: none;
                                border-top: 4px solid var(--color-dark-blue);
                                border-radius: 0 0 12px 12px;
                            }
                        }
            
                        @media (max-width: 480px) {
                            .solution-icon {
                                    width: 40px;
                                    height: 40px;
                                    border-radius: 10px;
                                    align-items: center;
                                    justify-content: center;
                                    font-size: 1.2rem;
                                    margin-bottom: 15px;
                                    background-color: var(--color-teal);
                                    color: #fff;
                                    margin: auto;
                                }
                       
                       .text-secondary{
                        text-align:center;
                       }

                       }
