/* ═══════════════════════════════════════════════
   BELLADONA — Estilos principales
   ═══════════════════════════════════════════════ */

/* ── Base ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #fbf7ee;
  color: #521f49;
}
.font-serif { font-family: 'Playfair Display', Georgia, serif; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #fbf7ee; }
::-webkit-scrollbar-thumb { background: #d0b5cc; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #ac7dbb; }


/* ═══════════════════════════════════════════════
   ANIMACIONES
   ═══════════════════════════════════════════════ */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-9px) rotate(-1.5deg); }
}
@keyframes pulseSoft {
  0%, 100% { opacity: var(--pulse-from, 0.2); }
  50%      { opacity: var(--pulse-to, 0.45); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Reveal on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .15s; }
.reveal-d2 { transition-delay: .3s; }
.reveal-d3 { transition-delay: .45s; }
.reveal-d4 { transition-delay: .6s; }

/* ── Hero entrance ── */
.hero-r {
  opacity: 0;
  transform: translateY(60px);
  animation: heroIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-r:nth-child(2) { animation-delay: .2s; }
.hero-r:nth-child(3) { animation-delay: .4s; }
.hero-r:nth-child(4) { animation-delay: .6s; }
.hero-r:nth-child(5) { animation-delay: .85s; }
.hero-r:nth-child(6) { animation-delay: 1.05s; }


/* ═══════════════════════════════════════════════
   COMPONENTES REUTILIZABLES
   ═══════════════════════════════════════════════ */

/* ── Botones ── */
.btn-p {
  background: #9559a8;
  color: #fbf7ee;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-p::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .6s ease;
}
.btn-p:hover::after { left: 100%; }
.btn-p:hover {
  background: #7c4776;
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(149,89,168,.35);
}

.btn-o {
  border: 1px solid #d0b5cc;
  color: #9559a8;
  transition: all .4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-o:hover {
  background: #9559a8;
  color: #fbf7ee;
  border-color: #9559a8;
}

.btn-d {
  background: #521f49;
  color: #fbf7ee;
  transition: all .4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-d:hover {
  background: #3d1735;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(82,31,73,.3);
}

/* ── Section label ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-label.purp      { color: #9559a8; }
.section-label.verde     { color: #808b69; }
.section-label.muted-purp { color: #7c4776; }

/* ── Link underline ── */
.link-u {
  position: relative;
  display: inline-block;
}
.link-u::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .4s cubic-bezier(.16,1,.3,1);
}
.link-u:hover::after { width: 100%; }

/* ── Section glows ── */
.section-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: pulseSoft 5s ease-in-out infinite;
}
.section-glow-1 { top: 5%;  right: -5%;  width: 320px; height: 320px; background: rgba(232,213,228,.2); }
.section-glow-2 { bottom: 5%; left: -5%;   width: 380px; height: 380px; background: rgba(205,221,209,.15); animation-delay: 2.5s; }
.section-glow-5 { top: 40%; left: 45%;      width: 260px; height: 260px; background: rgba(208,181,204,.1);  animation-delay: 4s; }


/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all .5s ease;
}
.navbar.scrolled {
  background: rgba(251,247,238,.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(208,181,204,.25);
}

.nav-link {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #917389;
  font-weight: 300;
  transition: color .3s ease;
}
.nav-link:hover { color: #9559a8; }

.nav-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #917389;
  transition: color .3s ease;
}
.nav-icon:hover { color: #9559a8; }

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}
.brand-photo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(149,89,168,.35);
  box-shadow: 0 4px 14px rgba(82,31,73,.08);
}


/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.watercolor-hero {
  background: linear-gradient(
    160deg,
    #f9f4fb 0%,
    #f0e4f5 30%,
    #e8d5e4 55%,
    #ddd0e8 70%,
    #f3eaf6 100%
  );
}

/* Blobs acuarela */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-blob-1 { top: -10%; left: -5%;   width: 500px; height: 500px; background: rgba(232,213,228,.4);  filter: blur(100px); animation: floatA 7s ease-in-out infinite; }
.hero-blob-2 { bottom: -10%; right: -8%; width: 600px; height: 600px; background: rgba(208,181,204,.3);  filter: blur(120px); animation: floatB 9s ease-in-out 1.5s infinite; }
.hero-blob-3 { top: 30%; right: 10%;      width: 300px; height: 300px; background: rgba(205,221,209,.2);  filter: blur(80px);  animation: pulseSoft 5s ease-in-out infinite; }
.hero-blob-4 { bottom: 20%; left: 15%;    width: 250px; height: 250px; background: rgba(172,125,187,.15); filter: blur(80px);  animation: pulseSoft 5s ease-in-out 2s infinite; }

/* Flores SVG */
.hero-flower {
  position: absolute;
  opacity: .07;
  pointer-events: none;
}
.hero-flower-1 { top: 16%; left: 8%;  width: 40px;  animation: floatA 7s ease-in-out infinite; }
.hero-flower-2 { bottom: 20%; right: 20%; width: 36px; animation: floatB 9s ease-in-out 1.5s infinite; }
@media (min-width: 768px) {
  .hero-flower-1 { width: 56px; left: 6%; }
  .hero-flower-2 { width: 48px; right: 8%; }
}

/* Puntos decorativos */
.hero-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-dot-1 { top: 18%; right: 22%; width: 12px; height: 12px; background: rgba(172,125,187,.3); animation: floatA 7s ease-in-out 1s infinite; }
.hero-dot-2 { top: 60%; left: 12%;  width: 8px;  height: 8px;  background: rgba(149,89,168,.25);  animation: floatB 9s ease-in-out infinite; }
.hero-dot-3 { top: 35%; left: 30%;  width: 10px; height: 10px; background: rgba(128,139,105,.2);   animation: floatA 7s ease-in-out 3s infinite; }
.hero-dot-4 { bottom: 30%; right: 35%; width: 8px; height: 8px; background: rgba(124,71,118,.2);    animation: floatB 9s ease-in-out 2s infinite; }

/* Badge superior */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #7c4776;
  font-weight: 500;
}
@media (min-width: 768px) {
  .hero-badge { font-size: 12px; }
}
.hero-badge-line {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: #7c4776;
}

