/* =====================================================
   ARTEMOLA · Web completa 2026
   Estilo: editorial, premium, artístico, humano
   ===================================================== */

/* ---------- Tipografías de marca ---------- */
@font-face {
  font-family: "Froople";
  src: url("assets/fonts/Froople.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Alumatica";
  src: url("assets/fonts/Alumatica.ttf") format("truetype");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --pink:        #E76A95;
  --pink-deep:   #D14E7C;
  --pink-soft:   #F9D8E2;
  --pink-mist:   #FDE9F0;
  --blue:        #9DC8E8;
  --blue-deep:   #5A9AC8;
  --blue-soft:   #DEEBF6;
  --blue-mist:   #EBF4FB;
  --yellow:      #F4D74E;
  --yellow-soft: #FBEEB1;
  --yellow-mist: #FDFAE8;

  --pink-text:   #A8306A;

  --bg:          #FDF7F2;
  --bg-warm:     #FCEEE9;
  --bg-dark:     #2A2330;
  --ink:         #2A2330;
  --ink-soft:    #6B5F6B;
  --line:        rgba(42,35,48,0.10);
  --card:        rgba(255,255,255,0.62);
  --card-edge:   rgba(255,255,255,0.78);
  --shadow-1:    0 1px 2px rgba(42,35,48,.04), 0 8px 24px -10px rgba(231,106,149,.18);
  --shadow-2:    0 12px 40px -14px rgba(231,106,149,.30);
  --shadow-deep: 0 20px 60px -20px rgba(42,35,48,.25);

  --f-display: "Froople", "Fraunces", "Cormorant Garamond", Georgia, serif;
  --f-body:    "Alumatica", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw:    1180px;
  --radius:  22px;
  --radius-sm: 14px;
  --nav-h:   72px;
}

/* ---------- Reset suave ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

/* ---------- Cursor flor ---------- */
body.has-flower-cursor * { cursor: none !important; }

.flower-cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 9999;
  pointer-events: none;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%);
  transition: transform .12s ease, width .25s ease, height .25s ease;
  will-change: transform;
}
.flower-cursor.is-hovering {
  width: 48px;
  height: 48px;
}
.cursor-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: twirl 6s linear infinite;
  filter: drop-shadow(0 4px 10px rgba(231,106,149,.4));
}

/* ---------- Base ---------- */
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  letter-spacing: 0.005em;
  min-height: 100svh;
  overflow-x: hidden;
  background-image:
    radial-gradient(1200px 700px at 88% -8%,  var(--pink-mist) 0%, transparent 60%),
    radial-gradient(900px 600px at -10% 18%, var(--blue-soft) 0%, transparent 65%),
    radial-gradient(800px 500px at 50% 110%, var(--yellow-soft) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}

/* ---------- Fondo: blobs cromáticos ---------- */
.garden {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  mix-blend-mode: multiply;
  animation: drift 22s ease-in-out infinite alternate;
}
.blob-1 { width: 520px; height: 520px; top: -120px; left: -140px; background: var(--pink-soft); animation-delay: 0s; }
.blob-2 { width: 460px; height: 460px; bottom: -160px; right: -120px; background: var(--yellow-soft); animation-delay: -7s; animation-duration: 26s; }
.blob-3 { width: 360px; height: 360px; top: 38%; right: 18%; background: var(--blue-soft); animation-delay: -12s; animation-duration: 30s; }

@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(40px,-30px,0) scale(1.08); }
  100% { transform: translate3d(-30px,40px,0) scale(.96); }
}

/* ---------- Capas de flores ---------- */
.layer { position: absolute; inset: 0; will-change: transform; }
.layer-far  { opacity: .55; }
.layer-mid  { opacity: .80; }
.layer-near { opacity: .95; }

.petal {
  position: absolute;
  left: var(--x);
  top:  var(--y);
  width: var(--s);
  height: var(--s);
  object-fit: contain;
  transform: translate(-50%, -50%) rotate(var(--r, 0deg));
  animation:
    floaty 12s ease-in-out infinite,
    twirl  28s linear infinite;
  animation-delay: var(--d, 0s), calc(var(--d, 0s) * -1);
  filter: drop-shadow(0 8px 18px rgba(231,106,149,0.10));
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* Flores con hover: giran más rápido al pasar el cursor */
.hoverable {
  pointer-events: auto;
  transition: filter .3s ease;
}
.hoverable:hover {
  animation:
    floaty 12s ease-in-out infinite,
    twirl  4s linear infinite !important;
  filter: drop-shadow(0 8px 22px rgba(231,106,149,.35)) brightness(1.1);
}

@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -22px; }
}
@keyframes twirl {
  from { rotate: 0deg; }
  to   { rotate: 360deg; }
}

