
/* ============ HERO ============ */
.expo-hero {
  position: relative;
  background: var(--ink);
  display: flex;
  align-items: center;
  min-height: clamp(300px, 34vw, 480px);
  overflow: hidden;
}
.expo-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.expo-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.expo-hero__title {
  font-family: var(--font-square);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--cream);
  font-size: clamp(1.3rem, 2.8vw, 2.2rem);
  line-height: 1.55;
  margin: 0;
}
.expo-hero__divider {
  background: var(--cream);
  opacity: .8;
  width: 72px;
  height: 1.5px;
}
.expo-hero__text {
  color: var(--cream);
  font-weight: 400;
  font-size: clamp(.92rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  max-width: 460px;
  margin: 0;
  font-size: 1.3em;
}

@media (min-width: 992px) {
  .expo-hero__inner {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
    padding-left: clamp(1.5rem, 5vw, 4rem);
  }
  .expo-hero__divider { width: 1.5px; height: 120px; }
}

/* ============ REGÍSTRATE (Recurso 96 + Recurso 97) ============ */
.expo-reg {
  padding: 0 clamp(.5rem, 1.5vw, 1.25rem);
  margin-top: clamp(-44px, -4vw, -64px);
  position: relative;
  z-index: 2;
}

/* Banner amarillo con muesca inferior (Recurso_96) */
.expo-reg__banner {
  position: relative;
  z-index: 2;
  background: var(--yellow);
  border-radius: var(--r-lg);
  margin: 0 clamp(.75rem, 4vw, 4.25rem);
  padding: clamp(1.75rem, 4.5vw, 3rem) 1.5rem;
  text-align: center;
  margin-bottom: 30px;
}
.expo-reg__title {
  position: relative;
  z-index: 1;
  font-size: clamp(2.2rem, 6.5vw, 5rem);
  letter-spacing: .05em;
  line-height: 1;
  margin: 0;
  color: var(--cream);  
}
@supports not (-webkit-text-stroke: 2px black) {
  .expo-reg__title { color: var(--cream); }
}

/* Pieza lima con pestaña y muesca (Recurso_97) */
.expo-reg__que {
  position: relative;
  z-index: 1;
  background: var(--lime);
  border-radius: var(--r-lg);
  margin: 1.25rem clamp(1rem, 4.5vw, 4.75rem) 0;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1rem, 5vw, 4.5rem);
}
/* pequeñas patas oliva decorativas bajo la pieza lima */
/* .expo-reg__que::before,
.expo-reg__que::after {
  content: "";
  position: absolute;
  bottom: calc(-1 * clamp(14px, 1.6vw, 22px));
  width: clamp(70px, 9vw, 140px);
  height: clamp(28px, 3.2vw, 44px);
  background: var(--olive);
  border-radius: 0 0 clamp(10px, 1.4vw, 18px) clamp(10px, 1.4vw, 18px);
  z-index: -1;
} */
/* .expo-reg__que::before { left: 16%; }
.expo-reg__que::after  { right: 16%; } */

.expo-reg__box {
  position: relative;
  z-index: 1;
  background: var(--olive);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.8vw, 2.1rem) clamp(1.25rem, 4.5vw, 3.5rem);
  text-align: center;
  font-weight: 400;
  font-size: 1.2em;
  line-height: 1.8;
  max-width: 1080px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .expo-reg__banner,
  .expo-reg__que { background: transparent; border-radius: 0; }

  /* la muesca del banner ocupa el 34% inferior del Recurso_96 */
  .expo-reg__banner { padding: clamp(2rem, 4vw, 3.25rem) 1.5rem clamp(4.75rem, 8.5vw, 7rem); }

  /* pestaña 18.7% arriba y muesca 16% abajo del Recurso_97 */
  .expo-reg__que {
    margin-top: calc(-1 * clamp(3.25rem, 6.5vw, 5.25rem));
    padding-top: clamp(4.5rem, 9vw, 7rem);
    padding-bottom: clamp(3.75rem, 7.5vw, 6rem);
  }
}

/* ============ TARJETAS DE RECURSOS ============ */
.expo-cards { padding: clamp(2.5rem, 6vw, 4.5rem) 1rem 1rem; }
.expo-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  max-width: 1150px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .expo-cards__grid { grid-template-columns: repeat(4, 1fr); }
}

