:root {
  --pink: #EA4681;
  --pink-dark: #C82F69;
  --pink-soft: #F4C2DB;
  --pink-pale: #FFF1F8;
  --green: #D6D66B;
  --wine: #922932;
  --ink: #25151D;
  --muted: #6B4B5B;
  --white: #FFFFFF;
  --shadow: 0 24px 70px rgba(146, 41, 50, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --font-title: "Fredoka", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Public Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(244, 194, 219, .6), transparent 30rem),
    linear-gradient(180deg, #fff1f8 0%, #ffe7f2 42%, #fff8fb 100%);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button,
input,
select { font: inherit; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
}

.skip-link:focus { top: 16px; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.section-pad { padding: 76px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 241, 248, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234, 70, 129, 0.14);
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 14px;
  align-items: center;
  padding: 10px 16px;
  background: var(--pink);
  color: var(--white);
  font-weight: 700;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}

.nav-shell {
  width: min(1120px, calc(100% - 32px));
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img { width: 164px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--pink-dark);
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(234, 70, 129, 0.12);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 22px 0 auto auto;
  width: min(58vw, 760px);
  height: min(58vw, 760px);
  background: url("../assets/graphics/pattern-light.png") center / cover no-repeat;
  opacity: .16;
  transform: rotate(-8deg);
  z-index: -3;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 44px;
}

.hero-copy,
.hero-card,
.signup-shell,
.store-card,
.catalog-card {
  position: relative;
}

.eyebrow {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink-dark);
  background: rgba(214, 214, 107, .52);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: .01em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-title);
  line-height: .96;
  color: var(--pink);
}

h1 {
  font-size: clamp(3.1rem, 8vw, 7.1rem);
  letter-spacing: -0.055em;
}

h2 { font-size: clamp(2.35rem, 5vw, 4.9rem); letter-spacing: -0.045em; }
h3 { font-size: 1.55rem; letter-spacing: -0.02em; }

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2.4vw, 1.24rem);
  line-height: 1.65;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(234, 70, 129, .24);
}

.btn-secondary {
  color: var(--pink-dark);
  background: var(--white);
  border: 2px solid rgba(234, 70, 129, .2);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(234, 70, 129, .24);
}

.btn-full { width: 100%; }

.hero-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
  border: 2px solid rgba(255, 255, 255, .8);
  padding: 30px;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 330px;
  height: 330px;
  border-radius: 48% 52% 58% 42% / 46% 48% 52% 54%;
  background: var(--pink);
  opacity: .9;
  z-index: 0;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 34px auto auto -80px;
  width: 230px;
  height: 230px;
  border-radius: 58% 42% 44% 56% / 52% 48% 52% 48%;
  background: var(--pink-soft);
  opacity: .85;
  z-index: 0;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(280px, 72%);
  margin-inline: auto;
  filter: drop-shadow(0 18px 28px rgba(146, 41, 50, .16));
}

.launch-note {
  position: relative;
  z-index: 1;
  width: 100%;
  align-self: end;
  background: rgba(255, 241, 248, .82);
  border-radius: 28px;
  padding: 24px;
  border: 1px solid rgba(234, 70, 129, .16);
}

.launch-note h2 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.launch-note p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.pill,
.badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  font-family: var(--font-title);
  font-weight: 700;
}

.pill {
  background: var(--green);
  color: var(--pink-dark);
  padding: 7px 13px;
}

.decor { position: absolute; pointer-events: none; user-select: none; z-index: -1; }
.decor-blob { border-radius: 48% 52% 62% 38% / 44% 51% 49% 56%; filter: blur(.2px); opacity: .62; }
.decor-blob-one { width: 330px; height: 330px; left: -90px; top: 170px; background: var(--pink-soft); }
.decor-blob-two { width: 260px; height: 260px; right: -70px; bottom: 20px; background: var(--pink); opacity: .15; }
.decor-star { width: 78px; height: 78px; object-fit: contain; }
.decor-star-one { right: 8%; top: 160px; animation: float 5s ease-in-out infinite; }
.decor-star-two { left: 42%; bottom: 80px; width: 56px; height: 56px; animation: float 6s ease-in-out infinite reverse; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(6deg); }
}

