@font-face {
  font-family: "MoreSugar";
  src: url("fonts/MoreSugar-Regular.48b766ad3114.otf") format("opentype");
}

@font-face {
  font-family: "MoreSugarThin";
  src: url("fonts/MoreSugar-Thin.fb5c72b48655.otf") format("opentype");
}

@font-face {
  font-family: "MoreSugarExtras";
  src: url("fonts/MoreSugar-Extras.a27915caf14c.otf") format("opentype");
}
:root {
  --green-base: #7FB77E;
  --green-accent: #5FAF8F;
  --cream: #E8E1D9;
  --off-white: #F7F5F2;
  --text: #4A4A4A;
  --coral: #FF6B6B;
  --yellow: #FFD166;
  --lilac: #C7B8D9;
  --blue: #8AB6D6;
  --black: #191919;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "MoreSugarThin", sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
}

.hero-text,
.paper-card p,
.event-card p,
.media-card p,
.history-content p,
.cta-box p,
.photo small,
.footer p {
  font-family: "MoreSugarThin", sans-serif;
  font-weight: 400;
}

/* HEADER */

.site-header {
  width: min(1180px, calc(100% - 32px));
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  background: rgba(247, 245, 242, 0.85);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-radius: 20px;
}

.brand {
  font-family: "MoreSugar", sans-serif;
  color: var(--black);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  gap: 18px;
}

.main-nav a {
  font-family: "MoreSugar", sans-serif;
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.main-nav a:hover {
  color: var(--green-accent);
}

/* HERO */

.hero {
  min-height: 92svh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 105px 24px 38px;
  background:
    linear-gradient(rgba(247,245,242,0.10), rgba(247,245,242,0.22)),
    url("img/fondos/fondo-hoja.4e84034a8237.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -35px;
  width: 110%;
  height: 95px;
  background: var(--black);
  clip-path: polygon(0 35%, 7% 55%, 15% 38%, 25% 62%, 38% 44%, 50% 70%, 62% 40%, 75% 58%, 86% 42%, 100% 66%, 100% 100%, 0 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(900px, 100%);
  text-align: center;
  padding: 0px 30px 10px;
  background: transparent;

  transform: translateY(-85px);
}

.eyebrow,
.tag {
  display: inline-block;
  font-family: "MoreSugar", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  background: var(--yellow);
  padding: 8px 14px;
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.16);
}

.hero-logo-wrap {
  position: relative;
  width: min(720px, 100%);
  margin: 18px auto 14px;
  display: grid;
  place-items: center;
}

.hero-paper-img {
  width: 100%;
  display: block;
  filter: drop-shadow(10px 12px 0 rgba(0,0,0,0.16));
}

.hero-logo-img {
  position: absolute;
  width: 70%;
  max-width: 520px;
  height: auto;
  display: block;
  transform: translateY(-30px);
  filter: drop-shadow(4px 5px 0 rgba(0,0,0,0.18));
}

.hero-text {
  max-width: 600px;
  margin: 0 auto 10px;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: var(--black);
  font-weight: 600;
  transform: translateY(-45px);
  margin-bottom: 6px;

}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}


/* HERO ALTERNATIVO OSCURO */

.hero-dark {
  min-height: 92svh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 120px 24px 60px;
  background:
    linear-gradient(rgba(0,0,0,0.12), rgba(0,0,0,0.18)),
    url("img/papel/Paper-18.3559640ed33e.png");
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.hero-dark::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -35px;
  width: 110%;
  height: 95px;
  background: var(--off-white);
  clip-path: polygon(0 35%, 7% 55%, 15% 38%, 25% 62%, 38% 44%, 50% 70%, 62% 40%, 75% 58%, 86% 42%, 100% 66%, 100% 100%, 0 100%);
  z-index: 2;
}

.hero-dark-content {
  position: relative;
  z-index: 5;
  width: min(920px, 100%);
  text-align: center;
  transform: translateY(-40px);
}

.hero-dark-logo-wrap {
  width: min(680px, 100%);
  margin: 18px auto 8px;
  filter: drop-shadow(12px 14px 0 rgba(0,0,0,0.35));
}

.hero-dark-logo {
  width: 100%;
  display: block;
}

.hero-dark-text {
  font-family: "MoreSugarThin", sans-serif;
  max-width: 680px;
  margin: 0 auto 28px;
  color: var(--off-white);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  text-shadow: 3px 3px 0 rgba(0,0,0,0.45);
}

.hero-dark-decor {
  position: absolute;
  pointer-events: none;
  user-select: none;
  height: auto;
  filter: drop-shadow(8px 9px 0 rgba(0,0,0,0.28));
}

.hero-dark-paper-left {
  width: 380px;
  left: -95px;
  top: 145px;
  transform: rotate(-8deg);
  z-index: 1;
}

.hero-dark-paper-right {
  width: 410px;
  right: -120px;
  top: 150px;
  transform: rotate(8deg);
  z-index: 1;
}

.hero-dark-paper-bottom {
  width: 130%;
  left: -15%;
  bottom: -1180px;
  z-index: 1;
}

.hero-dark-megaphone {
  width: 180px;
  left: 9%;
  top: 43%;
  transform: rotate(20deg) scaleX(-1);
  z-index: 3;
}

.hero-dark-light {
  width: 110px;
  right: 15%;
  bottom: 22%;
  transform: rotate(-12deg);
  z-index: 3;
}

.hero-dark-smile {
  width: 110px;
  right: 10%;
  top: 18%;
  transform: rotate(10deg);
  z-index: 3;
}

.hero-dark-star {
  width: 90px;
  left: 18%;
  bottom: 18%;
  transform: rotate(15deg);
  z-index: 3;
}

.hero-dark .btn-secondary {
  background: var(--off-white);
}

.hero-dark .tag {
  position: relative;
  z-index: 6;
}

/* BOTONES */

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: "MoreSugar", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 24px;
  border-radius: 999px;
  color: var(--black);
  border: 3px solid var(--black);
  box-shadow: 5px 5px 0 var(--black);
  transition: 0.2s ease;
}

.btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--black);
}

.btn-primary {
  background: var(--green-base);
}

.btn-secondary {
  background: var(--off-white);
}
.hero-actions {
  margin-top: -25px;
}

/* DECORACIONES */

.hero-color-paper {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(6px 7px 0 rgba(0,0,0,0.10));
}

.hero-pink-paper {
  width: 360px;
  top: 88px;
  left: -70px;
  transform: rotate(-9deg);
  opacity: 0.9;
}

.hero-purple-paper {
  width: 390px;
  top: 105px;
  right: -95px;
  transform: rotate(8deg);
  opacity: 0.9;
}

.decor {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  user-select: none;
  height: auto;
  filter: drop-shadow(6px 7px 0 rgba(0,0,0,0.16));
}



.decor-megaphone {
  width: 190px;
  left: 6%;
  top: 42%;
  transform: rotate(20deg) scaleX(-1);
}

.decor-light {
  width: 82px;
  right: 15%;
  bottom: 16%;
  transform: rotate(-12deg);
}

.decor-sign {
  width: 78px;
  right: 10%;
  top: 49%;
  transform: rotate(8deg);
}

.decor-star {
  width: 82px;
  right: 14%;
  top: 29%;
  transform: rotate(15deg);
}

.decor-paper-note {
  width: 190px;
  left: -55px;
  bottom: 92px;
  transform: rotate(-9deg);
  opacity: 0.9;
}

.decor-extra-left {
  width: 160px;
  left: 6%;
  bottom: 10%;
  transform: rotate(-12deg);
}
.decor-paper-top-left {
  width: 170px;
  left: 19%;
  bottom: 23%;
  top: auto;
  transform: rotate(-10deg);
  opacity: 0.95;
  z-index: 3;
}

/* SECCIONES */

.section {
  padding: 100px 24px;
  position: relative;
  scroll-margin-top: 110px;
}

.section-light {
  background: var(--off-white);
}

.section-dark {
  background: var(--black);
  color: var(--off-white);
}

.section-heading {
  width: min(1050px, 100%);
  margin: 0 auto 44px;
}

.section-heading h2,
.cta-box h2,
.history-content h2 {
  font-family: "MoreSugar", sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.95;
  color: var(--black);
  text-transform: uppercase;
  margin-top: 18px;
}

.light-heading h2 {
  color: var(--off-white);
}

/* CARDS */