/* ---------- Grano ---------- */
.grain {
  position: fixed; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .055;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Indicador lateral de secciones ---------- */
.section-dots {
  position: fixed;
  right: clamp(12px, 2vw, 24px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 6px;
  background: rgba(255,255,255,.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--card-edge);
  border-radius: 999px;
  box-shadow: var(--shadow-1);
}
.sd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-soft);
  border: 1.5px solid var(--pink);
  display: block;
  transition:
    background .3s ease,
    transform .3s cubic-bezier(.2,.7,.3,1.4),
    width .3s ease,
    height .3s ease;
  position: relative;
}
.sd-dot::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.sd-dot:hover::after { opacity: 1; }
.sd-dot.is-active {
  background: var(--pink);
  transform: scale(1.4);
}

@media (max-width: 900px) {
  .section-dots { display: none; }
}

/* ---------- Navegación principal ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background .4s ease, box-shadow .4s ease;
}
.site-nav.scrolled {
  background: rgba(253,247,242,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 24px -8px rgba(231,106,149,.18);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 56px);
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; flex: none; }
.nav-logo-img {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(231,106,149,.22));
  transition: transform .35s cubic-bezier(.2,.7,.3,1.4);
}
.nav-logo:hover .nav-logo-img { transform: translateY(-2px) scale(1.02); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}
.nav-link {
  font-family: var(--f-body);
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--ink-soft);
  padding: 6px 2px;
  border-bottom: 1.5px solid transparent;
  transition: color .25s ease, border-color .25s ease;
}
.nav-link:hover { color: var(--ink); border-bottom-color: var(--pink); }
.nav-link.nav-cta {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  border-bottom: none;
  font-weight: 500;
  box-shadow: 0 6px 18px -6px rgba(231,106,149,.55);
  transition:
    background .3s ease,
    transform .3s cubic-bezier(.2,.7,.3,1.4),
    box-shadow .3s ease;
}
.nav-link.nav-cta:hover {
  background: var(--pink-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(209,78,124,.55);
}

/* Burger (mobile) */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  padding: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(253,247,242,.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    padding: 28px 32px 40px;
    gap: 8px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .4s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
    box-shadow: 0 20px 40px -10px rgba(42,35,48,.12);
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link { font-size: 18px; padding: 10px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav-link.nav-cta { text-align: center; margin-top: 8px; border-bottom: none; }
}

/* ---------- Layout compartido de secciones ---------- */
.section-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 120px) clamp(20px, 5vw, 56px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.label-flower {
  width: 24px; height: 24px;
  object-fit: contain;
  animation: twirl 10s linear infinite;
}

.section-title {
  margin: 0 0 clamp(20px, 3vw, 32px);
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.015em;
  color: var(--ink);
}
.section-intro {
  max-width: 620px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 clamp(24px, 3vw, 40px);
}
.title-accent {
  color: var(--pink);
  display: inline;
}
.title-accent-blue {
  color: var(--blue-deep);
  display: inline;
}
.title-flower {
  display: inline-block;
  width: clamp(32px, 4vw, 56px);
  height: clamp(32px, 4vw, 56px);
  object-fit: contain;
  vertical-align: middle;
  margin-left: .3ch;
  animation: twirl 14s linear infinite;
}

/* ---------- Botones ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .01em;
  box-shadow: 0 14px 30px -12px rgba(231,106,149,.55);
  transition:
    transform .35s cubic-bezier(.2,.7,.3,1.4),
    background .35s ease,
    box-shadow .35s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
}
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--pink) 0%, var(--pink-deep) 100%);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: -1;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -14px rgba(209,78,124,.6);
}
.btn-primary:hover::before { opacity: 1; }
.btn-flower {
  width: 22px; height: 22px;
  object-fit: contain;
  animation: twirl 4s linear infinite;
  flex: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: rgba(255,255,255,.55);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform .35s ease,
    background .35s ease,
    border-color .35s ease;
  text-decoration: none;
}
.btn-ghost:hover {
  transform: translateY(-2px);
  background: var(--pink-mist);
  border-color: var(--pink-soft);
  color: var(--pink-deep);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: var(--delay, 0s);
}
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-up[style*="--delay"] { transition-delay: var(--delay, 0s); }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Typewriter hero ---- */
.tw-cursor {
  display: inline-block;
  width: 2px;
  height: .78em;
  background: var(--ink);
  border-radius: 2px;
  margin: 0 0 .06em 3px;
  vertical-align: middle;
  animation: tw-blink .85s ease-in-out infinite;
}
.tw-cursor.tw-cursor-pink { background: var(--pink); }
.tw-cursor.tw-cursor-done {
  animation: none;
  opacity: 0;
  transition: opacity .4s ease;
}
@keyframes tw-blink {
  0%, 44% { opacity: 1; }
  56%, 100% { opacity: 0; }
}

.title-flower.tw-hidden {
  opacity: 0 !important;
  animation: none !important;
  transform: scale(0) rotate(-130deg) !important;
}
.title-flower.tw-bloom {
  animation: tw-bloom .6s cubic-bezier(.2,.7,.3,1.4) both, twirl 10s linear infinite .6s !important;
}
@keyframes tw-bloom {
  from { opacity: 0; transform: scale(0) rotate(-130deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* ===================================================================
   SECCIÓN 1: HERO
   =================================================================== */
.hero-full {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) clamp(20px,5vw,56px) 80px;
}
.hero-inner {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2.2vw, 24px);
}
.hero-logo .logo {
  width: clamp(200px, 38vw, 480px);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(231,106,149,.22));
  animation: bob 6s ease-in-out infinite;
}
.logo-wrap { display: inline-flex; justify-content: center; margin-bottom: clamp(-20px,-2vw,-8px); }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-family: var(--f-body);
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--pink-deep);
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-deep), transparent);
}

