/* Pure HTML + CSS mockup (no frameworks) */
:root {
  --bg-dark: #262626;
  --text: #f2f2f2;
  --muted: #cfcfcf;
  --yellow: #f1c24a;
  --yellow-2: #f6cf62;
  --purple: #c8b7da;
  --green: #bfe0a8;
  --ink: #2b2b2b;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  margin: 0 auto;
  min-height: 520px;
  background: #262626 url("https://podernarrativo.org//recursos-colecciones/assets/img/hero-bg-yellow.png") center/cover no-repeat;
  overflow: hidden;
}

.topbar {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
  font-weight: 700;
  width: 65px;
}

.brand__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #111;
  opacity: .2;
}

.brand__name {
  letter-spacing: .2px;
  font-size: 14px;
}

.menuBtn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: #2a2a2a;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  display: grid;
  place-items: center;
}

.menuBtn__lines {
  width: 18px;
  height: 12px;
  display: block;
  background:
    linear-gradient(#fff, #fff) 0 0/100% 2px no-repeat,
    linear-gradient(#fff, #fff) 0 50%/100% 2px no-repeat,
    linear-gradient(#fff, #fff) 0 100%/100% 2px no-repeat;
}

.hero__inner {
  min-height: 447px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 16px 78px;
}

.hero__titleImg {
  width: min(660px, 85vw);
}

.hero__tear {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  width: 100%;
  height: 149px;
  pointer-events: none;
}

/* MAIN */
.main {
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}



.intro,
.section-cta,
.section-note {
  width: min(700px, 92vw);
  margin: 0 auto;
  padding: 10px 0;
  text-align: center;
}

.section-desc {
  width: 100%;
  background: url(./assets/bg-dotted-hills.png) center / contain no-repeat;
  text-align: center;
  padding: 10px 0;
  min-height: 348px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro {
  padding: 56px 0 10px;
}

.intro__lead {
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.4px;
  margin: 0 auto 26px;
  width: min(860px, 100%);
}

.hl {
  color: var(--yellow);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  position: relative;
  margin: 12px auto 26px;
  padding: 0;
}

.cta img {
  width: min(560px, 92vw);
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, .35));
}

.cta__label {
  position: absolute;
  left: 50%;
  bottom: 65px;
  transform: translateX(35%);
  color: #1a1a1a;
  font-weight: 600;
  font-size: 14px;
  background: rgba(200, 183, 218, .95);
  padding: 8px 14px;
  border-radius: 999px;
}

.intro__sub {
  margin: 0 auto 22px;
  width: min(700px, 92vw);
  background-color: #262626;
  border-radius: 94px;
  min-height: 167px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.intro__sub p {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
  padding: 10px 30px;
}

.introNote {
  position: relative;
  width: min(980px, 100%);
  margin: 44px auto 60px;
}

.introNote__img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, .25));
}

.introNote__copy {
  position: absolute;
  left: 210px;
  /* clears the clock */
  right: 56px;
  top: 40px;
  bottom: 28px;
  display: flex;
  align-items: center;
}

.introNote__copy p {
  margin: 0;
  color: #2b2b2b;
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1.35;
}

.introNote__copy b {
  font-weight: 800;
}

.introNote__copy i {
  font-style: italic;
}

/* COLLECTIONS */
.collections {
  width: min(700px, 92vw);
  margin: 10px auto 40px;
  padding-bottom: 20px;
}

.cardRow {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  margin: 26px 0;
  position: relative;
}

.collectionCard {
  background: #f2f0ea;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .35);
  overflow: hidden;
}

.collectionCard img {
  width: 100%;
  height: auto;
  display: block;
}

.collectionCard--placeholder {
  padding: 22px 18px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.collectionCard__phTitle {
  font-size: 28px;
  line-height: 1.02;
  font-weight: 800;
  color: #2a2a2a;
}

.collectionCard__phSub {
  font-size: 13px;
  color: #444;
  opacity: .9;
}

.cardRow__right {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.paper {
  position: relative;
  padding: 50px 40px 53px 94px;
  max-width: 362px;
  min-height: 190px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  border-radius: 18px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
}

.paper .btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 200px;
  margin: 0 auto;
  text-align: center;
}

.paper--purple {
  background-image: url("https://podernarrativo.org//recursos-colecciones/assets/img/paper-bg-purple.png");
}

.paper--green {
  background-image: url("https://podernarrativo.org//recursos-colecciones/assets/img/paper-bg-green.png");
}

.paper--empty {
  background: transparent;
  box-shadow: none;
}

.paper__text {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #000;
}

.btn {
  display: inline-block;
  background: var(--yellow-2);
  color: #1c1c1c;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
}

.paper__soon {
  font-weight: 800;
  margin-top: 6px;
  color: #5b5656;
}


/* vertical sticker text (right side) */
.stickerVertical {
  position: absolute;
  right: -70px;
  top: -10px;
  transform: rotate(-90deg);
  transform-origin: top right;
  display: flex;
  gap: 12px;
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: .5px;
  font-size: 22px;
  opacity: .9;
  white-space: nowrap;
}

/* FOOTER */
.footer {
  width: min(1100px, 92vw);
  margin: 32px auto 26px;
  padding: 18px 0 34px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  color: #cfcfcf;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer a {
  color: #fff;
  opacity: .9;
}

.footer a:hover {
  opacity: 1;
}

/* RESPONSIVE */




.arrowBtn {
  position: absolute;
  left: -34px;
  top: 50%;
  width: 68px;
  height: 68px;
  transform: translateY(-50%);
  border: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  background-image: url("https://podernarrativo.org//recursos-colecciones/assets/img/icon-arrow-circle.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

.arrowBtn--right {
  transform: translateY(-50%) rotate(180deg);
}

/* ==========================================================================
   MEDIA QUERIES (Moved to bottom)
   ========================================================================== */

@media (max-width: 900px) {
  .cardRow {
    grid-template-columns: 1fr;
  }

  .cardRow__right {
    min-height: unset;
    justify-content: center;
  }

  .stickerVertical {
    display: none;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .arrowBtn {
    left: -10px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 460px;
  }

  .hero__inner {
    min-height: 460px;
    padding-top: 86px;
  }

  .intro {
    padding-top: 42px;
  }

  .cta__label {
    left: 50%;
    transform: translateX(-10%);
    bottom: 16px;
    font-size: 13px;
  }
}

@media (max-width: 820px) {
  .introNote__copy {
    position: static;
    padding: 16px 12px 0;
    color: #f4f4f4;
  }
}