/* Feature cards del banner */
.hero-feature-card {
  background: rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid rgba(208,181,204,.3);
  transition: all .3s ease;
}
.hero-feature-card:hover {
  background: rgba(255,255,255,.55);
  border-color: rgba(208,181,204,.5);
  transform: translateY(-2px);
}
.hero-feature-label {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #521f49;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-feature-label { font-size: 12px; }
  .hero-feature-card { padding: 1.25rem; }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
@media (min-width: 768px) {
  .hero-scroll-indicator { display: flex; }
}
.hero-scroll-indicator span {
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #917389;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #d0b5cc, transparent);
}

/* ── Hero provisional acuarela, sin imagen de fondo ── */
.watercolor-hero {
  min-height: 100vh;
  padding-top: 5.5rem;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(208,181,204,.42), transparent 30%),
    radial-gradient(ellipse at 82% 20%, rgba(205,221,209,.42), transparent 28%),
    radial-gradient(ellipse at 50% 68%, rgba(172,125,187,.2), transparent 34%),
    linear-gradient(160deg, #fbf7ee 0%, #f9f4fb 42%, #e8d5e4 100%);
  isolation: isolate;
}
.watercolor-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(82,31,73,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82,31,73,.02) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .45;
  pointer-events: none;
}
.watercolor-hero::after {
  content: none;
}
.watercolor-hero > .relative {
  max-width: 64rem;
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.watercolor-hero .hero-flower {
  opacity: .1;
}
.hero-logo-frame {
  width: min(13.5rem, 42vw);
  aspect-ratio: 1;
  margin: 0 auto -1.2rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(82,31,73,.08);
  opacity: .96;
}
.hero-logo-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-wordmark {
  font-size: clamp(3.4rem, 8vw, 6.8rem) !important;
  margin-bottom: .65rem !important;
  color: #521f49;
  text-shadow: 0 1px 0 rgba(251,247,238,.65);
}
.hero-badge {
  color: #521f49;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  letter-spacing: .2em;
  font-weight: 700;
}
.hero-badge-line {
  width: 42px;
  background: #808b69;
}
.watercolor-hero p.hero-r:not(.hero-feature-label) {
  color: #917389;
}
.hero-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .9rem;
  min-height: 5rem;
  padding: .9rem 1rem;
  background: rgba(251,247,238,.62);
  border: 1px solid rgba(208,181,204,.32);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(82,31,73,.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-feature-card .iconify {
  width: 3.1rem !important;
  height: 3.1rem !important;
  padding: .78rem;
  border-radius: 50%;
  background: rgba(208,181,204,.42);
  color: #521f49 !important;
  margin: 0 !important;
}
.hero-feature-label {
  text-align: left;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 12px;
  letter-spacing: .08em;
  line-height: 1.25;
  color: #521f49;
  font-weight: 700;
}
.watercolor-hero .btn-p {
  background: #9559a8;
  box-shadow: 0 10px 30px rgba(82,31,73,.16);
}
.watercolor-hero .btn-o {
  background: rgba(251,247,238,.56);
  border-color: rgba(124,71,118,.22);
}
@media (min-width: 768px) {
  .watercolor-hero .grid.md\:grid-cols-4 {
    max-width: 64rem;
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .watercolor-hero {
    min-height: auto;
    padding-top: 5rem;
  }
  .watercolor-hero::after {
    content: none;
  }
  .watercolor-hero > .relative {
    padding-top: 1rem;
    padding-bottom: 2.75rem;
  }
  .hero-logo-frame {
    width: min(11rem, 54vw);
    margin-bottom: -.7rem;
  }
  .hero-wordmark {
    font-size: clamp(3rem, 14vw, 4.4rem) !important;
  }
  .watercolor-hero .grid.grid-cols-2 {
    gap: .55rem;
  }
  .hero-feature-card {
    grid-template-columns: 2.45rem 1fr;
    min-height: 3.9rem;
    padding: .45rem .5rem;
  }
  .hero-feature-card .iconify {
    width: 2.45rem !important;
    height: 2.45rem !important;
    padding: .62rem;
  }
  .hero-feature-label {
    font-size: 10px;
  }
  .watercolor-hero .hero-r.mt-12 {
    margin-top: 1.6rem !important;
  }
}


/* ═══════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════ */
.marquee-band {
  padding: 1.25rem 0;
  background: rgba(232,213,228,.3);
  border-top: 1px solid rgba(208,181,204,.3);
  border-bottom: 1px solid rgba(208,181,204,.3);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-items {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 1.25rem;
}
.marquee-items span {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #917389;
  white-space: nowrap;
}
.marquee-sep {
  font-size: 12px !important;
  color: #d0b5cc !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.marquee-sep.green { color: #808b69 !important; }


/* ═══════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════ */
.p-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  transition: all .6s cubic-bezier(.16,1,.3,1);
  cursor: pointer;
}
.p-card:hover { transform: translateY(-5px); }
.p-card:hover .p-img { transform: scale(1.06); }

.p-card-img-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.p-card-img-sm { aspect-ratio: 3 / 4; }
.p-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}

.p-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(82,31,73,.5) 0%, rgba(82,31,73,.15) 60%, transparent 100%);
}
@media (min-width: 768px) {
  .p-card-overlay { padding: 2rem; }
}

.p-card-cat {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(249,244,251,.8);
}
.p-card-title {
  font-family: 'Playfair Display', serif;
  color: #fbf7ee;
  margin-top: .25rem;
}
.p-card-desc {
  font-size: 14px;
  color: rgba(251,247,238,.7);
  margin-top: .5rem;
  font-weight: 300;
}
.p-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.p-card-price {
  font-family: 'Playfair Display', serif;
  color: #fbf7ee;
}
.p-card-link {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(251,247,238,.6);
  display: flex;
  align-items: center;
  gap: .25rem;
  transition: color .3s ease;
}
.p-card:hover .p-card-link { color: #fbf7ee; }
.p-card-link.icon-only .iconify { transition: transform .3s ease; }
.p-card:hover .p-card-link.icon-only .iconify { transform: translateX(3px); }


/* ── Scenario tabs ── */
.s-tab {
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #917389;
  font-weight: 300;
  padding-bottom: 4px;
  position: relative;
  transition: color .4s ease;
  background: none;
  border: none;
  cursor: pointer;
}
.s-tab::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: #9559a8;
  transition: width .4s cubic-bezier(.16,1,.3,1);
}
.s-tab:hover::after,
.s-tab.active::after { width: 100%; }
.s-tab.active {
  color: #9559a8;
  font-weight: 500;
}


/* ═══════════════════════════════════════════════
   INTERSTITIAL
   ═══════════════════════════════════════════════ */
.interstitial {
  position: relative;
  height: 45vh;
  overflow: hidden;
}
@media (min-width: 768px) {
  .interstitial { height: 65vh; }
}
.interstitial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interstitial-overlay {
  position: absolute;
  inset: 0;
  background: rgba(82,31,73,.3);
}
.interstitial-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ═══════════════════════════════════════════════
   SOSTENIBILIDAD — Tarjetas + Timeline
   ═══════════════════════════════════════════════ */
.sust-card {
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--card-border);
  transition: all .5s ease;
}
.sust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 50px rgba(149,89,168,.08);
  border-color: #d0b5cc;
}

