/* Header personalizado */
.doc-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 24px 0 12px 0;
    text-align: center;
}

.doc-header-content.fila {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding-left: 24px;
    position: relative;
}
.doc-title {
    flex: 1;
    text-align: center;
    font-size: 2rem;
    color: #0077cc;
    font-weight: 800;
    margin: 0;
}
.doc-logo {
    width: 120px;
    max-width: 90vw;
    margin-bottom: 0;
}
.doc-title {
    font-size: 2rem;
    color: #0077cc;
    font-weight: 800;
    margin: 0;
    text-align: center;
}

/* Footer personalizado */

.doc-footer {
    background: #f8f9fa;
    text-align: center;
    padding: 18px 0;
    font-size: 1rem;
    color: #2c3e50;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.03);
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    z-index: 100;
}
.doc-footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}
.doc-address {
    font-weight: 600;
    letter-spacing: 1px;
}


@media (max-width: 600px) {
    .doc-header-content.fila {
        gap: 12px;
        padding-left: 8px;
    }
    .doc-title {
        font-size: 1.2rem;
    }
    .doc-logo {
        width: 80px;
    }
    .doc-footer {
        font-size: 0.95rem;
        padding: 12px 0;
    }
}

body {
    background: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

.pdf-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3eafc 0%, #f8f9fa 100%);
}

.container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    padding: 40px 24px;
    max-width: 500px;
    width: 100%;
}

h1 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 32px;
    text-align: center;
}

.pdf-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.pdf-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    padding: 24px 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.pdf-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
}

.pdf-actions {
    display: flex;
    gap: 16px;
}

.btn-ver, .btn-descargar {
    background: #0077cc;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.btn-ver:hover {
    background: #005fa3;
}

.btn-descargar {
    background: #28a745;
}

.btn-descargar:hover {
    background: #218838;
}

@media (max-width: 600px) {
    .pdf-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 16px 8px;
    }
    .pdf-title {
        font-size: 1rem;
    }
    .btn-ver, .btn-descargar {
        padding: 8px 12px;
        font-size: 0.95rem;
    }
}