.festival-section {
  background:
    linear-gradient(rgba(247,245,242,0.10), rgba(247,245,242,0.16)),
    url("img/papel/Paper-6.e4a8b0da42e6.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.festival-heading {
  text-align: center;
}

.festival-title-img {
  display: block;
  width: min(700px, 90%);
  height: auto;
  margin: 20px auto 0;
  transform: translateX(25px);
}
.fecha-section {
  background: url("img/papel/Paper-18.3559640ed33e.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.fecha-section {
  position: relative;
  overflow: hidden;
}
.fecha-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  height: auto;
  filter: drop-shadow(6px 8px 0 rgba(0,0,0,0.25));
}
.fecha-top-paper {
  width: 420px;
  top: -287px;
  left: 25%;
  transform: rotate(-3deg);
}
.fecha-sticker-top-left {
  width: 140px;
  top: 20px;
  left: 40px;
}
.fecha-sticker-top-right {
  width: 120px;
  top: 10px;
  right: 40px;
}
.fecha-paper-left {
  width: 200px;
  left: -40px;
  top: 35%;
  transform: rotate(-10deg);
}
.fecha-sticker-bottom-right {
  width: 180px;
  right: 30px;
  bottom: 40px;
}
.fecha-paper-bottom {
  width: 110%;
  left: -5%;
  bottom: -1050px;
  z-index: 0;
}
.section-heading,
.event-cards {
  position: relative;
  z-index: 3;
}

.paper-bg {
  position: relative;
  background: transparent;
  border: 0;
  box-shadow: none;
  isolation: isolate;
}

.paper-bg::before {
  content: "";
  position: absolute;
  inset: -34px -36px;
  z-index: -1;
  background-image: var(--paper-img);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(10px 12px 0 rgba(0,0,0,0.12));
}

.paper-bg-1 {
  --paper-img: url("img/papel/Paper-8.d12b557d9e0a.png");
  padding: 54px 58px;
}

.paper-bg-2 {
  --paper-img: url("img/papel/Paper-10.024c4992ee30.png");
  padding: 44px 50px;
}

.paper-bg-3 {
  --paper-img: url("img/papel/Paper-7.4fb4040f153c.png");
  padding: 44px 50px;
}

.intro-grid {
  width: min(1050px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 26px;
}



.paper-card:nth-child(2) {
  transform: rotate(2deg);
}

.paper-card:nth-child(3) {
  transform: rotate(-2deg);
}

.big-card {
  grid-row: span 2;
}

.paper-card h3,
.event-card h3,
.media-card h3 {
  font-family: "MoreSugar", sans-serif;
  color: var(--black);
  text-transform: uppercase;
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.paper-card p,
.media-card p,
.history-content p,
.cta-box p {
  font-size: 1.25rem;
  line-height: 1.5;
}

.festival-facts {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  font-size: 1.08rem;
  line-height: 1.35;
}

.festival-facts li {
  position: relative;
  padding: 10px 12px 10px 42px;
  background: rgba(255, 255, 255, 0.48);
  border: 2px solid rgba(25, 25, 25, 0.72);
  border-radius: 14px;
}

.festival-facts li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 9px;
  font-weight: 900;
}

.yellow {
  background: var(--yellow);
}

/* EVENTO */

.event-cards {
  width: min(1050px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.event-card {
  background: var(--off-white);
  color: var(--black);
  padding: 32px;
  text-align: center;
  border-radius: 26px;
  box-shadow: 8px 8px 0 var(--green-accent);
}

.event-card span {
  font-size: 3rem;
  display: block;
  margin-bottom: 10px;
}

.event-card p {
  font-size: 1.3rem;
}

/* ORIGEN - FORMATO DIFERENTE */

.origen-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(247,245,242,0.10), rgba(247,245,242,0.18)),
    url("img/fondos/fondo-hoja.4e84034a8237.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.origen-layout {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.origen-title h2 {
  font-family: "MoreSugar", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: .92;
  color: var(--black);
  text-transform: uppercase;
  margin: 18px 0 22px;
}

.origen-title p {
  font-size: 1.25rem;
  line-height: 1.45;
  max-width: 470px;
  margin-bottom: 30px;
}

.origen-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.origen-step {
  position: relative;
  background: transparent;
  padding: 34px 38px;
  isolation: isolate;
}

.origen-step::before {
  content: "";
  position: absolute;
  inset: -24px -28px;
  z-index: -1;
  background-image: url("img/papel/Paper-8.d12b557d9e0a.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  filter: drop-shadow(9px 10px 0 rgba(0,0,0,.13));
}

.origen-step:nth-child(2)::before {
  background-image: url("img/papel/Paper-10.024c4992ee30.png");
}

.origen-step:nth-child(3)::before {
  background-image: url("img/papel/Paper-7.4fb4040f153c.png");
}

.origen-step span {
  display: inline-block;
  font-family: "MoreSugar", sans-serif;
  background: var(--yellow);
  color: var(--black);
  padding: 5px 10px;
  margin-bottom: 12px;
  transform: rotate(-3deg);
  box-shadow: 4px 4px 0 rgba(0,0,0,.14);
}

.origen-step h3 {
  font-family: "MoreSugar", sans-serif;
  text-transform: uppercase;
  color: var(--black);
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.origen-step p {
  font-size: 1.12rem;
  line-height: 1.4;
}

.origen-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(6px 8px 0 rgba(0,0,0,.18));
}

.origen-paper-left {
  width: 280px;
  left: -95px;
  top: 110px;
  transform: rotate(-10deg);
}

.origen-paper-right {
  width: 300px;
  right: -100px;
  bottom: 80px;
  transform: rotate(8deg);
}

.origen-light {
  width: 95px;
  right: 8%;
  top: 17%;
}

.origen-megaphone {
  width: 130px;
  left: 5%;
  bottom: 10%;
  transform: rotate(18deg) scaleX(-1);
}

/* CTA */

.cta-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(247,245,242,0.12), rgba(247,245,242,0.18)),
    url("img/papel/Paper-6.e4a8b0da42e6.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.cta-box {
  position: relative;
  z-index: 3;
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
  background: transparent;
  padding: 70px 58px;
  isolation: isolate;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: -35px -45px;
  z-index: -1;
  background-image: url("img/papel/Paper-8.d12b557d9e0a.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(12px 14px 0 rgba(0,0,0,0.16));
}

.cta-box p {
  max-width: 680px;
  margin: 22px auto 30px;
}

.cta-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  height: auto;
  filter: drop-shadow(7px 8px 0 rgba(0,0,0,0.18));
}

.cta-paper-left {
  width: 330px;
  left: -90px;
  top: 70px;
  transform: rotate(-8deg);
}

.cta-paper-right {
  width: 360px;
  right: -100px;
  bottom: 60px;
  transform: rotate(9deg);
}

.cta-megaphone {
  width: 160px;
  left: 8%;
  bottom: 18%;
  transform: rotate(18deg) scaleX(-1);
}

.cta-phone {
  width: 170px;
  right: 7%;
  top: 18%;
  transform: rotate(8deg);
}

.cta-light {
  width: 95px;
  right: 17%;
  bottom: 20%;
  transform: rotate(-12deg);
}

/* AVANCES */

.avances-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(247,245,242,0.08), rgba(247,245,242,0.14)),
    url("img/papel/Paper-19.502330987177.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.avances-section .section-heading,
.media-grid {
  position: relative;
  z-index: 3;
}

.avances-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  height: auto;
  filter: drop-shadow(7px 8px 0 rgba(0,0,0,0.16));
}

.avances-paper-left {
  width: 330px;
  left: -95px;
  top: 85px;
  transform: rotate(-8deg);
}

.avances-paper-right {
  width: 360px;
  right: -110px;
  bottom: 70px;
  transform: rotate(9deg);
}

.avances-megaphone {
  width: 145px;
  left: 8%;
  bottom: 12%;
  transform: rotate(18deg) scaleX(-1);
}

.avances-light {
  width: 90px;
  right: 15%;
  top: 18%;
  transform: rotate(-12deg);
}

.avances-sticker-top {
  width: 100px;
  right: 8%;
  top: 80px;
  transform: rotate(10deg);
}

.media-grid {
  width: min(1050px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.media-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--black);
  background: transparent;
  padding: 30px 26px 34px;
  min-height: 360px;
  isolation: isolate;
  transition: transform 0.2s ease;
}

.media-card::before {
  content: "";
  position: absolute;
  inset: -26px -24px;
  z-index: -1;
  background-image: url("img/papel/Paper-8.d12b557d9e0a.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(10px 12px 0 rgba(0,0,0,0.12));
}

.media-card:nth-child(2)::before {
  background-image: url("img/papel/Paper-10.024c4992ee30.png");
}

.media-card:nth-child(3)::before {
  background-image: url("img/papel/Paper-7.4fb4040f153c.png");
}

.media-card:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.media-card h3 {
  font-family: "MoreSugar", sans-serif;
  color: var(--black);
  text-transform: uppercase;
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.media-card p {
  font-size: 1.18rem;
  line-height: 1.45;
}

.media-preview {
  position: relative;
  height: 185px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 4px solid var(--off-white);
  box-shadow: 6px 7px 0 rgba(0,0,0,0.14);
  transform: rotate(-1deg);
  background: var(--black);
}

.media-preview img,
.media-preview video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.media-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.35)
  );
}

.media-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  font-family: "MoreSugar", sans-serif;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 7px 12px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
  transform: rotate(-2deg);
}

