/*** Time Line ***/
.timeline {
            position: relative;
            margin: 70px auto;
            padding: 40px 0;
            max-width: 1000px;
        }

        /* Línea animada */
        .timeline-line {
            position: absolute;
            top: 0;
            left: 50%;
            width: 4px;
            height: 0;
            background: #d9d9d9;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 90px;
        }

        .timeline-icon {
            position: absolute;
            top: 30px;
            left: 50%;
            width: 48px;
            height: 48px;
            background: #fff;
            border: 3px solid #2e6fbf;
            border-radius: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .timeline-icon i {
            color: #2e6fbf;
            font-size: 20px;
        }

        .timeline-content-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
            width: 44%;
        }

        .timeline-item.left .timeline-content-wrapper {
            margin-right: auto;
            flex-direction: row-reverse;
            text-align: right;
        }

        .timeline-item.right .timeline-content-wrapper {
            margin-left: auto;
        }

        .timeline-img {
            width: 130px;
            height: 90px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            flex-shrink: 0;
        }

        .timeline-content {
            background: #fff;
            padding: 20px 24px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .timeline-content h5 {
            color: #2e6fbf;
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .timeline-line {
                left: 25px;
            }

            .timeline-icon {
                left: 25px;
                transform: none;
            }

            .timeline-content-wrapper {
                width: calc(100% - 80px);
                margin-left: 80px !important;
                flex-direction: column !important;
                text-align: left !important;
            }

            .timeline-img {
                width: 100%;
                height: 160px;
            }
        }

