@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --pink:        #FF307C;
  --pink-dark:   #c40058;
  --pink-pale:   #FFF0F7;
  --pink-border: #FFD6EB;
  --text:        #1a1a1a;
  --muted:       #666;
  --lighter:     #999;
  --white:       #fff;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════
   PROMO BANNER
══════════════════════════════ */
.banner {
  position: relative;
  background: linear-gradient(145deg, #FF307C 0%, #c40058 100%);
  color: #fff;
  text-align: center;
  padding: 1.6rem 1rem 1.5rem;
  overflow: hidden;
  border-radius: 20px;
}
.banner__dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}
.banner__dot--a { width: 130px; height: 130px; top: -45px; right: -35px; }
.banner__dot--b { width: 200px; height: 200px; bottom: -80px; left: -60px; }


.banner__badge {
  position: relative;
  display: inline-block;
  background: #fff;
  color: var(--pink);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  padding: 0.3rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 0.7rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  letter-spacing: -1.5px;
}
.banner__title {
  position: relative;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.banner__cats {
  position: relative;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 0.3rem;
}
.banner__how {
  position: relative;
  font-size: 0.73rem;
  font-weight: 400;
  font-style: italic;
  opacity: 0.72;
  margin-bottom: 0.6rem;
}
.banner__aviso {
  position: relative;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.8;
}

/* ══════════════════════════════
   OUTLET BANNER
══════════════════════════════ */
.banner--outlet {
  background: linear-gradient(145deg, #1c1c1c 0%, #080808 100%);
}
.banner--outlet .banner__dot {
  background: rgba(255,255,255,0.04);
}
.banner--outlet .banner__badge {
  background: #fff;
  color: #111;
  letter-spacing: 0.5px;
}
.banner--outlet .banner__how {
  opacity: 0.6;
}
.banner--outlet .banner__aviso {
  opacity: 0.65;
}

/* ══════════════════════════════
   DISCLAIMER
══════════════════════════════ */
.disclaimer {
  font-size: 0.71rem;
  color: var(--lighter);
  font-style: italic;
  text-align: center;
  line-height: 1.55;
  padding: 0.35rem 0.5rem;
}

/* ══════════════════════════════
   PREVENTA
══════════════════════════════ */
.preventa-divider {
  position: relative;
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 0.55rem auto 0.55rem;
}
.preventa-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.55rem;
}
.preventa-list li {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.92;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.preventa-list li::before {
  content: '✓';
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0.65;
  flex-shrink: 0;
}

/* ══════════════════════════════
   ETIQUETA DE SECCIÓN
══════════════════════════════ */
.sec-label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--pink);
  padding-bottom: 0.45rem;
  border-bottom: 1.5px solid var(--pink-border);
  margin-bottom: 0.9rem;
}

/* ══════════════════════════════
   GUÍA DE TALLES
══════════════════════════════ */
.talles-tip {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  background: var(--pink-pale);
  border-radius: 8px;
  padding: 0.65rem 0.8rem;
  margin-bottom: 0.9rem;
}
.talles-tip__ico {
  font-style: normal;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.talles-tip__text {
  font-size: 0.79rem;
  color: var(--muted);
  line-height: 1.6;
}

.talles-img {
  display: block;
  width: 100%;
  max-width: 230px;
  margin: 0 auto 1rem;
}

.tabla {
  display: none;
  flex-direction: column;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--pink-border);
}
.tabla__header {
  display: flex;
  background: linear-gradient(90deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.tabla__header div { flex: 1; padding: 9px 12px; text-align: center; }
.tabla__row {
  display: flex;
  border-top: 1px solid var(--pink-border);
}
.tabla__row:nth-child(even) { background: var(--pink-pale); }
.tabla__cell {
  flex: 1;
  padding: 8px 12px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
}
.tabla__cell + .tabla__cell { border-left: 1px solid var(--pink-border); }

/* ══════════════════════════════
   PAGO Y ENVÍO
══════════════════════════════ */
.info-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--pink-border);
}
.info-item:last-child { border-bottom: none; }

.info-item__ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--pink);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-item__strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.info-item__sub {
  display: block;
  font-size: 0.72rem;
  color: var(--lighter);
  margin-top: 2px;
}
