/* ---------------------------------------------
   ESTILOS BASE PARA REPORTES
   Adaptado de hz-publicaciones.css
--------------------------------------------- */

.hz-reportes {
  padding: 10rem 0 0;
  background: #fafafa;
  font-family: "Segoe UI", sans-serif;
  line-height: 1.65;
  color: #1c1c1c;
}

/* ---------------------------------------------
   HEADER REPORTES
   (MISMA LÓGICA VISUAL QUE PUBLICACIONES)
--------------------------------------------- */

.hz-header-reportes {
  padding: 10px 0 5px;
}

.hz-header-reportes-flex {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.hz-header-reportes-titulo {
  font-size: 1.9rem;
  font-weight: 700;
  color: #003366;
  text-align: left;
  margin-bottom: 5px;
}

.hz-header-reportes-subtitulo {
  font-size: 1.2rem;
  color: #666;
  text-align: left;
  margin-top: -5px;
  margin-bottom: 10px;
}

/* ---------------------------------------------
   CONTENEDOR PRINCIPAL
--------------------------------------------- */

.hz-reporte {
  display: flex;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

/* ---------------------------------------------
   CUERPO DEL REPORTE
--------------------------------------------- */

.hz-reporte-cuerpo {
  flex: 3;
}

.hz-reporte-contenido {
  background: #fff;
  padding: 2.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

/* ---------------------------------------------
   IMAGEN PRINCIPAL
--------------------------------------------- */

.hz-imagen-principal img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.8rem;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

/* ---------------------------------------------
   TÍTULO DEL REPORTE
--------------------------------------------- */

.hz-titulo-reporte {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 1.2rem;
}

/* ---------------------------------------------
   META INFORMACIÓN
--------------------------------------------- */

.hz-meta {
  font-size: 0.9rem;
  color: #555;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

/* ---------------------------------------------
   CONTENIDO DEL REPORTE (TIPOGRAFÍA TÉCNICA)
--------------------------------------------- */

.hz-reporte-contenido p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  color: #2b2b2b;
  text-align: justify;
}

/* Negritas estructurales */
.hz-reporte-contenido strong {
  font-weight: 600;
  color: #000;
}

/* ---------------------------------------------
   SUBTÍTULOS DE SECCIÓN
--------------------------------------------- */

.hz-reporte-contenido h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #003366;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #e0e6ef;
}

/* ---------------------------------------------
   LISTAS (SANGRÍA Y RITMO COMO EN EL CORREO)
--------------------------------------------- */

.hz-reporte-contenido ul {
  margin-left: 1.6rem;
  margin-top: 0.6rem;
  margin-bottom: 1.6rem;
  padding-left: 1rem;
}

.hz-reporte-contenido ul li {
  margin-bottom: 0.65rem;
  line-height: 1.6;
  list-style-type: disc;
}

/* ---------------------------------------------
   SIDEBAR
--------------------------------------------- */

.hz-sidebar {
  flex: 1;
  background: #f5f7fa;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  height: fit-content;
  position: sticky;
  top: 100px;
}

/* ---------------------------------------------
   RESPONSIVE
--------------------------------------------- */

@media (max-width: 768px) {
  .hz-reporte {
    flex-direction: column;
  }

  .hz-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hz-sidebar {
    position: static;
    margin-top: 2rem;
  }
}

/* ---------------------------------------------
   BLOQUE FINAL: BANNER DE SERVICIOS LEGALES
--------------------------------------------- */

.hz-banner-servicios {
  position: relative;
  background-color: #1663ac;
  overflow: hidden;
  text-align: center;
  padding: 60px 20px 40px;
}

.hz-banner-fondo {
  position: absolute;
  inset: 0;
  background-image: url('/componentes/imagenes/hexagon-trama.webp');
  background-repeat: repeat;
  background-size: auto;
  opacity: 1;
  z-index: 1;
}

.hz-banner-contenido {
  position: relative;
  z-index: 2;
}

.hz-banner-texto {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0;
}


/*boton de descarga*/

.hz-reporte-descarga {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem;
  border-top: 1px solid #e5e5e5;
}

.hz-descarga-preview img {
  width: 150px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.hz-descarga-info h3 {
  margin: 0 0 .5rem;
  font-size: 1.2rem;
  color: #003366;
}

.hz-descarga-info p {
  margin: 0 0 1rem;
  font-size: .95rem;
  color: #444;
}

.hz-btn-descarga {
  display: inline-block;
  background: #003366;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.hz-btn-descarga:hover {
  background: #00549c;
}

/* Móvil */
@media (max-width: 768px) {
  .hz-reporte-descarga {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* DISCLAIMER LEGAL */
.hz-disclaimer {
  display: flex;
  gap: 14px;
  background: #fff7d6;              /* amarillo suave */
  border-left: 5px solid #e0b200;   /* acento */
  padding: 16px 18px;
  border-radius: 8px;
  margin: 30px 0;
  font-size: 0.95rem;
  color: #5c4a00;
}

.hz-disclaimer-icon {
  font-size: 1.4rem;
  color: #e0b200;
  flex-shrink: 0;
  margin-top: 2px;
}

.hz-disclaimer h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  color: #6b5600;
}

.hz-disclaimer p {
  margin: 0;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
  .hz-disclaimer {
    font-size: 0.9rem;
  }
}