.expo-card {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.expo-card__tile {
  background: var(--yellow);
  border-radius: var(--r-md);
  aspect-ratio: 1 / 1.02;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 1rem;
  transition: transform .2s ease;
}
.expo-card:hover .expo-card__tile { transform: translateY(-6px); }
.expo-card__icon {
  width: 100%;
  height: auto;
}
.expo-card__label {
  font-family: var(--font-square);
  font-weight: 500;
  font-size: clamp(.58rem, 1vw, .74rem);
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center;
  color: var(--cream);
  line-height: 1.7;
}
.expo-card__btn {
  display: block;
  background: var(--olive);
  color: var(--cream);
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  padding: .7rem 1rem;
  font-family: var(--font-square);
  font-weight: 500;
  font-size: 1em;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.expo-card__btn:hover { background: var(--teal); color: var(--cream); }

/* ============ FECHAS IMPORTANTES ============ */
.expo-fechas-wrap {
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(.9rem, 3vw, 2.5rem) 0;
  max-width: 1240px;
  margin: 0 auto;
}
.expo-fechas {
  background: var(--lime);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3.5vw, 3rem);
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.expo-fechas__photo {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  max-height: 420px;
}
.expo-fechas__photo img { width: 100%; height: 100%; object-fit: cover; }

.expo-fechas__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 1.9rem);
}

.expo-fechas__head {
  background: var(--coral);
  border-radius: var(--r-md);
  padding: clamp(1rem, 2.2vw, 1.5rem) clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  line-height: 1;
  width: 100%;
}
.expo-fechas__head-outline {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: .12em;
  color: transparent;
  -webkit-text-stroke: 1.8px var(--cream);
}
@supports not (-webkit-text-stroke: 2px black) {
  .expo-fechas__head-outline { color: var(--cream); opacity: .75; }
}
.expo-fechas__head-solid {
  font-size: clamp(1.5rem, 3.3vw, 2.4rem);
  letter-spacing: .06em;
  color: var(--cream);
}

.fecha-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  width: 100%;
}
.fecha-group__label {
  font-weight: 700;
  color: var(--teal);
  text-align: center;
  line-height: 1.4;
  font-size: clamp(.95rem, 1.7vw, 1.15rem);
  margin: 0;
}
.fecha-pill {
  display: block;
  width: min(100%, 420px);
  background: var(--coral);
  color: var(--cream);
  border-radius: 12px;  
  text-align: center;
  font-weight: 100;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  letter-spacing: .4em;
}
.fecha-group__hrs {
  font-weight: 600;
  color: var(--teal);
  font-size: clamp(.8rem, 1.3vw, .95rem);
  margin-top: -.15rem;
}

/* última fecha, fuera del contenedor lima */
.expo-fechas__after {
  display: grid;
  padding: clamp(4.5rem, 3vw, 2.25rem) clamp(1.5rem, 3.5vw, 3rem) 0;
}

@media (min-width: 992px) {
  .expo-fechas { grid-template-columns: 5fr 6fr; align-items: start; }
  /* la foto se descuelga del contenedor lima */
  .expo-fechas__photo {
    max-height: none;
    height: calc(100% + clamp(60px, 8vw, 120px));
  }
  .expo-fechas-wrap { padding-bottom: clamp(60px, 8vw, 120px); }
  .expo-fechas__after {
    grid-template-columns: 5fr 6fr;
    column-gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: calc(-1 * clamp(40px, 5.5vw, 80px));
  }
  .expo-fechas__after .fecha-group { grid-column: 2; }
}

/* ============ CTA PROVEEDURÍA ============ */
.expo-cta {
  position: relative;
  background: var(--ink);
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
}
.expo-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.expo-cta__inner {
  position: relative;
  text-align: center;
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.expo-cta__title {
  font-family: var(--font-square);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--cream);
  font-size: clamp(1.15rem, 2.6vw, 2rem);
  line-height: 1.75;
  margin: 0;
}
.expo-cta__help {
  font-family: var(--font-square);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--yellow);
  font-size: clamp(.7rem, 1.3vw, .95rem);
  line-height: 2;
  margin: 0;
}
.expo-cta__btn {
  display: inline-block;
  background: var(--coral);
  color: var(--cream);
  text-decoration: none;
  border-radius: 12px;
  padding: .85rem clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  font-size: clamp(.95rem, 1.7vw, 1.2rem);
  letter-spacing: .04em;
  transition: transform .15s ease, background .2s ease;
}
.expo-cta__btn:hover { background: var(--yellow); color: var(--teal); transform: translateY(-2px); }