.hero-title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 5.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--ink);
}
.hero-sub {
  max-width: 600px;
  margin: 0;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
}
.hero-sub em {
  font-family: var(--f-display);
  font-style: normal;
  color: var(--pink-deep);
  font-size: 1.1em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  opacity: .55;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--pink), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: .55; }
  50%       { transform: scaleY(.6); opacity: 1; }
}
.scroll-text {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ===================================================================
   SECCIÓN 2: ABOUT
   =================================================================== */
.about { background: transparent; }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about-text {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow-1);
}
.about-body p {
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.about-body strong { color: var(--ink); font-weight: 600; }
.about-body em { color: var(--pink-deep); font-style: italic; }

.about-manifesto {
  padding: 28px 32px;
  margin: 28px 0;
  background: var(--pink-mist);
  border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about-manifesto p {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  color: var(--pink-deep);
}

.about-card {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 40px 32px;
  box-shadow: var(--shadow-2);
  text-align: center;
}
.about-signature {
  margin-bottom: 28px;
}
.sig-text {
  font-family: var(--f-display);
  font-size: 80px;
  line-height: 1;
  color: var(--pink);
  display: block;
  opacity: .85;
  letter-spacing: -.02em;
}
.sig-caption {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.sig-caption em { font-style: italic; color: var(--pink-deep); }

.about-flowers {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 14px;
  margin-top: 16px;
}
.af-1 { width: 54px; height: 54px; object-fit: contain; animation: twirl 8s linear infinite; }
.af-2 { width: 72px; height: 72px; object-fit: contain; animation: twirl 12s linear infinite reverse; }
.af-3 { width: 48px; height: 48px; object-fit: contain; animation: twirl 6s linear infinite; }

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-card { position: static; }
  .about-visual { order: -1; }
}

/* ===================================================================
   SECCIÓN 3: CÓMO TRABAJAMOS
   =================================================================== */
.process {
  background:
    radial-gradient(800px 500px at 100% 50%, var(--yellow-mist) 0%, transparent 65%),
    radial-gradient(600px 400px at 0% 50%, var(--pink-mist) 0%, transparent 65%);
}
.process .section-title,
.process .section-intro { text-align: center; margin-inline: auto; }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: clamp(40px, 5vw, 64px);
  max-width: 860px;
  margin-inline: auto;
}

.process-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: clamp(28px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity .7s cubic-bezier(.2,.7,.2,1),
    transform .7s cubic-bezier(.2,.7,.2,1);
}
.process-step:last-child { border-bottom: none; }
.process-step.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.step-flower-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.step-flower {
  width: 70px; height: 70px;
  object-fit: contain;
  transition: transform .5s cubic-bezier(.2,.7,.3,1.4);
  transform: scale(0.6) rotate(-20deg);
  animation: none !important; /* anulamos la animación global */
  filter: drop-shadow(0 6px 14px rgba(231,106,149,.20));
}
.process-step.is-visible .step-flower {
  transform: scale(1) rotate(0deg);
  animation: twirl 14s linear infinite !important;
}
.step-flower:hover {
  animation: twirl 3s linear infinite !important;
}

.step-content {}
.step-num {
  display: block;
  font-family: var(--f-display);
  font-size: 52px;
  line-height: 1;
  color: var(--pink-soft);
  font-weight: 400;
  letter-spacing: -.02em;
  margin-bottom: 4px;
  transition: color .5s ease;
}
.process-step.is-visible .step-num { color: var(--pink); }
.step-title {
  margin: 0 0 10px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink);
}
.step-desc {
  margin: 0;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.7;
  color: var(--ink-soft);
}