/* HISTORIA */

.history-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(247,245,242,0.10), rgba(247,245,242,0.18)),
    url("img/papel/Paper-21.f4c3852e9508.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.history-content,
.history-collage {
  position: relative;
  z-index: 3;
}

.history-content {
  max-width: 520px;
  margin-left: auto;
}

.history-content h2 {
  color: var(--black);
}

.history-content p {
  font-size: 1.25rem;
  line-height: 1.35;
}

.history-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  height: auto;
  filter: drop-shadow(7px 8px 0 rgba(0,0,0,0.16));
}

.history-paper-left {
  width: 330px;
  left: -165px;
  bottom: 80px;
  transform: rotate(-9deg);
}

.history-paper-right {
  width: 360px;
  right: -100px;
  top: 80px;
  transform: rotate(8deg);
}

.history-megaphone {
  width: 145px;
  left: 1%;
  top: 16%;
  transform: rotate(18deg) scaleX(-1);
}

.history-sticker-top {
  width: 105px;
  right: 10%;
  top: 12%;
  transform: rotate(10deg);
}

.history-light {
  width: 90px;
  right: 16%;
  bottom: 13%;
  transform: rotate(-12deg);
}

.history-collage {
  min-height: 500px;
}

.photo {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: var(--black);
  padding: 24px;
  background-size: cover;
  background-position: center;
  border: 12px solid var(--off-white);
  box-shadow: 12px 12px 0 rgba(0,0,0,0.16);
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0.78));
  z-index: 1;
}

.photo span,
.photo small {
  position: relative;
  z-index: 2;
}

.photo span {
  font-family: "MoreSugar", sans-serif;
  font-size: 1.6rem;
}

.photo small {
  font-family: "MoreSugarThin", sans-serif;
  font-size: 1rem;
  text-transform: none;
  margin-top: 4px;
  font-weight: 600;
}
.photo:hover {
  transform: translateY(-8px) rotate(0deg) scale(1.02);
}

.photo-one {
  width: 280px;
  height: 230px;
  left: 20px;
  top: 30px;
  background-image: url("img/fotos/festival-2024.966a80b66a3d.jpg");
  transform: rotate(-7deg);
}

.photo-two {
  width: 330px;
  height: 230px;
  right: 40px;
  top: 145px;
  background-image: url("img/fotos/resumen-2025.b78d5292ffd5.jpg");
  transform: rotate(5deg);
}

.photo-three {
  width: 250px;
  height: 200px;
  left: 155px;
  bottom: 20px;
  background-image: url("img/fotos/momentos.8dda93288797.jpg");
  transform: rotate(-3deg);
}
.photo-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.history-text-note {
  position: relative;
  margin-top: 18px;
  padding: 22px 28px;
  max-width: 500px;
  transform: rotate(-1deg);
  isolation: isolate;
}

.history-text-note::before {
  content: "";
  position: absolute;
  inset: -18px -24px;
  z-index: -1;
  background-image: url("img/papel/Paper-10.024c4992ee30.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(7px 8px 0 rgba(0,0,0,0.14));
}

.history-text-note p {
  color: #191919;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 600;
}
/* QUOTE */

.quote-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(247,245,242,0.10), rgba(247,245,242,0.22)),
    url("img/fondos/fondo-hoja.4e84034a8237.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.quote-paper {
  position: relative;
  z-index: 3;
  width: min(850px, 100%);
  margin: 0 auto;
  background: transparent;
  padding: 70px 58px;
  text-align: center;
  isolation: isolate;
}

.quote-paper::before {
  content: "";
  position: absolute;
  inset: -40px -55px;
  z-index: -1;
 /*  background-image: url("img/papel/Paper-8.d12b557d9e0a.png");  */
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(12px 14px 0 rgba(0,0,0,0.16));
}

.quote-paper p {
  font-family: "Pacifico", cursive;
  color: var(--black);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.quote-paper span {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
}

.quote-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  height: auto;
  filter: drop-shadow(7px 8px 0 rgba(0,0,0,0.16));
}

.quote-paper-left {
  width: 330px;
  left: -95px;
  top: 65px;
  transform: rotate(-8deg);
}

.quote-star {
  width: 95px;
  right: 12%;
  top: 24%;
  transform: rotate(15deg);
}

