/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 24 2026 | 19:21:37 */
/* =========================================================
   INDUSTRIAMINERA.CL
   ESTILOS GLOBALES PARA FICHAS DE EMPRESAS MINERAS
   Contenedor principal: .im-minera
   ========================================================= */

.im-minera {
  --im-yellow: #fac11c;
  --im-yellow-dark: #d89f00;
  --im-black: #222222;
  --im-text: #30343a;
  --im-muted: #68707a;
  --im-border: #e3e6e8;
  --im-background: #ffffff;
  --im-soft: #f5f6f7;
  --im-blue-soft: #f2f7fb;
  --im-radius: 10px;
  --im-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);

  width: 100%;
  color: var(--im-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.72;
}

.im-minera *,
.im-minera *::before,
.im-minera *::after {
  box-sizing: border-box;
}

.im-minera a {
  color: #9a7000;
  text-decoration: none;
}

.im-minera a:hover,
.im-minera a:focus {
  color: var(--im-black);
  text-decoration: underline;
}

/* =========================================================
   PORTADA
   La imagen se asigna individualmente mediante:
   style="--im-hero-image: url('URL-DE-LA-IMAGEN');"
   ========================================================= */

.im-minera__hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--im-radius);
  background-color: #1f2225;
  box-shadow: var(--im-shadow);
}

.im-minera__hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 7, 9, 0.96) 0%,
      rgba(5, 7, 9, 0.88) 28%,
      rgba(5, 7, 9, 0.62) 48%,
      rgba(5, 7, 9, 0.18) 75%,
      rgba(5, 7, 9, 0.08) 100%
    ),
    var(--im-hero-image, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.im-minera__hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 6px;
  background: var(--im-yellow);
}

.im-minera__hero-content {
  width: 100%;
  max-width: 780px;
  padding: 38px;
  color: #ffffff;
}

.im-minera__brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.im-minera__logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  min-width: 112px;
  height: 82px;
  padding: 12px;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

.im-minera__logo-box img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.im-minera__eyebrow {
  margin: 0 0 5px;
  color: var(--im-yellow);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.im-minera__hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.im-minera__hero-summary {
  max-width: 720px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.6;
}

.im-minera__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.im-minera__badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

/* =========================================================
   DATOS RÁPIDOS
   ========================================================= */

.im-minera__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin: 30px 0;
}

.im-minera__fact {
  min-width: 0;
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--im-border);
  border-top: 4px solid var(--im-yellow);
  border-radius: var(--im-radius);
  background: var(--im-background);
  box-shadow: var(--im-shadow);
}

.im-minera__fact-label {
  display: block;
  margin-bottom: 6px;
  color: var(--im-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.im-minera__fact-value {
  display: block;
  color: var(--im-black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

/* =========================================================
   DISTRIBUCIÓN PRINCIPAL
   ========================================================= */

.im-minera__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
  margin-top: 30px;
}

.im-minera__main,
.im-minera__sidebar {
  min-width: 0;
}

.im-minera__section,
.im-minera__card {
  margin-bottom: 24px;
  padding: 27px;
  border: 1px solid var(--im-border);
  border-radius: var(--im-radius);
  background: var(--im-background);
  box-shadow: var(--im-shadow);
}

.im-minera__section h2,
.im-minera__card h2,
.im-minera__card h3 {
  color: var(--im-black);
}

.im-minera__section h2,
.im-minera__card h2,
.im-minera__card h3,
.im-minera__section h3 {
  overflow-wrap: anywhere;
}

.im-minera__section h2 {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 11px;
  font-size: 27px;
  line-height: 1.25;
}

.im-minera__section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 4px;
  border-radius: 99px;
  background: var(--im-yellow);
}

.im-minera__section h3 {
  margin: 25px 0 8px;
  color: var(--im-black);
  font-size: 21px;
  line-height: 1.3;
}

.im-minera__section p,
.im-minera__card p {
  margin-top: 0;
}

.im-minera__section p:last-child,
.im-minera__card p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   TABLAS
   ========================================================= */

.im-minera__table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--im-border);
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
}

.im-minera__table {
  width: 100%;
  min-width: 680px;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
}

.im-minera__table th,
.im-minera__table td {
  padding: 14px 15px;
  border: 0;
  border-bottom: 1px solid var(--im-border);
  text-align: left;
  vertical-align: top;
}

.im-minera__table th {
  background: var(--im-black);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.im-minera__table tr:last-child td {
  border-bottom: 0;
}

.im-minera__table tbody tr:nth-child(even) td {
  background: var(--im-soft);
}

.im-minera__table tbody tr:hover td {
  background: #fff9e6;
}

.im-minera__status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  background: #e8f5e9;
  color: #256a2d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

/* =========================================================
   TARJETAS INTERNAS Y LISTAS
   ========================================================= */

.im-minera__grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.im-minera__mini-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--im-border);
  border-radius: 8px;
  background: var(--im-soft);
}

.im-minera__mini-card h3 {
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.35;
}

.im-minera__mini-card p:last-child {
  margin-bottom: 0;
}

.im-minera__list {
  margin: 0;
  padding-left: 22px;
}

.im-minera__list li {
  margin: 7px 0;
  padding-left: 3px;
}

.im-minera__list li::marker {
  color: var(--im-yellow-dark);
  font-weight: 700;
}

