/* ============================================================
   Llama component: dark statement section with an animated flame
   (SVG silhouette + canvas particle system, see llama.js).

   .llama__title's font-size is a literal clamp(), not var(--fz-h1) —
   same reasoning as .tri__title in tri.css: empresa.css redefines
   --fz-h1 in its own :root with different bounds than the shared token.
   ============================================================ */

.llama {
  padding: var(--pad-y) var(--pad-x);
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.llama__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 85% 30%, rgba(244, 122, 28, 0.28) 0%, rgba(244, 122, 28, 0) 60%),
    radial-gradient(ellipse at 15% 80%, rgba(6, 96, 223, 0.35) 0%, rgba(6, 96, 223, 0) 60%);
  pointer-events: none;
}
.llama__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 4.5rem;
  align-items: start;
}
.llama__kicker {
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.llama__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 2rem;
  text-wrap: balance;
}
.llama__title em {
  font-style: italic;
  color: var(--flame);
}
.llama__body {
  font-family: var(--font-serif);
  font-size: clamp(0.9375rem, 1.15vw, 1.0625rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  column-count: 2;
  column-gap: 2.75rem;
}
.llama__body p {
  margin-bottom: 0.95em;
  break-inside: avoid;
  text-wrap: pretty;
}
.llama__body p:last-child {
  margin-bottom: 0;
}
.llama__body b {
  color: var(--green);
  font-weight: 500;
}

.llama__figure {
  position: sticky;
  top: 6.25rem;
  aspect-ratio: 1 / 1;
  max-width: 30rem;
  margin: 0 auto;
  width: 100%;
  cursor: crosshair;
}
@media (max-width: 900px) {
  .llama__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .llama__body {
    column-count: 1;
  }
  /* Must stay `relative`, not `static` — the SVG/canvas inside are
     `position: absolute; inset: 0` and need this figure as their
     positioned ancestor, or they stretch over the .llama__inner text. */
  .llama__figure {
    position: relative;
    top: auto;
  }
}

.llama__figure > .llama__svg,
.llama__figure > .llama__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.llama__figure > .llama__svg {
  z-index: 1;
}
.llama__figure > .llama__canvas {
  z-index: 2;
  pointer-events: auto;
}
