/*
 * inline-styles.css
 * Estilos extraídos de atributos style="" y del bloque <style> del <head>
 * Comfandi - Portal Asamblea 2026
 * Mitiga: CSP style-src unsafe-inline
 */

/* ── Fuentes locales (extraído del <style> en <head>) ─────────────── */
@font-face {
  font-family: 'Outfit';
  src: url('../assets/fonts/Outfit-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit';
  src: url('../assets/fonts/Outfit-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
body { font-family: 'Outfit', sans-serif; }
h1   { font-weight: 700; }

/* ── Logo del header ──────────────────────────────────────────────── */
/* Reemplaza: style="height:auto; max-width:75%; margin-left:0rem;" */
.site-logo-img {
  height: auto;
  max-width: 75%;
  margin-left: 0;
}

/* ── Banner hero ──────────────────────────────────────────────────── */
/* Reemplaza: style="width:-webkit-fill-available;" */
.banner-hero-img {
  width: -webkit-fill-available;
  width: stretch;
  width: 100%;
}

/* ── Contador regresivo ───────────────────────────────────────────── */
/* Reemplaza: style="color:#003da5" en el label "Inicia en:" */
.counter-label-color { color: #003da5; }

/* Reemplaza: style="color:#003da5;" en los span days/hours/minutes/seconds */
.counter-time-color  { color: #003da5; }

/* ── Texto de convocatoria ────────────────────────────────────────── */
/* Reemplaza: style="color:#003da5;" en <span> */
.color-primary { color: #003da5; }

/* Reemplaza: style="color:#003da5; font-weight:bold; font-family:'Outfit'" */
.convocatoria-title {
  color: #003da5;
  font-weight: bold;
  font-family: 'Outfit', sans-serif;
}

/* Reemplaza: style="text-align:justify; color:#003da5; font-weight:400; font-family:'Outfit'" */
.convocatoria-text {
  text-align: justify;
  color: #003da5;
  font-weight: 400;
  font-family: 'Outfit', sans-serif;
}

/* ── Sección centrada ─────────────────────────────────────────────── */
/* Reemplaza: style="text-align:center" */
.section-centered { text-align: center; }

/* ── Lista de archivos PTEE (oculta por defecto) ─────────────────── */
/* Reemplaza: style="display:none; margin-top:15px;" */
.lista-archivos         { display: none; margin-top: 15px; }
.lista-archivos ul      { list-style: none; padding: 0; margin: 0; }
.lista-archivos li      { margin-bottom: 8px; }

/* ── Botón de enlace de asamblea (#linkAsamblea) ─────────────────────
   En el HTML original este elemento estaba en un tag roto y el browser
   lo ignoraba. Ahora que es HTML válido, se oculta por defecto y solo
   se muestra cuando el JS añade la clase .activo (1h antes del evento).
   Reemplaza el comportamiento implícito del HTML malformado anterior. */
#linkAsamblea {
  display: none;
}
#linkAsamblea.activo {
  display: inline-flex;
  align-items: center;
}