.catalog-section { background: var(--pink); position: relative; overflow: hidden; }
.catalog-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/graphics/pattern-pink.png") center / 560px auto repeat;
  opacity: .13;
}
.catalog-section .container { position: relative; z-index: 1; }
.catalog-section .section-heading :is(h2, p),
.catalog-section .section-heading .eyebrow { color: var(--white); }
.catalog-section .section-heading .eyebrow { background: rgba(214, 214, 107, .92); color: var(--pink-dark); }

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  font-weight: 600;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.catalog-card {
  min-height: 164px;
  border-radius: 28px;
  overflow: hidden;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--image) center / cover no-repeat;
  box-shadow: 0 18px 44px rgba(70, 25, 42, .18);
  isolation: isolate;
  transition: transform .22s ease, box-shadow .22s ease;
  border: 3px solid rgba(255, 241, 248, .85);
}

.catalog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 21, 29, .06) 0%, rgba(37, 21, 29, .78) 100%);
  z-index: -1;
}

.catalog-card::after {
  content: "✦";
  position: absolute;
  right: 16px;
  top: 12px;
  color: var(--green);
  font-size: 2rem;
  text-shadow: 0 2px 10px rgba(37, 21, 29, .18);
}

.catalog-card:hover,
.catalog-card:focus-visible {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 28px 62px rgba(70, 25, 42, .28);
}

.catalog-card.featured {
  grid-column: span 2;
  min-height: 328px;
}

.badge {
  background: var(--green);
  color: var(--pink-dark);
  padding: 7px 12px;
  margin-bottom: auto;
  font-size: .92rem;
}

.card-title {
  display: block;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(37, 21, 29, .28);
}

.featured .card-title { font-size: clamp(2rem, 4vw, 3.5rem); max-width: 78%; }

.card-cta {
  display: inline-flex;
  margin-top: 12px;
  width: fit-content;
  background: rgba(255, 255, 255, .92);
  color: var(--pink-dark);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 900;
}

.signup-section { position: relative; }

.signup-shell {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: center;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(234, 70, 129, .18), transparent 20rem),
    var(--white);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 48px);
  border: 3px solid rgba(244, 194, 219, .68);
  overflow: hidden;
}

.signup-shell::before {
  content: "";
  position: absolute;
  inset: auto auto -100px -100px;
  width: 260px;
  height: 260px;
  background: var(--pink-soft);
  border-radius: 50%;
  opacity: .52;
}

.signup-copy { position: relative; z-index: 1; }
.signup-copy p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.7;
}
.small-note { font-size: .95rem !important; opacity: .86; }

.signup-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  background: var(--pink-pale);
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(234, 70, 129, .16);
}

.signup-form label {
  display: grid;
  gap: 7px;
  color: var(--pink-dark);
  font-weight: 900;
}

.signup-form label span {
  color: var(--muted);
  font-weight: 700;
  font-size: .88rem;
}

.signup-form input,
.signup-form select {
  width: 100%;
  border: 2px solid rgba(234, 70, 129, .18);
  background: var(--white);
  min-height: 50px;
  border-radius: 18px;
  padding: 0 15px;
  outline: none;
  color: var(--ink);
  transition: border .2s ease, box-shadow .2s ease;
}

.signup-form input:focus,
.signup-form select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 5px rgba(234, 70, 129, .12);
}

.hidden-field { display: none !important; }
.form-message { min-height: 22px; margin: 0; color: var(--pink-dark); font-weight: 800; text-align: center; }
.form-message.is-error { color: #922932; }
.form-message.is-success { color: #2E6A36; }

.stores-section { background: rgba(255, 255, 255, .6); }
.stores-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.store-card {
  background: var(--white);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 14px 36px rgba(146, 41, 50, .11);
  border: 2px solid rgba(244, 194, 219, .62);
}

.store-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
}

.store-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--pink-dark);
  font-weight: 900;
}