@media (max-width: 640px) {
  .process-step { grid-template-columns: 60px 1fr; gap: 16px; }
  .step-flower { width: 50px; height: 50px; }
  .step-num { font-size: 38px; }
}

/* ===================================================================
   SECCIÓN 4: SERVICIOS
   =================================================================== */
.services-full {}
.services-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(32px, 4vw, 52px);
}

.service-cat {
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.5vw, 32px);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition:
    transform .4s cubic-bezier(.2,.7,.3,1.2),
    box-shadow .4s ease,
    background .4s ease;
}
.service-cat:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-2);
}

.sc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.sc-title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
  color: var(--ink);
}
.sc-flower {
  width: 52px; height: 52px;
  object-fit: contain;
  flex: none;
  animation: twirl 12s linear infinite;
}
.service-cat:hover .sc-flower {
  animation: twirl 3s linear infinite !important;
}

.sc-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(13.5px, 1.2vw, 15px);
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.sc-list li:last-child { border-bottom: none; }
.sc-list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  flex: none;
}

.sc-cta {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--pink-deep);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, transform .3s ease;
}
.sc-cta:hover {
  border-bottom-color: var(--pink);
  transform: translateX(4px);
}

@media (max-width: 860px) { .services-cats { grid-template-columns: 1fr; } }
@media (min-width: 640px) and (max-width: 860px) { .services-cats { grid-template-columns: repeat(2, 1fr); } }

/* ===================================================================
   SECCIÓN 5: ARTEMÓVIL / DIGITAL
   =================================================================== */
.artemovil-band {
  background:
    radial-gradient(700px 500px at 0% 50%, var(--blue-mist) 0%, transparent 65%),
    radial-gradient(600px 400px at 100% 30%, var(--yellow-mist) 0%, transparent 65%);
}
.artemovil-text {
  background: rgba(255,255,255,.68);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: clamp(24px, 3.5vw, 44px);
  box-shadow: var(--shadow-1);
}

.artemovil-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.digital-services {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 32px;
}
.digital-services li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .3s ease, transform .3s ease;
}
.digital-services li:hover {
  background: rgba(255,255,255,.9);
  transform: translateX(6px);
}
.ds-flower {
  width: 32px; height: 32px;
  object-fit: contain;
  flex: none;
  animation: twirl 12s linear infinite;
  filter: drop-shadow(0 3px 8px rgba(157,200,232,.3));
}
.digital-services li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.digital-services strong {
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--ink);
  font-weight: 600;
}
.digital-services span {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.btn-artemovil {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 12px 28px -10px rgba(42,35,48,.45);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    background .35s ease;
}
.btn-artemovil:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -12px rgba(42,35,48,.5);
  background: #3d3347;
}
.btn-artemovil-logo-wrap {
  background: rgba(255,255,255,.97);
  border-radius: 6px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  flex: none;
}
.btn-artemovil-logo {
  height: 22px;
  width: auto;
  display: block;
}

.artemovil-deco {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.deco-card {
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  box-shadow: var(--shadow-1);
  transition: transform .4s ease;
}
.deco-card:hover { transform: translateY(-4px) scale(1.02); }
.deco-num {
  display: block;
  font-family: var(--f-display);
  font-size: 40px;
  line-height: 1;
  color: var(--blue-deep);
  margin-bottom: 6px;
}
.deco-flower {
  width: 48px; height: 48px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
  animation: twirl 10s linear infinite;
}
.deco-label {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: .04em;
}

@media (max-width: 860px) {
  .artemovil-layout { grid-template-columns: 1fr; }
  .artemovil-deco { flex-direction: row; flex-wrap: wrap; }
  .deco-card { flex: 1 1 140px; }
}

/* ===================================================================
   SECCIÓN 6: MI JARDÍN CREATIVO
   =================================================================== */
.garden-section {}
.garden-content { max-width: 640px; }
.garden-caption {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin-top: 12px;
  transition:
    transform .35s ease,
    box-shadow .35s ease;
  box-shadow: 0 10px 24px -8px rgba(231,106,149,.5);
  text-decoration: none;
}
.btn-insta:hover {
  transform: translateY(-3px);
  background: var(--pink-deep);
  box-shadow: 0 18px 32px -10px rgba(231,106,149,.55);
}
.btn-insta-flower {
  width: 22px; height: 22px;
  object-fit: contain;
  flex: none;
  animation: twirl 8s linear infinite;
  filter: brightness(0) invert(1);
}

.garden-placeholder {
  position: absolute;
  right: clamp(20px, 7vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 36px 40px 32px;
  box-shadow: var(--shadow-2);
  width: clamp(240px, 26vw, 300px);
}
.garden-section .section-inner { position: relative; }

/* Contenedor de la composición circular */
.gp-seed {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 22px;
}

/* Anillo decorativo punteado */
.gp-ring {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1.5px dashed rgba(231,106,149,.30);
  animation: twirl 40s linear infinite;
}

/* Logotipo central */
.gp-logo-fl {
  position: absolute;
  width: 88px; height: 88px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  object-fit: contain;
  opacity: .92;
  filter: drop-shadow(0 6px 16px rgba(231,106,149,.22));
}

/* Wrapper que gira alrededor del centro */
.gp-orb {
  position: absolute;
  inset: 0;
  animation: twirl 16s linear infinite;
  transform-origin: 50% 50%;
}
.gp-orb-2 { animation-delay: -5.33s; }
.gp-orb-3 { animation-delay: -10.67s; }

/* Flor hija: contrarrota para mantenerse erguida */
.gp-orb .gp-fl {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 50px;
  object-fit: contain;
  animation: twirl 16s linear infinite reverse;
  filter: drop-shadow(0 4px 10px rgba(231,106,149,.18));
}

/* Tipografía */
.gp-label {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 400;
  color: var(--pink);
  letter-spacing: -.01em;
  margin: 0 0 6px;
  line-height: 1.1;
}
.gp-sublabel {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: .04em;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .garden-placeholder { position: static; transform: none; margin-top: 40px; }
}

/* ===================================================================
   SECCIÓN 7: BLOG
   =================================================================== */
.blog {}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(32px, 4vw, 52px);
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 40px);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-1);
  transition:
    transform .4s cubic-bezier(.2,.7,.3,1.2),
    box-shadow .4s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}