.sust-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

/* Timeline */
.process-timeline {
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, #d0b5cc, #cdddd1, #808b69, #d0b5cc);
}
@media (min-width: 768px) {
  .process-timeline::before {
    left: 50%;
    transform: translateX(-.5px);
  }
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .process-step { flex-direction: row; align-items: flex-start; }
}

.process-step-left {
  padding-left: 3.5rem;
}
.process-step-right {
  padding-left: 3.5rem;
}
@media (min-width: 768px) {
  .process-step-left  { width: 50%; padding-right: 4rem; padding-left: 0; text-align: right; }
  .process-step-right { width: 50%; padding-left: 4rem; }
  .process-step-img.process-step-left img { margin-left: auto; }
}

.process-step-img {
  display: none;
}
@media (min-width: 768px) {
  .process-step-img { display: block; }
}

.process-dot {
  position: absolute;
  left: 14px;
  top: .25rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--dot-color);
  border: 4px solid #fbf7ee;
  z-index: 2;
}
@media (min-width: 768px) {
  .process-dot {
    left: 50%;
    transform: translateX(-50%);
  }
}

.process-step-num {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #9559a8;
  font-weight: 500;
}


/* ═══════════════════════════════════════════════
   HISTORIA — Imágenes compuestas
   ═══════════════════════════════════════════════ */