.online-card {
  background: var(--pink);
  color: var(--white);
}
.online-card h3 { color: var(--white); }
.online-card p, .online-card a { color: var(--white); }

.site-footer {
  background: var(--pink-pale);
  padding: 34px 0 22px;
  border-top: 1px solid rgba(234, 70, 129, .14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-grid img { width: 160px; }
.footer-grid p { color: var(--pink-dark); text-align: center; font-weight: 800; margin: 0; }
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.footer-socials a {
  color: var(--pink-dark);
  background: var(--white);
  border: 1px solid rgba(234, 70, 129, .16);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
}
.copyright { text-align: center; color: var(--muted); font-size: .92rem; margin: 22px 10px 0; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  border-radius: 999px;
  padding: 12px 14px 12px 18px;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(37, 211, 102, .33);
}

.whatsapp-float strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
}

@media (max-width: 980px) {
  .hero-grid,
  .signup-shell { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { min-height: 420px; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stores-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; padding-bottom: 18px }
  .footer-grid img { margin-inline: auto; }
  .footer-socials { justify-content: center; }
}

@media (max-width: 720px) {
  .section-pad { padding: 54px 0; }
  .top-strip { font-size: .88rem; gap: 8px; }
  .nav-shell { min-height: 74px; justify-content: center; }
  .brand img { width: 150px; }
  .nav-links { display: none; }
  .hero-copy { text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-card { min-height: 380px; padding: 22px; }
  .catalog-grid { grid-template-columns: 1fr; gap: 13px; }
  .catalog-card,
  .catalog-card.featured {
    grid-column: span 1;
    min-height: 150px;
    border-radius: 24px;
  }
  .catalog-card.featured { min-height: 300px; }
  .featured .card-title { max-width: 92%; }
  .stores-grid { grid-template-columns: 1fr; }
  .signup-form { padding: 16px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 10px; }
}

@media (max-width: 420px) {
  .container { width: min(100% - 24px, 1120px); }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  .btn { width: 100%; }
  .catalog-card.featured { min-height: 260px; }
  .card-title { font-size: 1.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Ajustes solicitados: top strip, hero sin duplicados y CTA separado */
.top-strip a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.hero-copy h1 {
  max-width: 760px;
}

.quick-info-section {
  position: relative;
  padding-top: 0;
  margin-top: -22px;
  z-index: 2;
}

.quick-info-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, .86);
  border: 3px solid rgba(244, 194, 219, .7);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 4vw, 36px);
  overflow: hidden;
}

.quick-info-card::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 20px;
  width: 82px;
  height: 82px;
  background: url("../assets/graphics/blob-primary-1.png") center / contain no-repeat;
  opacity: .95;
  z-index: 0;
}

.quick-info-card > * {
  position: relative;
  z-index: 1;
}

.quick-info-card h2 {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  max-width: 620px;
}

.quick-info-card .hero-text {
  margin-top: 16px;
  max-width: 760px;
}

.quick-info-card .hero-actions {
  margin-top: 0;
  justify-content: flex-end;
}

@media (min-width: 981px) {
  h1 {
    font-size: clamp(3.2rem, 6.2vw, 6rem);
    line-height: .98;
  }

  .hero-card {
    min-height: 460px;
  }

  .hero-logo {
    width: min(340px, 78%);
  }
}

@media (max-width: 980px) {
  .quick-info-card {
    grid-template-columns: 1fr;
  }

  .quick-info-card .hero-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .top-strip {
    flex-wrap: wrap;
    text-align: center;
    line-height: 1.25;
  }

  .quick-info-section {
    margin-top: 0;
  }

  .quick-info-card {
    text-align: center;
  }

  .quick-info-card .hero-text {
    margin-inline: auto;
  }

  .quick-info-card .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.7rem;
  }
}


