:root {
  --green-900: #004d2f;
  --green-800: #0f6b4f;
  --green-700: #1d7f5f;
  --green-600: #2e8b57;
  --gold: #f4c542;
  --gold-soft: #ffe89a;
  --paper: #ffffff;
  --mist: #f5f7f8;
  --text: #1f2937;
  --muted: #64706d;
  --shadow: 0 18px 42px rgba(0, 77, 47, .15);
}

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

html,
body {
  min-height: 100%;
}

body {
  background: #dde7e9;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
}

/* ----------------------------------------------------
   Barra Flotante de Acciones
---------------------------------------------------- */
.toolbar {
  width: 1080px;
  max-width: 95%;
  margin: 16px 0 12px;
  display: flex;
  justify-content: flex-end;
}

.toolbar__container {
  background: rgba(0, 77, 47, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 22px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 77, 47, 0.2);
}

.toolbar__title {
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
}

.toolbar__btn {
  background: var(--gold);
  color: var(--green-900);
  border: none;
  border-radius: 10px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(244, 197, 66, 0.3);
}

.toolbar__btn:hover {
  background: #ffffff;
  color: var(--green-900);
  transform: translateY(-2px);
}

/* ----------------------------------------------------
   Póster Infográfico
---------------------------------------------------- */
.poster {
  width: 1080px;
  min-height: 1920px;
  background: linear-gradient(180deg, #fff 0%, #fbfcfc 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .18);
}

/* ----------------------------------------------------
   Hero / Encabezado
---------------------------------------------------- */
.hero {
  height: 520px;
  position: relative;
  overflow: hidden;
  padding: 46px 56px 38px 62px;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 58%, var(--green-600) 100%);
  color: white;
  border-bottom-left-radius: 54px;
  border-bottom-right-radius: 54px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -34px 0;
  height: 88px;
  background: linear-gradient(90deg, transparent, rgba(244, 197, 66, .9), transparent);
  opacity: .9;
  clip-path: polygon(0 72%, 18% 58%, 39% 72%, 61% 43%, 82% 67%, 100% 51%, 100% 100%, 0 100%);
}

.hero__shape {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero__shape--one {
  width: 760px;
  height: 310px;
  right: -140px;
  top: -120px;
  background: rgba(124, 197, 118, .28);
  border: 2px solid rgba(255, 232, 154, .34);
}

.hero__shape--two {
  width: 650px;
  height: 160px;
  right: -180px;
  bottom: -110px;
  background: rgba(244, 197, 66, .45);
}

.hero__shape--three {
  width: 390px;
  height: 390px;
  left: -210px;
  top: 160px;
  background: rgba(255, 255, 255, .08);
  border: 2px solid rgba(255, 255, 255, .14);
}

.hero__shape--four {
  width: 180px;
  height: 180px;
  right: 330px;
  top: 32px;
  border: 18px solid rgba(244, 197, 66, .18);
}

.hero__copy {
  position: relative;
  z-index: 4;
  width: 690px;
}

.eyebrow {
  font-weight: 800;
  font-size: 39px;
  letter-spacing: .7px;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #fff;
}

.hero h1 {
  font-size: 62px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -2.2px;
  max-width: 690px;
  text-shadow: 0 8px 18px rgba(0, 0, 0, .22);
}

.subtitle {
  margin-top: 14px;
  color: var(--gold);
  font-weight: 900;
  font-size: 31px;
  line-height: 1.1;
}

.gold-rule {
  width: 560px;
  height: 5px;
  border-radius: 10px;
  background: var(--gold);
  margin: 18px 0 18px;
  box-shadow: 0 3px 10px rgba(244, 197, 66, .35);
}

.meta {
  display: grid;
  gap: 9px;
}

.meta p {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.meta__icon {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.seal {
  position: absolute;
  right: 74px;
  top: 54px;
  z-index: 6;
}

.seal__ring {
  width: 262px;
  height: 262px;
  border-radius: 50%;
  background: #fff;
  border: 14px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .36), inset 0 0 0 5px rgba(15, 107, 79, .08);
}

.seal__ring img {
  width: 216px;
  height: 216px;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

/* ----------------------------------------------------
   Tarjetas de Contenido
---------------------------------------------------- */
.cards {
  padding: 42px 102px 0;
  display: grid;
  gap: 20px;
  position: relative;
  z-index: 3;
}

.card {
  min-height: 145px;
  background: var(--paper);
  border-radius: 26px;
  position: relative;
  display: grid;
  grid-template-columns: 146px 1fr;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 107, 79, .08);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .62s ease, transform .62s ease, box-shadow .25s ease;
}

.card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  box-shadow: 0 24px 52px rgba(0, 77, 47, .18);
  transform: translateY(-3px);
}

.card__bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), #e7b62f);
}