.quote-light {
  width: 90px;
  right: 18%;
  bottom: 18%;
  transform: rotate(-12deg);
}

.quote-motto {
  width: min(700px, 100%);
  height: auto;
  display: block;
  margin: 0 auto;
}

/* FOOTER */

.footer {
  position: relative;
  background: #111;
  color: var(--off-white);
  padding: 55px 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 42px;
  overflow: hidden;
}

.footer-left {
  position: relative;
  z-index: 2;
}

.footer-tag {
  display: inline-block;
  font-family: "MoreSugar", sans-serif;
  background: var(--yellow);
  color: var(--black);
  padding: 8px 14px;
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0 rgba(255,255,255,0.12);
  margin-bottom: 16px;
}

.footer-left p {
  font-family: "MoreSugarThin", sans-serif;
  font-size: 1.35rem;
  max-width: 340px;
}

.footer-center {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.footer-logo {
  max-width: 230px;
  width: 100%;
  filter: drop-shadow(8px 8px 0 rgba(255,255,255,0.08));
}

.footer-right {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-right a {
  text-decoration: none;
  background: var(--yellow);
  color: var(--black);
  padding: 12px 20px;
  font-family: "MoreSugar", sans-serif;
  text-transform: uppercase;
  transform: rotate(-2deg);
  box-shadow: 5px 5px 0 rgba(255,255,255,0.12);
  transition: all .2s ease;
}

.footer-right a:nth-child(2) {
  transform: rotate(2deg);
}

.footer-right a:hover {
  transform: translateY(-4px) rotate(0deg);
}

.footer-sticker {
  position: absolute;
  pointer-events: none;
  opacity: .85;
  z-index: 1;
}

.footer-smile {
  width: 85px;
  right: 34px;
  top: 22px;
}


/* RESPONSIVE */

@media (max-width: 850px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .hero {
    padding-top: 190px;
  }

  .hero-content {
    padding: 44px 22px;
  }

  .intro-grid,
  .event-cards,
  .media-grid,
  .history-section {
    grid-template-columns: 1fr;
  }

  .history-content {
    margin: 0 auto;
  }

  .history-collage {
    min-height: 520px;
  }

  .photo-one {
    left: 0;
    top: 20px;
  }

  .photo-two {
    right: 0;
    top: 180px;
  }

  .photo-three {
    left: 50px;
    bottom: 10px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .hero-content {
    border-radius: 34px;
  }

  .hero-logo-wrap {
    width: 100%;
    margin-top: 22px;
  }

  .hero-logo-img {
    width: 76%;
  }

  .decor-megaphone {
    width: 86px;
    left: 2%;
    top: 31%;
  }

  .decor-light {
    width: 64px;
    right: 5%;
    bottom: 20%;
  }

  .decor-sign {
    width: 62px;
    right: 3%;
    top: 45%;
  }

  .decor-star {
    width: 70px;
    right: 7%;
    top: 24%;
  }

  .decor-paper-note {
    width: 155px;
    left: -55px;
    bottom: 90px;
  }

  .section {
    padding: 78px 18px;
  }

  .section-heading h2,
  .cta-box h2,
  .history-content h2 {
    font-size: 2.5rem;
  }

  .history-megaphone{
    top: 50%;
    left: 10%;
    width: 85px;
  }

  .history-sticker-top{
    top: 50%;
    right: 10%;
    width: 70px;
  }

  .history-paper-right{
    top: 25%;
    right: -90px;
    width: 260px;
  }


  .paper-card,
  .cta-box,
  .quote-paper {
    padding: 30px 22px;
  }

  .festival-facts {
    gap: 9px;
    margin-top: 20px;
    font-size: 1rem;
  }

  .festival-facts li {
    padding: 9px 10px 9px 36px;
  }

  .festival-facts li::before {
    left: 12px;
    top: 8px;
  }
  .paper-bg-1::before{
    inset: -20px -24px -160px -24px;
  }

  .paper-bg-1 {
    margin-bottom: 100px;
  }

  .photo {
    width: 230px;
    height: 170px;
  }

  .photo-two {
    top: 165px;
  }

  .photo-three {
    left: 30px;
  }
}
/* HERO DARK - MOBILE */

@media (max-width: 520px) {

  .site-header {
    width: calc(100% - 28px);
    top: 14px;
    padding: 14px 18px;
    border-radius: 18px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .main-nav {
    gap: 14px;
    padding-bottom: 2px;
  }

  .main-nav a {
    font-size: 0.82rem;
  }

  .hero-dark {
    min-height: 100svh;
    padding: 150px 18px 80px;

    background:
      linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.22)),
      url("img/papel/Paper-18.3559640ed33e.png");
    background-size: cover;
    background-position: center top;
  }

  .hero-dark-content {
    width: 100%;
    transform: translateY(-18px);
  }

  .hero-dark-logo-wrap {
    width: min(430px, 112%);
    margin: 18px auto 12px;
  }

  .hero-dark-text {
    max-width: 330px;
    font-size: 1.1rem;
    line-height: 1.25;
    margin-bottom: 26px;
    color: var(--off-white);
    text-shadow: 3px 3px 0 rgba(0,0,0,0.65);
  }

  .hero-dark .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 0;
  }

  .hero-dark .btn {
    width: min(280px, 100%);
    text-align: center;
    padding: 15px 22px;
    font-size: 1rem;
  }

  .hero-dark-paper-left {
    width: 260px;
    left: -110px;
    top: 165px;
    transform: rotate(-8deg);
  }

  .hero-dark-paper-right {
    width: 280px;
    right: -110px;
    top: 185px;
    transform: rotate(8deg);
  }

  .hero-dark-paper-bottom {
    width: 160%;
    left: -30%;
    bottom: -980px;
  }

  .hero-dark-megaphone {
    width: 95px;
    left: 30%;
    top: 16%;
    transform: rotate(16deg) scaleX(-1);
  }

  .hero-dark-light {
    width: 78px;
    right: 8%;
    bottom: 24%;
    transform: rotate(-12deg);
  }

  .hero-dark-smile {
    width: 70px;
    left: 8%;
    top: 31%;
    transform: rotate(10deg);
  }

  .hero-dark-star {
    width: 62px;
    right: 18%;
    top: 29%;
    transform: rotate(15deg);
  }

  .hero-dark .tag {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
  .hero-dark-megaphone {
  width: 82px;
  left: 38%;
  top: 23%;
}

.hero-dark-smile {
  width: 58px;
  left: 5%;
  top: 31%;
}

.hero-dark-star {
  width: 58px;
  right: 7%;
  top: 30%;
}

.hero-dark-light {
  width: 76px;
  right: 8%;
  bottom: 28%;
}
}

.menu-toggle {
  display: none;
  border: none;
  background: var(--yellow);
  color: var(--black);
  font-family: "MoreSugar", sans-serif;
  font-size: 1.4rem;
  padding: 6px 12px;
  border-radius: 12px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.18);
  cursor: pointer;
}

@media (max-width: 520px) {
  .site-header {
    width: calc(100% - 28px);
    top: 14px;
    padding: 14px 18px;
    flex-direction: row;
    align-items: center;
  }

  .brand {
    font-size: 0.95rem;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 210px;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    background: rgba(247,245,242,0.96);
    border-radius: 18px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.18);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    font-size: 0.95rem;
  }
}