/* Ajustes v3: hero más sobrio, sin tarjeta de logo, textos corregidos e imágenes visibles */
.hero {
  min-height: 520px;
  padding-top: 58px;
  padding-bottom: 58px;
}

.hero-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.hero-copy {
  max-width: 860px;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5.25vw, 5.35rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.hero-card {
  display: none !important;
}

@media (min-width: 981px) {
  h1 {
    font-size: clamp(2.8rem, 5.25vw, 5.35rem);
  }
}

.catalog-card {
  background-image: var(--image), linear-gradient(180deg, rgba(234,70,129,.18), rgba(146,41,50,.92));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.catalog-card::before {
  background: linear-gradient(180deg, rgba(37, 21, 29, .05) 0%, rgba(37, 21, 29, .16) 42%, rgba(37, 21, 29, .82) 100%);
}

.quick-info-card .eyebrow {
  margin-bottom: 16px;
}

.quick-info-card h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.quick-info-card .hero-text {
  color: var(--ink);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  line-height: 1.65;
  font-weight: 600;
}

.signup-copy .eyebrow {
  margin-bottom: 14px;
}

.signup-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.signup-copy p:not(.eyebrow) {
  font-size: 1.02rem;
  line-height: 1.65;
}

.signup-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 54px;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236B4B5B' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 18px 18px;
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 13vw, 3.85rem);
    text-align: center;
  }

  .quick-info-card h2,
  .signup-copy h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }
}

@media (max-width: 420px) {
  h1,
  .hero-copy h1 {
    font-size: 2.55rem;
  }

  .signup-copy h2 {
    font-size: 2.1rem;
  }
}

/* Ajustes v4: hero más limpio, mobile sin fondo gráfico y catálogos destacados sin sombra/texto */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

main,
section,
.site-header,
.top-strip,
.nav-shell {
  max-width: 100vw;
}

.hero,
.quick-info-section,
.catalog-section,
.signup-section,
.stores-section,
.site-footer {
  overflow: clip;
}

.hero {
  min-height: 640px;
  background:
    radial-gradient(circle at 82% 34%, rgba(244, 194, 219, .42), transparent 15rem),
    linear-gradient(180deg, rgba(255, 241, 248, .98) 0%, rgba(255, 241, 248, .72) 100%);
}

.hero::before {
  display: none;
}