.coming-soon-card {
  opacity: .7;
}
.blog-card-link {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.bc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bc-cat {
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pink-deep);
  padding: 4px 12px;
  background: var(--pink-mist);
  border-radius: 999px;
}
.bc-date {
  display: block;
  font-size: 12.5px;
  letter-spacing: .03em;
  color: var(--ink-soft);
  margin: -6px 0 -4px;
}
.bc-flower {
  width: 36px; height: 36px;
  object-fit: contain;
  animation: twirl 14s linear infinite;
}
.blog-card:hover .bc-flower {
  animation: twirl 4s linear infinite !important;
}
.bc-title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  color: var(--ink);
}
.bc-excerpt {
  margin: 0;
  font-size: clamp(13.5px, 1.2vw, 15px);
  line-height: 1.65;
  color: var(--ink-soft);
  flex: 1;
}
.bc-read {
  font-size: 14px;
  font-weight: 500;
  color: var(--pink-deep);
  transition: transform .25s ease;
  display: inline-block;
  margin-top: auto;
}
.blog-card:hover .bc-read { transform: translateX(4px); }
.bc-soon {
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: auto;
}

@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   SECCIÓN 8: CONTACTO
   =================================================================== */
.contact-full {}
.contact-info {
  background: rgba(255,255,255,.68);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: clamp(24px, 3.5vw, 44px);
  box-shadow: var(--shadow-1);
}

.contact-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 28px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-soft);
}
.contact-details a {
  color: var(--ink);
  transition: color .25s ease;
}
.contact-details a:hover { color: var(--pink-deep); }
.cd-flower {
  width: 32px; height: 32px;
  object-fit: contain;
  flex: none;
  animation: twirl 10s linear infinite;
  filter: drop-shadow(0 3px 7px rgba(231,106,149,.22));
}

.contact-flowers {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-top: 32px;
}
.cf-1 { width: 56px; height: 56px; object-fit: contain; animation: twirl 10s linear infinite; }
.cf-2 { width: 72px; height: 72px; object-fit: contain; animation: twirl 14s linear infinite reverse; }
.cf-3 { width: 48px; height: 48px; object-fit: contain; animation: twirl 7s linear infinite; }

/* Formulario */
.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 44px);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-deep);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
  background: rgba(255,255,255,.75);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  width: 100%;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ink-soft); opacity: .6; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(255,255,255,.95);
  box-shadow: 0 0 0 3px rgba(231,106,149,.15);
}
.form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%236B5F6B' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-field textarea { resize: vertical; min-height: 130px; }