.story-img-group {
  position: relative;
}
.story-img-main {
  display: block;
}
.story-img-overlap {
  position: absolute;
  bottom: -1.5rem;
  right: -.75rem;
  width: 9rem;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  border: 4px solid rgba(249,244,251,.4);
  box-shadow: 0 10px 40px rgba(82,31,73,.12);
}
@media (min-width: 768px) {
  .story-img-overlap { width: 12rem; right: -2rem; }
}
.story-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.story-blob-1 { top: -1rem; left: -1rem; width: 7rem; height: 7rem; background: rgba(232,213,228,.4); filter: blur(32px); }
.story-blob-2 { bottom: -1rem; left: 33%;   width: 5rem; height: 5rem; background: rgba(205,221,209,.3); filter: blur(24px); }


/* ═══════════════════════════════════════════════
   STATS BAND
   ═══════════════════════════════════════════════ */
.stats-band {
  padding: 4rem 0;
  background: #521f49;
  position: relative;
  overflow: hidden;
}
.stats-glow-1 {
  position: absolute;
  top: 0; left: 0;
  width: 24rem; height: 24rem;
  background: #9559a8;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .1;
}
.stats-glow-2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 20rem; height: 20rem;
  background: #808b69;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .1;
}
.stats-sub {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #d0b5cc;
  margin-top: .5rem;
}