/* HERO MOBILE RADICAL */

.hero-mobile-only {
  display: none;
}

@media (max-width: 520px) {

  .hero-dark-paper-left,
  .hero-dark-paper-right {
    display: none;
  }

  .hero-mobile-only {
    display: block;
    position: absolute;
    z-index: 4;
    pointer-events: none;
    height: auto;
    filter: drop-shadow(6px 7px 0 rgba(0,0,0,0.28));
  }

  .hero-dark {
    min-height: 100svh;
    padding: 135px 16px 72px;
    background:
      linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.18)),
      url("img/papel/Paper-18.3559640ed33e.png");
    background-size: cover;
    background-position: center top;
  }

  .hero-dark-content {
    transform: translateY(-8px);
  }

  .hero-dark-logo-wrap {
    width: 105%;
    max-width: 460px;
    margin: 14px auto 24px;
    transform: translateX(-3%);
  }

  .hero-dark-logo {
    content: url("img/logos/herederos-logo-objetos-2026.29ee72b0df52.png");
    width: 100%;
  }

  .hero-dark .tag {
    font-size: 0.9rem;
    padding: 9px 13px;
    margin-bottom: 8px;
  }

  .hero-dark-text {
    max-width: 350px;
    font-size: 1.05rem;
    line-height: 1.25;
    margin-bottom: 28px;
  }

  .hero-dark .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 0;
  }

  .hero-dark .btn {
    width: min(300px, 100%);
    padding: 16px 22px;
    font-size: 1rem;
    text-align: center;
  }

  .hero-dark-megaphone {
    width: 92px;
    right: -5%;
    left: auto;
    top: 80%;
    transform: rotate(-18deg);
  }

  .hero-dark-light {
    width: 74px;
    right: 5%;
    bottom: 27%;
    transform: rotate(-10deg);
  }

  .hero-dark-smile {
    width: 58px;
    left: 6%;
    top: 33%;
    transform: rotate(10deg);
  }

  .hero-dark-star {
    width: 60px;
    right: 8%;
    top: 31%;
    transform: rotate(15deg);
  }

  .hero-mobile-mouth {
    width: 74px;
    left: 7%;
    top: 80%;
    transform: rotate(-8deg);
  }

  .hero-mobile-chat {
    width: 76px;
    right: 82%;
    top: 60%;
    transform: rotate(7deg);
  }

  .hero-mobile-ray {
    width: 74px;
    left: 2%;
    top: 17%;
    transform: rotate(12deg) scaleX(-1);
  }

  .hero-mobile-tape {
    width: 82px;
    right: 2%;
    top: 16%;
    transform: rotate(12deg);
  }

  .hero-dark-paper-bottom {
    width: 180%;
    left: -40%;
    bottom: -1120px;
  }
  .hero-mobile-tape-left {
    width: 130px;
    left: 20%;
    bottom: 2%;
    transform: rotate(-35deg);
    z-index: 3;
  }

  .hero-mobile-tape-right {
    width: 130px;
    right: 20%;
    bottom: 2%;
    transform: rotate(35deg);
    z-index: 3;
  }
}

/* FECHA - MOBILE */