.im-minera__notice {
  padding: 18px 20px;
  border-left: 5px solid var(--im-yellow);
  border-radius: 6px;
  background: #fff8df;
  color: var(--im-text);
}

/* =========================================================
   BARRA LATERAL
   ========================================================= */

.im-minera__sidebar .im-minera__card {
  padding: 22px;
}

.im-minera__sidebar h2,
.im-minera__sidebar h3 {
  margin: 0 0 16px;
  font-size: 21px;
  line-height: 1.3;
}

.im-minera__contact-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--im-border);
}

.im-minera__contact-row:first-of-type {
  padding-top: 0;
}

.im-minera__contact-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.im-minera__contact-label {
  display: block;
  margin-bottom: 3px;
  color: var(--im-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.im-minera__contact-value {
  color: var(--im-black);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.im-minera a.im-minera__contact-value {
  color: #795900;
}

.im-minera__buttons {
  display: grid;
  gap: 10px;
}

.im-minera__button {
  display: block;
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--im-yellow);
  border-radius: 7px;
  background: var(--im-yellow);
  color: var(--im-black) !important;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none !important;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease;
}

.im-minera__button:hover,
.im-minera__button:focus {
  border-color: var(--im-yellow-dark);
  background: var(--im-yellow-dark);
  color: var(--im-black) !important;
  text-decoration: none !important;
  transform: translateY(-1px);
}

.im-minera__button--dark {
  border-color: var(--im-black);
  background: var(--im-black);
  color: #ffffff !important;
}

.im-minera__button--dark:hover,
.im-minera__button--dark:focus {
  border-color: #000000;
  background: #000000;
  color: #ffffff !important;
}

.im-minera__button--outline {
  background: #ffffff;
  color: var(--im-black) !important;
}

.im-minera__button--outline:hover,
.im-minera__button--outline:focus {
  background: var(--im-yellow);
}

.im-minera__source-note {
  color: var(--im-muted);
  font-size: 13px;
  line-height: 1.55;
}

/* =========================================================
   NOTA EDITORIAL
   ========================================================= */

.im-minera__footer-note {
  margin-top: 24px;
  padding: 17px 19px;
  border: 1px dashed #b9bec4;
  border-radius: 8px;
  background: #ffffff;
  color: var(--im-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

.im-minera a:focus-visible,
.im-minera button:focus-visible {
  outline: 3px solid rgba(250, 193, 28, 0.55);
  outline-offset: 3px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {
  .im-minera__layout {
    grid-template-columns: 1fr;
  }

  .im-minera__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .im-minera__sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .im-minera__sidebar .im-minera__card {
    margin-bottom: 0;
  }
}

/* =========================================================
   HERO: TIPOGRAFÍA Y CONTRASTE
   ========================================================= */

.im-minera .im-minera__hero,
.im-minera .im-minera__hero-content {
  color: #ffffff;
}

.im-minera .im-minera__hero .im-minera__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.im-minera .im-minera__hero .im-minera__brand > div:last-child {
  display: block;
  min-width: 0;
}

.im-minera .im-minera__hero .im-minera__eyebrow {
  display: block;
  margin: 0 0 6px;
  color: #fac11c;
  -webkit-text-fill-color: #fac11c;
  opacity: 1;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 1);
}

.im-minera .im-minera__hero .im-minera__hero-title {
  display: block;
  margin: 0;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  opacity: 1;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 1);
}

.im-minera .im-minera__hero .im-minera__hero-summary {
  max-width: 720px;
  margin: 18px 0 0;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  opacity: 1;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 1);
}

.im-minera .im-minera__hero .im-minera__badge {
  color: #ffffff;
  opacity: 1;
  background: rgba(0, 0, 0, 0.62);
  border-color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 1);
}

/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 640px) {
  .im-minera {
    font-size: 16px;
    line-height: 1.68;
  }

  .im-minera__hero {
    min-height: 440px;
    border-radius: 8px;
  }

  .im-minera__hero::before {
    background-image:
      linear-gradient(
        180deg,
        rgba(10, 12, 14, 0.28) 0%,
        rgba(10, 12, 14, 0.58) 42%,
        rgba(10, 12, 14, 0.96) 100%
      ),
      var(--im-hero-image, none);
  }

  .im-minera__hero-content {
    padding: 25px 20px 30px;
  }

  .im-minera .im-minera__hero .im-minera__brand {
    align-items: flex-start;
    gap: 13px;
  }

  .im-minera__logo-box {
    width: 110px;
    min-width: 110px;
    height: 82px;
    padding: 11px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }

  .im-minera .im-minera__hero .im-minera__eyebrow {
    font-size: 12px;
    line-height: 1.35;
  }

  .im-minera .im-minera__hero .im-minera__hero-title {
    font-size: clamp(34px, 10vw, 44px);
  }

  .im-minera .im-minera__hero .im-minera__hero-summary {
    font-size: 16px;
    line-height: 1.55;
  }

  .im-minera__facts,
  .im-minera__grid-2,
  .im-minera__sidebar {
    grid-template-columns: 1fr;
  }

  .im-minera__fact {
    min-height: auto;
  }

  .im-minera__section,
  .im-minera__card,
  .im-minera__sidebar .im-minera__card {
    padding: 21px 18px;
  }

  .im-minera__section h2 {
    font-size: 24px;
  }

  .im-minera__section h3 {
    font-size: 19px;
  }

  .im-minera__layout {
    gap: 20px;
    margin-top: 24px;
  }
}