/* ===== ICONOS DE LAS TARJETAS ===== */

.card__icon {
  width: 110px;
  height: 110px;
  margin-left: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--gold);

  box-shadow: 0 10px 22px rgba(244, 197, 66, .36);

  padding: 8px;
  overflow: hidden;
}

/* Tamaño del SVG dentro del círculo */

.card__icon svg {
  width: 88px;
  height: 88px;
  display: block;
}

/* Fondo amarillo del icono */

.card__icon svg > circle:first-child {
  fill: var(--gold);
  stroke: none;
}

/* Figuras principales verdes */

.card__icon svg path,
.card__icon svg rect {
  fill: var(--green-800);
  stroke: none;
}

/* Líneas y detalles internos */

.card__icon svg .cut {
  fill: none !important;
  stroke: #ffffff !important;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Círculos internos */

.card__icon svg circle.cut {
  fill: none !important;
  stroke: var(--green-800) !important;
  stroke-width: 4;
}

/* Rectángulos internos */

.card__icon svg rect.cut {
  fill: none !important;
  stroke: #ffffff !important;
  stroke-width: 4;
}

.card__content {
  padding: 20px 34px 20px 12px;
}

.card h2 {
  color: var(--green-800);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -.6px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.card p {
  font-size: 22px;
  line-height: 1.34;
  font-weight: 600;
  color: var(--text);
}

.card ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 34px;
}

.card li {
  position: relative;
  font-size: 20.5px;
  line-height: 1.24;
  font-weight: 600;
  color: var(--text);
  padding-left: 24px;
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-700);
  box-shadow: 0 0 0 4px rgba(46, 139, 87, .12);
}

/* ----------------------------------------------------
   Callout Destacado
---------------------------------------------------- */
.callout {
  margin: 24px 102px 0;
  min-height: 164px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  border: 8px solid var(--gold);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 26px 54px 20px;
  box-shadow: 0 20px 42px rgba(0, 77, 47, .24);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.callout.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.callout__dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(244, 197, 66, .22);
}

.callout__dot--one {
  width: 145px;
  height: 145px;
  left: -48px;
  top: -42px;
}

.callout__dot--two {
  width: 104px;
  height: 104px;
  right: -24px;
  bottom: -34px;
}

.callout p {
  position: relative;
  z-index: 1;
  font-size: 31px;
  line-height: 1.16;
  font-weight: 900;
}

.callout strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 7px;
  color: var(--gold);
  font-size: 50px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
}

/* ----------------------------------------------------
   Pie de Página
---------------------------------------------------- */
.footer {
  margin: 30px 0 0;
  min-height: 162px;
  background: linear-gradient(90deg, #ecf8ef, #fff, #ecf8ef);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(15, 107, 79, .12);
}

.footer__line {
  position: absolute;
  top: 0;
  left: 108px;
  right: 108px;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--green-700), transparent);
  border-radius: 10px;
}

.footer__grid {
  width: 880px;
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr;
  align-items: center;
  gap: 0;
}

.footer__item {
  text-align: center;
  color: var(--green-800);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 122px;
}

.footer__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 4px solid var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(15, 107, 79, .11);
}

.footer__icon svg {
  width: 38px;
  height: 38px;
}

.footer__icon svg path,
.footer__icon svg circle {
  fill: none;
  stroke: var(--green-800);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__item span {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  color: var(--green-800);
}

.footer__item strong {
  margin-top: 6px;
  display: block;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 800;
  color: #18251f;
  max-width: 230px;
}

.cc-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 6px;
  color: var(--green-800);
}

.cc-icons svg {
  display: block;
}

.footer__copy-text {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: -0.2px;
}

.footer__divider {
  width: 2px;
  height: 82px;
  background: var(--green-700);
  opacity: .72;
  justify-self: center;
  border-radius: 10px;
}

/* ----------------------------------------------------
   Estilos de Impresión
---------------------------------------------------- */
@media print {
  body {
    background: #fff;
    padding: 0;
  }

  .toolbar {
    display: none !important;
  }

  .poster {
    box-shadow: none;
    margin: 0;
  }

  .card, .callout {
    opacity: 1 !important;
    transform: none !important;
    break-inside: avoid;
  }
}