@media (max-width: 520px) {

  .fecha-section {
    padding: 100px 16px 90px;

    background:
      linear-gradient(
        rgba(0,0,0,0.10),
        rgba(0,0,0,0.18)
      ),
      url("img/fondos/9_16-01.bb40c3dd2c6b.png");

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  /* ocultar todos los stickers y papeles */
  .fecha-decor {
    display: none;
  }

  .fecha-section .section-heading {
    margin-bottom: 32px;
    text-align: left;
  }

  .fecha-section .tag {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .fecha-section .section-heading h2 {
    font-size: 3.2rem;
    line-height: 0.92;

    max-width: 100%;
    width: 100%;
  }

  .event-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .event-card {
    position: relative;
    overflow: hidden;

    padding: 28px 24px;
    min-height: 170px;

    border-radius: 28px;

    background: var(--off-white);

    box-shadow:
      8px 10px 0 var(--green-accent);
  }

  .event-card::before,
  .event-card::after {
    content: "";

    position: absolute;
    top: 50%;

    width: 28px;
    height: 28px;

    background: #111;
    border-radius: 50%;

    transform: translateY(-50%);
  }

  .event-card::before {
    left: -14px;
  }

  .event-card::after {
    right: -14px;
  }

  .event-card span {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }

  .event-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .event-card p {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}
/* AVANCES - AJUSTE MOBILE */

@media (max-width: 520px) {

  .media-card {
    padding-bottom: 58px;
  }

  .media-card::before {
    inset: -26px -24px -58px -24px;
  }

  .media-card p {
    font-size: 1.1rem;
    line-height: 1.35;
  }
}

/* QUOTE / ALIENTO - MOBILE */

@media (max-width: 520px) {

  .quote-section {
    padding: 95px 18px 90px;
    background:
      linear-gradient(rgba(247,245,242,0.08), rgba(247,245,242,0.18)),
      url("img/fondos/fondo-hoja.4e84034a8237.png");
    background-size: cover;
    background-position: center top;
  }

  .quote-paper-left {
    display: none;
  }

  .quote-paper {
    padding: 52px 12px;
  }

  .quote-motto {
    width: min(390px, 105%);
    transform: translateX(-2%);
  }

  .quote-star {
    width: 72px;
    right: 6%;
    top: 18%;
    transform: rotate(15deg);
  }

  .quote-light {
    display: none;
  }
}

/* FOOTER - MOBILE */

@media (max-width: 520px) {

  .footer {
    padding: 55px 22px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    text-align: center;
  }

  .footer-center {
    order: 1;
  }

  .footer-left {
    order: 2;
  }

  .footer-right {
    order: 3;
    justify-content: center;
    gap: 14px;
  }

  .footer-logo {
    max-width: 190px;
  }

  .footer-tag {
    font-size: 0.95rem;
    transform: rotate(-2deg);
  }

  .footer-left p {
    font-size: 1.3rem;
    margin-top: 10px;
  }

  .footer-right a {
    font-size: 0.9rem;
    padding: 12px 16px;
  }

  .footer-smile {
    width: 68px;
    right: 18px;
    top: 18px;
  }
}

@media (max-width: 520px) {
  .origen-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .origen-title h2 {
    font-size: 2.75rem;
  }

  .origen-title p {
    font-size: 1.1rem;
  }

  .origen-step {
    padding: 30px 24px;
  }

  .origen-step p {
    font-size: 1.05rem;
  }

  .origen-paper-left,
  .origen-paper-right {
    display: none;
  }

  .origen-light {
    width: 72px;
    right: 4%;
    top: 13%;
  }

  .origen-megaphone {
    width: 90px;
    left: -24px;
    bottom: 8%;
  }

  .reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity .8s ease, transform .8s ease;
}

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


/* CENTRO CULTURAL */

.centro-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(247,245,242,0.10), rgba(247,245,242,0.18)),
    url("img/fondos/fondo-hoja.4e84034a8237.png");
  background-size: cover;
  background-position: center center;
}

.centro-layout {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.centro-content h2 {
  font-family: "MoreSugar", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: .92;
  color: var(--black);
  text-transform: uppercase;
  margin: 18px 0 22px;
}

.centro-content > p {
  font-size: 1.25rem;
  line-height: 1.45;
  max-width: 620px;
  margin-bottom: 28px;
}

.centro-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.centro-info article {
  position: relative;
  padding: 28px;
  isolation: isolate;
}

.centro-info article::before {
  content: "";
  position: absolute;
  inset: -18px -20px;
  z-index: -1;
  background-image: url("img/papel/Paper-10.024c4992ee30.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  filter: drop-shadow(7px 8px 0 rgba(0,0,0,.13));
}

.centro-info article:nth-child(2)::before {
  background-image: url("img/papel/Paper-7.4fb4040f153c.png");
}

.centro-info h3 {
  font-family: "MoreSugar", sans-serif;
  color: var(--black);
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.centro-info p {
  font-size: 1.08rem;
  line-height: 1.35;
}

.centro-map-image {
  position: relative;
  display: block;
  width: min(100%, 500px);
  min-width: 0;
  justify-self: end;
  color: var(--black);
  text-decoration: none;
  transform: rotate(1deg);
  transition: transform .2s ease;
}

.centro-map-image::before,
.centro-map-image::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 92px;
  height: 28px;
  background: rgba(255, 211, 104, .88);
  border: 1px solid rgba(95, 71, 23, .14);
  box-shadow: 2px 3px 4px rgba(0, 0, 0, .16);
  pointer-events: none;
}

.centro-map-image::before {
  top: -7px;
  left: 24px;
  transform: rotate(-7deg);
}

.centro-map-image::after {
  right: 22px;
  bottom: -8px;
  transform: rotate(6deg);
}

.centro-map-image:hover,
.centro-map-image:focus-visible {
  transform: rotate(0) translateY(-4px);
}

.centro-map-image:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 7px;
}

.centro-map-image img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  border: 7px solid var(--off-white);
  box-shadow: 10px 12px 0 rgba(0,0,0,.16);
}

.centro-video-card {
  position: relative;
  padding: 28px;
  isolation: isolate;
}

.centro-video-card::before {
  content: "";
  position: absolute;
  inset: -28px -30px;
  z-index: -1;
  background-image: url("img/papel/Paper-8.d12b557d9e0a.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  filter: drop-shadow(10px 12px 0 rgba(0,0,0,.15));
}

.centro-video {
  position: relative;
  height: 330px;
  overflow: hidden;
  border: 8px solid var(--off-white);
  box-shadow: 8px 9px 0 rgba(0,0,0,.16);
  background: var(--black);
  transform: rotate(2deg);
}

.centro-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.centro-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(7px 8px 0 rgba(0,0,0,.16));
}

.centro-paper-left {
  width: 300px;
  left: -100px;
  top: 90px;
  transform: rotate(-9deg);
}

.centro-paper-right {
  width: 320px;
  right: -110px;
  bottom: 80px;
  transform: rotate(8deg);
}

.centro-light {
  width: 90px;
  right: 8%;
  top: 15%;
}

.centro-megaphone {
  width: 130px;
  left: 6%;
  bottom: 10%;
  transform: rotate(18deg) scaleX(-1);

  
}
.centro-lightning {
  width: 130px;
  left: 45%;
  bottom: 10%;
  transform: rotate(18deg) scaleX(-1);

  
}

/* CUENTA REGRESIVA */

.countdown-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(0,0,0,0.12), rgba(0,0,0,0.24)),
    url("img/papel/Paper-18.3559640ed33e.png");
  background-size: cover;
  background-position: center center;
  color: var(--off-white);
  text-align: center;
}