.form-check { display: flex; align-items: flex-start; gap: 12px; }
.check-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.check-label input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.check-mark {
  flex: none;
  width: 20px; height: 20px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,.75);
  display: grid; place-items: center;
  transition: background .25s ease, border-color .25s ease;
  margin-top: 1px;
}
.check-label input:checked + .check-mark {
  background: var(--pink);
  border-color: var(--pink);
}
.check-label input:checked + .check-mark::after {
  content: "";
  width: 10px; height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px,-1px);
  display: block;
}
.check-text {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.check-text a { color: var(--pink-deep); text-decoration: underline; }

.btn-submit { width: 100%; justify-content: center; font-size: 17px; padding: 18px; }

.form-feedback {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  line-height: 1.5;
}
.form-feedback.success {
  background: #e6f7ee;
  border: 1px solid #a8d5b5;
  color: #2d7a4f;
}
.form-feedback.error {
  background: var(--pink-mist);
  border: 1px solid var(--pink-soft);
  color: var(--pink-deep);
}

@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  position: relative;
  z-index: 2;
  background: var(--bg-dark);
  color: rgba(255,255,255,.85);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 56px) clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 80px);
}
.footer-brand {}
.footer-logo {
  width: clamp(160px, 20vw, 220px);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
  margin-bottom: 16px;
}
.footer-tagline {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.fn-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fn-title {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 6px;
  display: block;
}
.fn-col a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color .25s ease;
}
.fn-col a:hover { color: var(--pink); }

.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(20px, 3vw, 28px) clamp(20px, 5vw, 56px);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.foot-copy {
  margin: 0;
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
}
.foot-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .04em;
}
.foot-legal a,
.foot-legal button.cookie-config-link {
  color: rgba(255,255,255,.5);
  transition: color .25s ease;
  padding: 2px;
}
.foot-legal a:hover,
.foot-legal button.cookie-config-link:hover { color: var(--pink); }
.foot-legal span { color: rgba(255,255,255,.25); }
.foot-legal button.cookie-config-link {
  appearance: none;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

.foot-by {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  transition: background .3s ease, transform .3s ease;
}
.foot-by:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}
.foot-by-text {
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
}
.foot-by-logo {
  height: 22px;
  width: auto;
  border-radius: 3px;
  opacity: .85;
  transition: opacity .3s ease;
}
.foot-by:hover .foot-by-logo { opacity: 1; }

@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .foot-legal { justify-content: center; }
}

/* ===================================================================
   WHATSAPP FLOTANTE
   =================================================================== */
.wa-float {
  position: fixed;
  right: clamp(18px, 2.2vw, 32px);
  bottom: clamp(80px, 9vw, 108px);
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow:
    0 6px 20px -4px rgba(37,211,102,.65),
    0 2px 6px rgba(42,35,48,.12);
  transition:
    transform .35s cubic-bezier(.2,.7,.3,1.4),
    box-shadow .35s ease;
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow:
    0 14px 32px -6px rgba(37,211,102,.7),
    0 4px 10px rgba(42,35,48,.15);
  animation: none;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 20px -4px rgba(37,211,102,.65), 0 2px 6px rgba(42,35,48,.12); }
  50%       { box-shadow: 0 6px 28px -2px rgba(37,211,102,.85), 0 2px 6px rgba(42,35,48,.12); }
}

/* ===================================================================
   BOTÓN SCROLL TOP
   =================================================================== */
.scroll-top {
  position: fixed;
  right: clamp(18px, 2.2vw, 32px);
  bottom: clamp(18px, 2.2vw, 32px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 48px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .45s ease, transform .45s cubic-bezier(.2,.7,.3,1.2);
}
.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top-arrow {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--pink);
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
  box-shadow: 0 10px 24px -6px rgba(231,106,149,.45);
  animation: arrow-bob 2.2s ease-in-out infinite;
  transition: background .35s ease, transform .35s cubic-bezier(.2,.7,.3,1.4);
}
.scroll-top-arrow svg { width: 20px; height: 20px; }
@keyframes arrow-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
.scroll-top:hover .scroll-top-arrow {
  background: var(--pink-deep);
  animation-play-state: paused;
  transform: translateY(-2px) scale(1.06);
}
.scroll-top-flower {
  width: 26px; height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(231,106,149,.25));
  transition: transform .55s cubic-bezier(.2,.7,.3,1.4);
}
.scroll-top:hover .scroll-top-flower { transform: rotate(180deg) scale(1.12); }

/* ===================================================================
   CMP COOKIES (se mantiene igual)
   =================================================================== */
.cookie-banner {
  position: fixed;
  left: clamp(12px, 2vw, 28px);
  right: clamp(12px, 2vw, 28px);
  bottom: clamp(12px, 2vw, 28px);
  z-index: 9000;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px -16px rgba(231,106,149,.35), 0 4px 14px -4px rgba(42,35,48,.10);
  opacity: 0;
  transform: translateY(20px) scale(.98);
  transition: opacity .4s ease, transform .4s cubic-bezier(.2,.7,.3,1.2);
  pointer-events: none;
  max-width: 1100px;
  margin: 0 auto;
}
.cookie-banner.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.cookie-banner-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  padding: clamp(18px, 2.4vw, 26px) clamp(20px, 3vw, 32px);
}
.cookie-banner-text { flex: 1 1 auto; min-width: 0; }
.cookie-banner-text h2 { margin: 0 0 6px; font-family: var(--f-display); font-weight: 400; font-size: clamp(18px, 1.8vw, 22px); color: var(--ink); letter-spacing: -.005em; }
.cookie-banner-text p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }
.cookie-banner-text a { color: var(--pink-deep); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; flex: 0 0 auto; }
@media (max-width: 720px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; padding: 18px; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions .cb-btn { flex: 1 1 auto; }
}

