/* =====================================================
   SUBASTAS 2025 - Fundacion Malecon 2000
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f4f6f9;
    color: #333;
    min-height: 100vh;
}

/* ---- ENCABEZADO ---- */
header {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.1);
}

.banner-wrapper {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    position: relative;
}

.banner-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 65%;
    display: block;
}

.header-bar {
    background: #003A70;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    gap: 20px;
}

.header-bar .logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-bar .logo-wrap img {
    height: 60px;
    max-width: 180px;
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
    padding: 4px 8px;
}

.header-bar .titulo-inst {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.header-bar .titulo-inst span {
    display: block;
    font-size: .85rem;
    font-weight: 400;
    opacity: .85;
}

/* ---- TITULO SECCION ---- */
.seccion-titulo {
    background: linear-gradient(135deg, #003A70 0%, #0062B1 100%);
    color: #fff;
    padding: 28px 40px 24px;
    text-align: center;
}

.seccion-titulo h1 {
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: .3px;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.4;
}

.seccion-titulo h1 span {
    color: #FFD700;
}

/* ---- CONTENIDO PRINCIPAL ---- */
main {
    max-width: 960px;
    margin: 36px auto;
    padding: 0 20px 60px;
}

/* ---- GRUPO DE DOCUMENTOS ---- */
.grupo {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    margin-bottom: 28px;
    overflow: hidden;
}

.grupo-titulo {
    background: #0062B1;
    color: #fff;
    padding: 12px 22px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.grupo-titulo::before {
    content: '📋';
    font-size: 1.1rem;
}

/* ---- LISTA DE SUBASTAS ---- */
.lista-docs {
    list-style: none;
    padding: 8px 0;
}

.lista-docs li {
    border-bottom: 1px solid #f0f2f5;
    transition: background .15s;
    padding: 13px 22px;
}

.lista-docs li:last-child { border-bottom: none; }

.lista-docs li:hover { background: #f0f6ff; }

.subasta-titulo {
    font-weight: 600;
    font-size: .96rem;
    color: #003A70;
    margin-bottom: 8px;
}

.lista-docs .nombre-doc {
    font-weight: 500;
}

.lista-docs .fecha-doc {
    font-size: .88rem;
    color: #555;
    margin-left: 4px;
    white-space: nowrap;
}

/* ---- GALERIA DE ARCHIVOS POR SUBASTA ---- */
.galeria-archivos {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.miniatura-archivo {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 6px;
    border: 1.5px solid #e0e9f5;
    transition: transform .15s, border-color .15s;
    display: block;
}

.miniatura-archivo:hover { transform: scale(1.04); border-color: #0062B1; }

.archivo-doc-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 84px;
    height: 84px;
    text-align: center;
    font-size: .72rem;
    color: #0062B1;
    text-decoration: none;
    background: #f8faff;
    border: 1.5px solid #e0e9f5;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s, border-color .15s;
}

.archivo-doc-link:hover {
    background: #dceeff;
    border-color: #0062B1;
    text-decoration: underline;
}

.archivo-doc-link .icono-doc {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* ---- ITEM SIN ARCHIVO (pendiente) ---- */
.doc-sin-archivo {
    color: #999;
    font-style: italic;
    font-size: .88rem;
    cursor: default;
}

.badge-pdf  { background: #FFEBEE; color: #C62828; }
.badge-xls, .badge-xlsx { background: #E8F5E9; color: #2E7D32; }
.badge-doc, .badge-docx { background: #E3F2FD; color: #1565C0; }

/* ---- SIN DOCUMENTOS ---- */
.sin-docs {
    padding: 20px 22px;
    color: #999;
    font-size: .9rem;
    font-style: italic;
}

/* ---- FOOTER ---- */
footer {
    background: #003A70;
    color: #cce0f5;
    text-align: center;
    padding: 18px 20px;
    font-size: .82rem;
}

footer a { color: #FFD700; text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
    .header-bar { padding: 10px 16px; flex-wrap: wrap; }
    .seccion-titulo { padding: 20px 16px; }
    .seccion-titulo h1 { font-size: 1.6rem; }
    main { margin: 20px auto; }
    .lista-docs li { padding: 12px 14px; }
    .miniatura-archivo,
    .archivo-doc-link { width: 64px; height: 64px; }
}
