        /* REGULAR */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Regular.woff2') format('woff2'),
       url('../fonts/Poppins/Poppins-Regular.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-image:url(../../assets/img/bg.jpg);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            background-attachment: fixed;
            min-height: 100vh; /* Asegura que el cuerpo ocupe toda la altura visible */
        }

        /* Header */
        .header-azul {
            background-color: #003770;
            height: 70px;
            box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            padding: 0 20px;
            max-width: 1728px;
            margin: 0 auto;
        }

        .logo-onpe {
            height: 48px;
            width: auto;
        }

        .header-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 22px;
            color: white;
            text-align: center;
            flex: 1;
            margin: 0 30px;
        }

        .logo-stae {
            height: 30px;
            width: auto;
        }

        /* Content */
        .main-content {
            margin-top: 70px;
            padding: 50px 30px;
            max-width: 1440px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Tabs/Botones */
        .tabs-container {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-bottom: 30px;
        }

        .tab-btn {
            width: 396px;
            height: 60px;
            border-radius: 4px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            font-size: 20px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab-btn.active {
            background-color: #003770;
            color: white;
        }

        .tab-btn.inactive {
            background-color: white;
            color: #003770;
            border: 1px solid #003770;
        }

        .tab-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        /* Tab Content */
        .tab-content-custom {
            display: none;
        }

        .tab-content-custom.active {
            display: block;
        }

        /* Video Grid */
        .video-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            padding: 10px;
        }

        /* Video Card */
        .video-card {
            background: white;
            width: 327px;
            height: 240px;
            box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .video-card:hover {
            box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
            transform: translateY(-4px);
        }

        .video-card:hover .video-thumbnail::after {
            opacity: 0.4;
        }

        .video-card:hover .play-icon {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-thumbnail {
            width: 100%;
            height: 178px;
            position: relative;
            overflow: hidden;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-thumbnail::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0);
            transition: all 0.3s ease;
            pointer-events: none;
        }

        /* Play Icon */
        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 68px;
            height: 68px;
            z-index: 10;
            transition: transform 0.3s ease;
            filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.5));
        }

        .play-circle {
            width: 48px;
            height: 48px;
            border: 3px solid white;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.3);
            position: relative;
            margin: 10px;
        }

        .play-triangle {
            width: 0;
            height: 0;
            border-left: 16px solid white;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-35%, -50%);
            filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
        }

        .video-title {
            padding: 10px 15px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .video-title p {
            font-family: 'Roboto', sans-serif;
            font-weight: 500;
            font-size: 18px;
            color: #000;
            margin: 0;
            line-height: 1.3;
        }

        /* PDF Container */
        .pdf-container {
            background: white;
            border-radius: 6px;
            box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
            min-height: 800px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pdf-embed {
            width: 100%;
            height: 800px;
            border: none;
        }

        .pdf-placeholder {
            text-align: center;
            padding: 100px 20px;
        }

        .pdf-placeholder h3 {
            font-size: 24px;
            color: #003770;
            margin-bottom: 20px;
        }

        .pdf-placeholder p {
            font-size: 16px;
            color: #666;
        }

        /* Modal Video Styles */
        .modal-dialog-video {
            max-width: 900px;
        }

        .modal-content-video {
            background: #000;
            border: none;
            border-radius: 8px;
        }

        .modal-header-video {
            background: #003770;
            color: white;
            border-bottom: none;
            padding: 15px 20px;
            border-radius: 8px 8px 0 0;
        }

        .modal-header-video .modal-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 18px;
        }

        .modal-header-video .btn-close {
            filter: invert(1);
            opacity: 1;
        }

        .modal-body-video {
            padding: 0;
            background: #000;
        }

        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
        }

        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-title {
                font-size: 16px;
                margin: 0 15px;
            }

            .tabs-container {
                flex-direction: column;
                align-items: center;
            }

            .tab-btn {
                width: 100%;
                max-width: 396px;
                font-size: 16px;
            }

            .video-card {
                width: 100%;
                max-width: 327px;
            }

            .main-content {
                padding: 30px 15px;
            }

            .modal-dialog-video {
                max-width: 95%;
                margin: 10px auto;
            }
        }

        @media (max-width: 425px) {
            .header-title {
                font-size: 12px!important;
                margin: 0 15px;
            }
            .ocultar{
                display: none;
            }
            .video-title p {
                font-size: 15px;
            }
            .video-grid {
                padding: 0;
            }
        }