<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <style>
        /* Estilos optimizados para PDF (Chrome-pdf en jsreport) */
        body { font-family: Arial, sans-serif; padding: 20px; font-size: 13px; }
        .container { width: 100%; position: relative; }
        
        /* Encabezado */
        .header { text-align: center; margin-bottom: 30px; }
        .header h1 { font-size: 20px; text-transform: uppercase; margin: 5px 0; }
        .header h2 { font-size: 16px; margin: 5px 0; }
        
        .top-decor { display: flex; justify-content: space-between; align-items: flex-start; }
        .especie-info { font-size: 9px; width: 100px; text-align: center; }

        /* Contenido Principal */
        .info-row { display: flex; margin: 25px 0; align-items: center; }
        .qr-placeholder { width: 90px; height: 90px; border: 1px solid #000; margin-right: 15px; }
        .text-content { text-align: justify; flex: 1; line-height: 1.5; }

        /* Tabla */
        table { width: 100%; border-collapse: collapse; margin-top: 15px; font-size: 10px; }
        th { background-color: #f2f2f2; border: 1px solid #ccc; padding: 8px; text-transform: uppercase; }
        td { border: 1px solid #ccc; padding: 6px; text-align: center; }
        .text-left { text-align: left; padding-left: 8px; }
        .sub-info { display: block; font-size: 8px; color: #555; }

        /* Lógica de colores */
        .status-ACREDITADO { color: #28a745; font-weight: bold; }
        .status-PENDIENTE { color: #999; font-weight: bold; }

        .footer { margin-top: 40px; text-align: right; }
    </style>
</head>
<body>
    <div class="container">
        <div class="top-decor">
            <div class="especie-info">
                <strong>ESPECIE VALORADA</strong><br>
                Decreto leg. Oct 3 1995<br>
                R.O. 951
            </div>
            <div class="header">
                <h1>Universidad Técnica de Manabí</h1>
                <h2>INSTITUTO DE LENGUAS</h2>
                <h3 style="margin-top:15px;">CERTIFICADO DE SUFICIENCIA DE INGLÉS</h3>
            </div>
            <div style="width:100px"></div> </div>

        <div class="info-row">
            <div class="qr-placeholder"></div>
            <div class="text-content">
                Certifico que <strong>{{estudiante}}</strong>, con cédula de identidad {{cedula}}, 
                registra en la UNIVERSIDAD TÉCNICA DE MANABÍ las siguientes calificaciones para la 
                obtención de Suficiencia en INGLÉS con referencia al Marco Común Europeo:
            </div>
        </div>

        <table>
            <thead>
                <tr>
                    <th>No</th>
                    <th>Suficiencia</th>
                    <th>Nivel M.C.E.</th>
                    <th>Horas Nivel</th>
                    <th>Horas Acum.</th>
                    <th>Calificación</th>
                    <th>Tipo</th>
                    <th>Observación</th>
                </tr>
            </thead>
            <tbody>
                {{#each cursos}}
                <tr>
                    <td>{{numero}}</td>
                    <td class="text-left">
                        <strong>{{nombre}}</strong>
                        <span class="sub-info">{{periodo}}</span>
                    </td>
                    <td>{{nivel}}</td>
                    <td>{{horas}}</td>
                    <td>{{acumuladas}}</td>
                    <td>{{nota}}</td>
                    <td>{{tipo}}</td>
                    <td class="status-{{estado}}">{{estado}}</td>
                </tr>
                {{/each}}
            </tbody>
        </table>

        <div class="footer">
            <p><strong>LO CERTIFICO.</strong></p>
            <p>Fecha de impresión: {{fechaImpresion}}</p>
        </div>
    </div>
</body>
</html>