/* Estilo compartido para las páginas de contenido de ElPeluche.com
   (FAQ, sobre nosotros, colecciones y blog). Misma identidad que la portada. */

:root {
  --pink-pale: #fff0f6;
  --pink-pastel: #ffcfe0;
  --pink-bubble: #ff9dbc;
  --pink-intense: #ff6f9c;
  --pink-deep: #e94f88;
  --cream: #fff9f5;
  --ink: #7a2c4d;
  --ink-soft: #a8547a;
  --lav-light: #f6eeff;
  --lav-mid: #dfc9fb;
  --lav-deep: #b892f5;
  --lav-ink: #5b2e8f;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(1200px 600px at 50% -10%, var(--lav-mid) 0%, transparent 60%),
    linear-gradient(180deg, #fdf5ff 0%, var(--cream) 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--pink-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--pink-intense);
}

.shell {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 146, 245, 0.22);
}
.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Baloo 2', 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1;
}
.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.site-nav a {
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}
.site-nav a:hover {
  background: var(--pink-pale);
  color: var(--pink-deep);
}
.badge-soon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--pink-pastel), var(--lav-mid));
  color: var(--ink);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-soon::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink-intense);
}

/* ---------- Hero (breadcrumb + título) ---------- */
.page-hero {
  text-align: center;
  padding: 52px 20px 30px;
}
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.breadcrumbs a {
  color: var(--ink-soft);
}
.breadcrumbs a:hover {
  color: var(--pink-deep);
}
.page-hero h1 {
  margin-top: 16px;
  font-family: 'Baloo 2', 'Nunito', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.page-hero .lede {
  margin: 14px auto 0;
  max-width: 620px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ---------- Cards / secciones ---------- */
.section {
  padding: 26px 0;
}
.card {
  background: #fff;
  border: 1px solid rgba(184, 146, 245, 0.2);
  border-radius: 22px;
  padding: 26px 26px 28px;
  box-shadow: 0 18px 45px rgba(91, 46, 143, 0.08);
}
.card h2 {
  font-family: 'Baloo 2', 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--pink-deep);
  margin-bottom: 14px;
}
.card h2::before {
  content: '♥';
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  color: var(--pink-intense);
}
.card p + p {
  margin-top: 12px;
}
.card a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* FAQ */
.faq-item {
  border: 1px solid rgba(184, 146, 245, 0.2);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(91, 46, 143, 0.06);
}
.faq-item + .faq-item {
  margin-top: 14px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-family: 'Baloo 2', 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--pink-intense);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .answer {
  padding: 0 20px 20px;
  color: var(--ink-soft);
  font-weight: 600;
}

/* Grid de colecciones */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}
.tile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 180px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(184, 146, 245, 0.22);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(91, 46, 143, 0.08);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(91, 46, 143, 0.14);
  color: var(--ink);
}
.tile h3 {
  font-family: 'Baloo 2', 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--pink-deep);
}
.tile p {
  margin-top: 8px;
  font-weight: 600;
  color: var(--ink-soft);
}

/* Blog */
.article {
  max-width: 720px;
  margin: 0 auto;
}
.article .byline {
  margin-top: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.article h2 {
  font-family: 'Baloo 2', 'Nunito', sans-serif;
  font-size: 1.4rem;
  color: var(--pink-deep);
  margin: 28px 0 10px;
}
.article p,
.article li {
  font-weight: 600;
  color: var(--ink-soft);
  margin: 12px 0;
}
.article ul {
  padding-left: 22px;
}
.article img {
  max-width: 100%;
  border-radius: 18px;
}

/* CTA boletín */
.cta-news {
  margin: 26px 0 20px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(120deg, var(--pink-pastel), var(--lav-mid));
  text-align: center;
}
.cta-news h2 {
  font-family: 'Baloo 2', 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
}
.cta-news p {
  margin-top: 8px;
  font-weight: 600;
  color: var(--ink-soft);
}
.btn {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #fff;
  color: var(--pink-deep);
  font-family: 'Baloo 2', 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 14px 36px rgba(233, 79, 136, 0.3);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}
.btn:hover {
  transform: translateY(-3px) scale(1.02);
  color: var(--pink-deep);
  box-shadow: 0 22px 50px rgba(233, 79, 136, 0.4);
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 40px;
  padding: 30px 20px 40px;
  border-top: 1px solid rgba(184, 146, 245, 0.22);
  text-align: center;
}
.site-footer .links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 0.92rem;
}
.site-footer .copy {
  margin-top: 14px;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

@media (max-width: 767px) {
  .page-hero {
    padding: 34px 20px 22px;
  }
  .site-header .shell {
    justify-content: center;
  }
  .card,
  .cta-news {
    padding: 22px 18px 24px;
  }
}