/* ═══════════════════════════════════════════════
   COMUNIDAD
   ═══════════════════════════════════════════════ */
.c-card:hover .c-img { transform: scale(1.04); }

.c-card-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--wrap-bg);
}
.c-card-img-wrap .c-img-wrap-inner {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.c-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}

.c-card-body { padding: 0 .25rem; }

.c-card-avatar {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.c-card-avatar img {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.c-card-name {
  font-size: 14px;
  font-weight: 500;
  color: #521f49;
}
.c-card-loc {
  font-size: 12px;
  color: #917389;
}
.c-card-quote {
  font-size: 14px;
  color: #917389;
  line-height: 1.6;
  font-weight: 300;
  font-style: italic;
}
.c-card-wearing {
  font-size: 11px;
  color: #d0b5cc;
  letter-spacing: .05em;
  margin-top: .625rem;
}


/* ═══════════════════════════════════════════════
   DIARIO / JOURNAL
   ═══════════════════════════════════════════════ */
.journal-card {
  cursor: pointer;
}
.journal-card:hover .journal-img { transform: scale(1.05); }

.journal-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--wrap-bg);
}
.journal-img-wrap .journal-img-inner {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.journal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}

.journal-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.journal-cat {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
}
.journal-cat.verde      { color: #808b69; }
.journal-cat.purp       { color: #9559a8; }
.journal-cat.muted-purp { color: #7c4776; }
.journal-sep { color: rgba(208,181,204,.5); }
.journal-date {
  font-size: 12px;
  color: #917389;
}

.journal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #521f49;
  line-height: 1.35;
  margin-bottom: .5rem;
  transition: color .3s ease;
}
.journal-card:hover .journal-title { color: #9559a8; }

.journal-excerpt {
  font-size: 14px;
  color: #917389;
  line-height: 1.6;
  font-weight: 300;
}


/* ═══════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════ */
.newsletter {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.newsletter img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: rgba(251,247,238,.92);
}
.newsletter-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.newsletter-blob-1 { top: 2.5rem; right: 5rem;  width: 16rem; height: 16rem; background: rgba(232,213,228,.25); filter: blur(48px); animation: floatA 7s ease-in-out infinite; }
.newsletter-blob-2 { bottom: 2.5rem; left: 4rem; width: 12rem; height: 12rem; background: rgba(205,221,209,.2);  filter: blur(40px); animation: floatB 9s ease-in-out 1.5s infinite; }

.newsletter-input {
  flex: 1;
  padding: .875rem 1.25rem;
  border-radius: 9999px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(208,181,204,.4);
  color: #521f49;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: all .3s ease;
}
.newsletter-input::placeholder { color: #917389; }
.newsletter-input:focus {
  border-color: #9559a8;
  background: rgba(255,255,255,.8);
}


/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer-heading {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fbf7ee;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(208,181,204,.6);
  text-decoration: none;
  transition: color .3s ease;
}
.footer-links a:hover { color: #d0b5cc; }
.footer-contact li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(208,181,204,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(208,181,204,.6);
  text-decoration: none;
  transition: all .3s ease;
}
.footer-social:hover {
  border-color: #ac7dbb;
  color: #ac7dbb;
}

.footer-bottom-link {
  font-size: 12px;
  font-weight: 300;
  color: rgba(208,181,204,.3);
  text-decoration: none;
  transition: color .3s ease;
}
.footer-bottom-link:hover { color: rgba(208,181,204,.6); }


/* ═══════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  background: #521f49;
  color: #fbf7ee;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(82,31,73,.25);
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  transform: translateY(20px);
  opacity: 0;
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}


/* ═══════════════════════════════════════════════
   MENÚ MÓVIL
   ═══════════════════════════════════════════════ */
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: #fbf7ee;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.mob-menu.open {
  transform: translateX(0);
}


/* ═══════════════════════════════════════════════
   ASPECT RATIOS (para imgs dentro de wraps)
   ═══════════════════════════════════════════════ */
.c-card-img-wrap { aspect-ratio: 4 / 5; }
.journal-img-wrap { aspect-ratio: 3 / 2; }
