/* Source: page/informacion.php */
/* HERO */
            .hero-section {
                background: linear-gradient(135deg, #00a75d, #28a745, #007bff);
                color: #fff;
                padding: 70px 0 45px;
                text-align: center;
            }
            .hero-section h1 {
                font-size: 3.2rem;
                font-weight: 500;
            }
            .hero-section p {
                font-size: 1.3rem;
                opacity: .95;
            }
            /* SECCIÓN PRINCIPAL */
            .documents-section {
                padding: 80px 0;
                background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
            }
            .title-section {
                font-size: 3rem;
                font-weight: 700;
                text-align: center;
                margin-bottom: 25px;
                background: linear-gradient(45deg, #00a75d, #007bff, #28a745);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }
            .subtitle-section {
                font-size: 1.25rem;
                color: #6c757d;
                margin-bottom: 80px;
                text-align: center;
                font-weight: 400;
                max-width: 700px;
                margin-left: auto;
                margin-right: auto;
                line-height: 1.6;
            }

            /* CARDS  */
            .document-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 2rem;
                max-width: 1400px;
                margin: 0 auto;
                padding: 0 20px;
            }
            .document-card {
                background: #fff;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 10px 40px rgba(0,0,0,0.1);
                transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                height: 450px;
                position: relative;
                border: 1px solid rgba(0,167,93,0.1);
            }
            .document-card:hover {
                transform: translateY(-15px);
                box-shadow: 0 25px 60px rgba(0,167,93,0.2);
            }

            /* IMAGEN PRINCIPAL SUPERIOR */
            .card-image-container {
                position: relative;
                height: 220px;
                overflow: hidden;
                display: flex;
                justify-content: center;
                align-items: center;
                }
            .document-image {
                width: 300px;
                height: auto;
                object-fit: cover;
                transition: all 0.4s ease;
            }
            .document-card:hover .document-image {
                transform: scale(1.1);
            }
            /* OVERLAY  */
            .image-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(transparent, rgba(0,0,0,0.85));
                color: white;
                padding: 25px 20px 20px;
                transform: translateY(100%);
                transition: all 0.4s ease;
            }
            .document-card:hover .image-overlay {
                transform: translateY(0);
            }
            .document-title-overlay {
                font-size: 1.3rem;
                font-weight: 700;
                margin: 0;
                line-height: 1.3;
            }

            /* HEADER  */
            .card-header {
                padding: 25px 25px 0;
            }
            .document-badge {
                display: inline-block;
                background: linear-gradient(135deg, #00a75d, #28a745);
                color: #fff;
                padding: 8px 20px;
                border-radius: 25px;
                font-size: 0.8rem;
                font-weight: 700;
                letter-spacing: 1px;
                text-transform: uppercase;
                box-shadow: 0 4px 15px rgba(0,167,93,0.3);
            }

            /* CONTENIDO PRINCIPAL */
            .card-content {
                padding: 0 25px 25px;
                flex: 1;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                display: flex;
                flex-direction: column;
            }
            .document-title {
                font-size: 1.25rem;
                color: #123057;
                font-weight: 700;
                margin: 15px 0 10px 0;
                line-height: 1.4;
            }

            /* BOTÓN VISUALIZAR DOCUMENTO */
            .view-btn {
                background: linear-gradient(135deg, #00a75d, #28a745);
                color: white;
                border: none;
                padding: 14px 30px;
                border-radius: 12px;
                font-weight: 600;
                font-size: 1rem;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 10px;
                transition: all 0.3s ease;
                box-shadow: 0 5px 20px rgba(0,167,93,0.3);
                margin-top: auto;
                height: 52px;            
                min-height: 52px;
                width: 100%;             
                justify-content: center;
                text-align: center;
                white-space: nowrap;    
            }
            .view-btn i {
                width: 22px;
                height: 22px;
                display: grid;
                place-items: center;
                flex-shrink: 0;
            }
            .view-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 25px rgba(0,167,93,0.4);
                color: white;
                text-decoration: none;
            }

            /* RESPONSIVE  */
            @media (max-width: 992px) {
                .document-grid {
                    grid-template-columns: repeat(auto-fit, minmax(320px, 2fr));
                    gap: 1.5rem;
                }
                .hero-section h1 { font-size: 2.5rem; }
            }
            @media (max-width: 768px) {
                .hero-section { padding: 70px 0 50px; }
                .hero-section h1 { font-size: 2.2rem; }
                .documents-section { padding: 60px 0; }

                .document-card {
                    height: auto;
                    display: flex;
                    flex-direction: column;
                }

                .document-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 1.2rem;
                }

                .card-image-container {
                    height: 200px;
                }
            }

            @media (max-width: 576px) {
                .document-grid {
                    grid-template-columns: 2fr; 
                }

                .document-card {
                    height: auto;
                }

                .card-image-container {
                    height: 180px;
                }
            }

            @media (max-width: 420px) {
                .document-grid {
                    grid-template-columns: 2fr; 
                }
            }