.hero-grid {
  grid-template-columns: 1fr;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(3rem, 5.7vw, 5.5rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.hero .decor {
  z-index: 1;
}

.hero .decor-blob,
.hero .decor-star {
  pointer-events: auto;
  cursor: pointer;
  transition: transform .35s ease, opacity .25s ease;
}

.hero .decor-blob:hover,
.hero .decor-star:hover {
  transform: translateY(-10px) scale(1.04) rotate(3deg);
  opacity: .78;
}

.decor-blob-one {
  left: auto;
  right: min(25vw, 380px);
  top: 170px;
  width: 260px;
  height: 260px;
  background: var(--pink-soft);
  opacity: .46;
}

.decor-blob-two {
  right: -82px;
  bottom: 48px;
  width: 340px;
  height: 340px;
  background: var(--pink);
  opacity: .14;
}

.decor-star-one {
  right: 12%;
  top: 210px;
  width: 58px;
  height: 58px;
  opacity: .6;
}

.decor-star-two {
  left: auto;
  right: 34%;
  bottom: 104px;
  width: 44px;
  height: 44px;
  opacity: .8;
}

.catalog-card.featured {
  background-position: center;
}

.catalog-card.featured::before {
  display: none;
}

.catalog-card.featured .card-title {
  display: none;
}

.catalog-card.featured .card-cta {
  margin-top: auto;
}

@media (max-width: 720px) {
  .section-pad {
    padding: 42px 0;
  }

  .top-strip {
    padding: 9px 12px;
    font-size: .78rem;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand img {
    width: 134px;
  }

  .hero {
    min-height: auto;
    padding: 38px 0 34px;
    background: linear-gradient(180deg, rgba(255, 241, 248, .98) 0%, rgba(255, 235, 246, .82) 100%);
  }

  .hero .decor,
  .hero::before {
    display: none !important;
  }

  .hero-copy h1 {
    max-width: 330px;
    margin-inline: auto;
    font-size: clamp(2.05rem, 9vw, 2.62rem);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.035em;
  }

  .quick-info-section {
    padding-top: 22px;
  }

  .quick-info-card {
    text-align: center;
    padding: 24px 18px;
    border-radius: 26px;
  }

  .quick-info-card::after {
    width: 52px;
    height: 52px;
    right: 18px;
    bottom: 16px;
    opacity: .75;
  }

  .quick-info-card h2 {
    max-width: 320px;
    margin-inline: auto;
    font-size: clamp(2.08rem, 10vw, 2.55rem);
    line-height: 1.02;
    font-weight: 600;
  }

  .quick-info-card .hero-text {
    max-width: 310px;
    margin-inline: auto;
    font-size: .96rem;
    line-height: 1.6;
    color: #1f151b;
    font-weight: 500;
  }

  .quick-info-card .hero-actions {
    justify-content: center;
    gap: 10px;
  }

  .eyebrow {
    font-size: .84rem;
    padding: 7px 12px;
    margin-bottom: 12px;
  }

  .catalog-card.featured {
    min-height: 220px;
  }

  .catalog-card.featured::before,
  .catalog-card.featured .card-title {
    display: none !important;
  }

  .signup-copy h2 {
    font-size: clamp(2rem, 10vw, 2.5rem);
    line-height: 1.03;
    font-weight: 600;
  }

  .signup-copy p:not(.eyebrow) {
    font-size: .96rem;
    line-height: 1.6;
  }

  .signup-form input,
  .signup-form select {
    min-height: 48px;
    padding-right: 38px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  h1,
  .hero-copy h1 {
    font-size: clamp(2rem, 8.8vw, 2.35rem);
  }

  h2 {
    font-size: 2rem;
  }

  .quick-info-card h2 {
    font-size: clamp(2rem, 9.6vw, 2.28rem);
  }

  .catalog-card,
  .catalog-card.featured {
    border-radius: 22px;
  }
}


/* Ajustes v5: header recto, WhatsApp solo ícono y mobile más limpio */
.top-strip {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.whatsapp-float {
  width: 58px;
  height: 58px;
  padding: 0 !important;
  justify-content: center;
  gap: 0;
  border-radius: 50%;
}

.whatsapp-float span,
.whatsapp-float strong {
  display: none !important;
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  fill: #fff;
  display: block;
}

@media (max-width: 720px) {
  .top-strip {
    border-radius: 0 !important;
  }

  .quick-info-card h2 {
    display: none;
  }

  .quick-info-card::after {
    display: none;
  }

  .quick-info-card .hero-text {
    margin-top: 12px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}

/* Ajustes v6: patrón de catálogos más espaciado y redes sociales con íconos */
.catalog-section::before {
  background: url("../assets/graphics/pattern-pink.png") top center / 1320px auto repeat;
  opacity: .095;
}

.footer-socials {
  align-items: center;
  gap: 12px;
}

.footer-socials::before {
  content: "Síguenos";
  flex-basis: 100%;
  color: var(--pink);
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.footer-socials .social-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  background: var(--pink);
  border: 0;
  box-shadow: 0 10px 22px rgba(234, 70, 129, .2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.footer-socials .social-icon:hover,
.footer-socials .social-icon:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 28px rgba(234, 70, 129, .28);
  background: var(--pink-dark);
}

.footer-socials .social-icon svg {
  width: 25px;
  height: 25px;
  fill: var(--white);
}

@media (max-width: 720px) {
  .catalog-section::before {
    background-size: 920px auto;
    opacity: .085;
  }

  .footer-socials::before {
    font-size: 1.25rem;
  }

  .footer-socials .social-icon {
    width: 44px;
    height: 44px;
  }
}

/* Ajustes v7: en móvil mostrar catálogos restantes solo al tocar "Ver todos" */
.mobile-show-all-wrap {
  display: none;
}

.show-all-catalogs {
  appearance: none;
  border: 0;
  width: min(280px, 100%);
  min-height: 52px;
  margin: 2px auto 4px;
  border-radius: 999px;
  background: var(--white);
  color: var(--pink-dark);
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(70, 25, 42, .18);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.show-all-catalogs::after {
  content: " ↓";
}

.show-all-catalogs:hover,
.show-all-catalogs:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(70, 25, 42, .23);
  background: var(--pink-pale);
  outline: none;
}

@media (max-width: 720px) {
  .catalog-grid:not(.is-expanded) .mobile-extra-catalog {
    display: none;
  }

  .mobile-show-all-wrap {
    display: flex;
    justify-content: center;
    grid-column: 1 / -1;
    padding: 4px 0 12px;
  }

  .catalog-grid.is-expanded .mobile-show-all-wrap {
    display: none;
  }
}

/* Ajustes v8: selector ES | EN y soporte bilingüe */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(234, 70, 129, .18);
  color: var(--pink-dark);
  font-family: var(--font-title);
  font-weight: 700;
  white-space: nowrap;
}

.language-switcher button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  border-radius: 999px;
  padding: 6px 9px;
  font: inherit;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.language-switcher button:hover,
.language-switcher button:focus-visible {
  background: rgba(234, 70, 129, .12);
  outline: none;
}

.language-switcher button.is-active {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(234, 70, 129, .2);
}

.signup-form .label-main {
  color: var(--pink-dark);
  font-weight: 900;
  font-size: 1rem;
}

.signup-form .label-line {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.footer-socials::before {
  content: attr(data-social-title) !important;
}

@media (max-width: 720px) {
  .top-strip {
    flex-wrap: wrap;
    line-height: 1.2;
    text-align: center;
  }

  .nav-shell {
    justify-content: space-between;
    gap: 12px;
  }

  .language-switcher {
    font-size: .86rem;
    padding: 5px 6px;
  }

  .language-switcher button {
    padding: 5px 7px;
  }
}

/* Ajustes v9: footer compacto, separación del WhatsApp móvil y hover de decorativos */
.footer-grid {
  align-items: center;
}

.footer-socials {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 9px;
  white-space: nowrap;
}

.footer-socials::before {
  flex-basis: auto !important;
  width: auto !important;
  margin: 0 2px 0 0;
  font-size: 1.05rem !important;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  text-align: left;
}

.footer-socials .social-icon {
  width: 34px;
  height: 34px;
  box-shadow: 0 8px 18px rgba(234, 70, 129, .18);
}

.footer-socials .social-icon svg {
  width: 18px;
  height: 18px;
}

/* Los decorativos del hero se mueven/reaccionan, pero no se comportan como links ni son arrastrables. */
.hero .decor-blob,
.hero .decor-star {
  pointer-events: auto;
  cursor: default !important;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
  transition:
    transform .35s ease,
    opacity .25s ease,
    background-color .25s ease,
    filter .25s ease;
}

.hero .decor-blob-one:hover {
  background: var(--pink) !important;
  opacity: 1;
}

.hero .decor-blob-two:hover {
  background: var(--pink) !important;
  opacity: 1;
}

.hero .decor-star:hover {
  opacity: .95;
  filter: hue-rotate(88deg) saturate(1.55) brightness(1.03);
}

@media (max-width: 980px) {
  .footer-grid {
    gap: 16px;
  }

  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding-bottom: 32px;
  }

  .footer-socials {
    gap: 8px;
  }

  .footer-socials::before {
    font-size: 1rem !important;
  }

  .footer-socials .social-icon {
    width: 32px;
    height: 32px;
  }

  .footer-socials .social-icon svg {
    width: 17px;
    height: 17px;
  }
}