.cb-btn {
  appearance: none; border: 0; cursor: pointer;
  font-family: var(--f-body); font-size: 14px; font-weight: 500; line-height: 1;
  padding: 12px 20px; border-radius: 999px;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s cubic-bezier(.2,.7,.3,1.4), box-shadow .3s ease;
  white-space: nowrap;
}
.cb-btn:hover { transform: translateY(-1px); }
.cb-btn:active { transform: translateY(0) scale(.98); }
.cb-btn-primary { background: var(--pink); color: #fff; box-shadow: 0 6px 16px -6px rgba(231,106,149,.55); }
.cb-btn-primary:hover { background: var(--pink-deep); }
.cb-btn-ghost { background: rgba(255,255,255,.55); color: var(--ink); border: 1px solid var(--line); }
.cb-btn-ghost:hover { background: var(--pink-mist); border-color: var(--pink-soft); color: var(--pink-deep); }

.cookie-modal { position: fixed; inset: 0; z-index: 9100; display: flex; align-items: center; justify-content: center; padding: clamp(12px,3vw,32px); opacity: 0; transition: opacity .35s ease; pointer-events: none; }
.cookie-modal.is-open { opacity: 1; pointer-events: auto; }
.cookie-modal-backdrop { position: absolute; inset: 0; z-index: 0; background: rgba(42,35,48,.42); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.cookie-modal-card { position: relative; z-index: 2; width: min(100%, 680px); max-height: calc(100vh - 24px); overflow-y: auto; background: #fffaf6; border: 1px solid var(--card-edge); border-radius: var(--radius); padding: clamp(24px,3vw,36px) clamp(22px,3vw,36px); box-shadow: 0 30px 80px -20px rgba(42,35,48,.30), 0 8px 24px -8px rgba(231,106,149,.20); transform: translateY(16px) scale(.98); transition: transform .4s cubic-bezier(.2,.7,.3,1.2); }
.cookie-modal.is-open .cookie-modal-card { transform: translateY(0) scale(1); }
.cookie-modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.7); border: 1px solid var(--line); font-size: 20px; color: var(--ink-soft); cursor: pointer; transition: background .25s ease, color .25s ease, transform .25s ease; }
.cookie-modal-close:hover { background: var(--pink); color: #fff; transform: rotate(90deg); }
.cookie-modal-card h2 { margin: 0 0 10px; font-family: var(--f-display); font-weight: 400; font-size: clamp(22px, 2.6vw, 28px); color: var(--ink); letter-spacing: -.01em; padding-right: 40px; }
.cookie-modal-card > p { margin: 0 0 22px; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.cookie-cats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.cookie-cat { border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.65); overflow: hidden; transition: border-color .25s ease; }
.cookie-cat[open], .cookie-cat:hover { border-color: var(--pink-soft); }
.cookie-cat summary { list-style: none; cursor: pointer; padding: 14px 16px; display: flex; align-items: center; gap: 12px; user-select: none; }
.cookie-cat summary::-webkit-details-marker { display: none; }
.cookie-cat summary::before { content: "›"; font-size: 18px; color: var(--pink); transition: transform .25s ease; flex: none; width: 14px; text-align: center; }
.cookie-cat[open] summary::before { transform: rotate(90deg); }
.cat-name { flex: 1 1 auto; font-weight: 600; font-size: 14.5px; color: var(--ink); }
.cat-status { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); padding: 4px 10px; background: var(--pink-mist); border-radius: 999px; flex: none; }
.cat-body { padding: 0 16px 16px 42px; font-size: 13px; line-height: 1.55; color: var(--ink-soft); }
.cat-body p { margin: 0 0 8px; }
.cat-empty { margin-top: 8px; padding: 8px 12px; background: rgba(255,255,255,.6); border-left: 3px solid var(--pink-soft); border-radius: 4px; font-style: italic; font-size: 12.5px; }
.cat-toggle { position: relative; flex: none; display: inline-block; }
.cat-toggle input[type="checkbox"] { position: absolute; opacity: 0; inset: 0; cursor: pointer; margin: 0; }
.toggle-track { display: inline-block; width: 42px; height: 24px; background: rgba(42,35,48,.15); border-radius: 999px; position: relative; transition: background .3s ease; }
.toggle-thumb { position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 2px 4px rgba(42,35,48,.25); transition: transform .3s cubic-bezier(.2,.7,.3,1.4); }
.cat-toggle input:checked + .toggle-track { background: var(--pink); }
.cat-toggle input:checked + .toggle-track .toggle-thumb { transform: translateX(18px); }
.cat-toggle.is-locked .toggle-track { background: var(--pink); opacity: .6; cursor: not-allowed; }
.cat-toggle.is-locked .toggle-thumb { transform: translateX(18px); }
.cookie-modal-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; padding-top: 18px; border-top: 1px solid var(--line); }
@media (max-width: 520px) { .cookie-modal-actions { justify-content: stretch; } .cookie-modal-actions .cb-btn { flex: 1 1 100%; } }
body.cookie-modal-open { overflow: hidden; }