.countdown-box {
  width: min(950px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.countdown-box h2 {
  font-family: "MoreSugar", sans-serif;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: .92;
  text-transform: uppercase;
  margin: 22px auto 34px;
  color: var(--off-white);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0 auto 34px;
}

.countdown-grid div {
  background: var(--off-white);
  color: var(--black);
  border-radius: 26px;
  padding: 28px 16px;
  box-shadow: 8px 8px 0 var(--green-accent);
}

.countdown-grid strong {
  display: block;
  font-family: "MoreSugar", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1;
}

.countdown-grid span {
  display: block;
  font-family: "MoreSugar", sans-serif;
  text-transform: uppercase;
  margin-top: 8px;
}

.countdown-box p {
  font-size: 1.3rem;
  margin-bottom: 28px;
}

.countdown-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(7px 8px 0 rgba(0,0,0,.22));
}

.countdown-star {
  width: 100px;
  right: 12%;
  top: 18%;
}

.countdown-light {
  width: 105px;
  left: 10%;
  bottom: 18%;
}

.countdown-paper-left {
  width: 340px;
  left: -110px;
  top: 80px;
  transform: rotate(-9deg);
}

/* MOBILE NUEVAS SECCIONES */

@media (max-width: 520px) {
  .centro-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .centro-content h2 {
    font-size: 2.7rem;
  }

  .centro-content > p {
    font-size: 1.1rem;
  }

  .centro-info {
    grid-template-columns: 1fr;
  }

  .centro-map-image {
    width: min(100%, 520px);
    margin: 4px auto 0;
    justify-self: center;
    transform: rotate(.5deg);
  }

  .centro-map-image img {
    border-width: 5px;
    box-shadow: 7px 8px 0 rgba(0,0,0,.16);
  }

  .centro-map-image::before,
  .centro-map-image::after {
    width: 70px;
    height: 22px;
  }

  .centro-video {
    height: 240px;
  }

  .centro-paper-left,
  .centro-paper-right {
    display: none;
  }

  .centro-light {
    width: 72px;
    right: 4%;
    top: 12%;
  }

  .centro-megaphone {
    width: 90px;
    left: -25px;
    bottom: 6%;
  }

  .countdown-section {
    background:
      linear-gradient(rgba(0,0,0,0.10), rgba(0,0,0,0.22)),
      url("img/fondos/9_16-01.bb40c3dd2c6b.png");
    background-size: cover;
    background-position: center top;
  }

  .countdown-box h2 {
    font-size: 2.75rem;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .countdown-grid div {
    padding: 24px 12px;
  }

  .countdown-grid strong {
    font-size: 3rem;
  }

  .countdown-star {
    width: 70px;
    right: 4%;
    top: 10%;
  }

  .countdown-light {
    width: 78px;
    left: 5%;
    bottom: 12%;
  }

  .countdown-paper-left {
    display: none;
  }
}


/* 
@keyframes floatSticker {
  0%, 100% {
    transform: translateY(0) rotate(var(--r)) scaleX(var(--flip, 1));
  }
  50% {
    transform: translateY(-10px) rotate(calc(var(--r) + 3deg)) scaleX(var(--flip, 1));
  }
}

.decor-megaphone {
  --r: 20deg;
  --flip: -1;
  animation: floatSticker 4.2s ease-in-out infinite;
}

.decor-light {
  --r: -12deg;
  animation: floatSticker 4.8s ease-in-out infinite;
}

.decor-sign {
  --r: 8deg;
  animation: floatSticker 5s ease-in-out infinite;
}

.decor-star {
  --r: 15deg;
  animation: floatSticker 4.4s ease-in-out infinite;
}

.decor-extra-left,
.decor-paper-top-left {
  --r: -12deg;
  animation: floatSticker 5.2s ease-in-out infinite;
}
.section {
  animation: sectionFadeIn linear both;
  animation-timeline: view();
  animation-range: entry 0% cover 28%;
}

@keyframes sectionFadeIn {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
  */