/* ===================================================================
   PÁGINAS LEGALES
   =================================================================== */
.legal-page {
  background:
    radial-gradient(900px 500px at 88% -8%, var(--pink-mist) 0%, transparent 60%),
    radial-gradient(700px 500px at -10% 18%, var(--blue-soft) 0%, transparent 65%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.legal-header { padding: clamp(24px, 4vw, 40px) clamp(20px, 5vw, 56px) 0; display: flex; justify-content: center; }
.legal-logo-link { display: inline-block; transition: transform .35s cubic-bezier(.2,.7,.3,1.4); }
.legal-logo-link:hover { transform: translateY(-2px) scale(1.01); }
.legal-logo-link img { width: clamp(180px, 22vw, 280px); height: auto; filter: drop-shadow(0 8px 18px rgba(231,106,149,.18)); }
.legal-stage { flex: 1; display: flex; justify-content: center; padding: calc(var(--nav-h) + clamp(28px, 4vw, 56px)) clamp(20px, 5vw, 56px) clamp(40px, 6vw, 72px); }
.legal-content { width: 100%; max-width: 760px; background: rgba(255,255,255,.65); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--card-edge); border-radius: var(--radius); padding: clamp(28px, 5vw, 56px) clamp(24px, 5vw, 56px); box-shadow: var(--shadow-1); font-family: var(--f-body); color: var(--ink); line-height: 1.7; font-size: 15.5px; }
.legal-back { margin: 0 0 24px; font-size: 13px; letter-spacing: .04em; }
.legal-back a { color: var(--pink-deep); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 999px; background: var(--pink-mist); transition: background .3s ease, transform .3s cubic-bezier(.2,.7,.3,1.4); }
.legal-back a:hover { background: var(--pink-soft); transform: translateX(-2px); }
.legal-content h1 { font-family: var(--f-display); font-weight: 400; font-size: clamp(32px, 5vw, 52px); line-height: 1.05; letter-spacing: -0.01em; color: var(--pink); margin: 0 0 8px; }
.legal-scope { margin: 0 0 36px; padding-bottom: 18px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 14px; }
.legal-scope strong { color: var(--ink); font-weight: 600; }
.legal-content h2 { font-family: var(--f-display); font-weight: 400; font-size: clamp(20px, 2.4vw, 26px); color: var(--ink); margin: 36px 0 12px; letter-spacing: -0.005em; }
.legal-content p, .legal-content ul { margin: 0 0 14px; }
.legal-content ul { padding-left: 22px; }
.legal-content li { margin-bottom: 8px; }
.legal-content li::marker { color: var(--pink); }
.legal-content strong { font-weight: 600; color: var(--ink); }
.legal-content em { color: var(--pink-deep); font-style: italic; }
.legal-content a { color: var(--pink-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color .25s ease; }
.legal-content a:hover { color: var(--pink); }
.legal-update { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-soft); font-style: italic; }
.legal-foot { text-align: center; padding: clamp(20px,3vw,32px) clamp(20px,5vw,56px) clamp(28px,4vw,40px); border-top: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.legal-foot .foot-copy { margin: 0; font-size: 12px; letter-spacing: .08em; color: var(--ink-soft); opacity: .8; }
.legal-foot .foot-legal { margin-top: 0; }

/* ===================================================================
   ACCESIBILIDAD
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal, .reveal-up { opacity: 1; transform: none; }
  .flower-cursor { display: none; }
  body.has-flower-cursor * { cursor: auto !important; }
}
@media (prefers-contrast: more) {
  :root { --ink-soft: #3a323d; --line: rgba(42,35,48,.25); }
}
:focus-visible {
  outline: 2px solid var(--pink-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Responsive misc ---------- */
@media (max-width: 640px) {
  .hide-mobile { display: none; }
}
