/* ============================================================
   Packing Up — v2
   Propuesta visual "Studio Craft": tema oscuro editorial, tipografia
   geometrica (Space Grotesk + Inter), tarjetas flotantes con glow de
   marca, animaciones suaves. Misma logica/backend que v1, distinta
   capa visual por completo.
   ============================================================ */

@font-face {
  font-family: 'Arsenica';
  src: url('../fonts/ArsenicaTrial-Medium.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Raleway';
  src: url('../fonts/Raleway-Regular.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Raleway SemiBold';
  src: url('../fonts/Raleway-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Marca (mismos valores que v1, usados distinto) */
  --yellow: #ffef5b;
  --pink: #d74997;
  --purple: #cba3ff;
  --mint: #d6e7dd;
  --blue: #c4e6ff;
  --dark: #15141b;

  /* Superficies oscuras */
  --bg: #121118;
  --bg-soft: #17161f;
  --surface: #1d1c26;
  --surface-2: #262432;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Texto */
  --text: #f6f4ef;
  --text-muted: #a8a5b8;
  --text-faint: #706d80;

  /* Tipografia */
  --font-display: 'Arsenica', 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;

  /* Forma */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 0 1px rgba(255, 239, 91, 0.25), 0 12px 40px rgba(255, 239, 91, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Modo claro ---------- */
:root[data-theme="light"] {
  --bg: #faf9f5;
  --bg-soft: #f2f0e9;
  --surface: #ffffff;
  --surface-2: #f3f1ea;
  --border: rgba(21, 20, 27, 0.09);
  --border-strong: rgba(21, 20, 27, 0.16);

  --text: #17161f;
  --text-muted: #5c5968;
  --text-faint: #8b8896;

  --shadow-card: 0 10px 30px rgba(21, 20, 27, 0.08);
  --shadow-glow: 0 0 0 1px rgba(21, 20, 27, 0.08), 0 12px 32px rgba(255, 200, 0, 0.18);
}

:root[data-theme="light"] .site-header.is-scrolled { background: rgba(250, 249, 245, 0.82); }
:root[data-theme="light"] .btn-outline { border-color: var(--border-strong); }
:root[data-theme="light"] .video-frame { background: #0e0d12; }
:root[data-theme="light"] .wa-float-ping { border-color: #25d366; }

html { transition: background 0.25s ease; }
body { transition: background 0.25s ease, color 0.25s ease; }

/* ---------- Toggle de tema ---------- */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.theme-toggle:hover { border-color: var(--yellow); transform: scale(1.05); }
.theme-toggle svg { width: 18px; height: 18px; }

.theme-toggle-moon { display: none; }
:root[data-theme="light"] .theme-toggle-sun { display: none; }
:root[data-theme="light"] .theme-toggle-moon { display: block; }

.theme-toggle-mobile {
  width: 100%;
  border-radius: var(--r-sm);
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 14px;
  margin-top: 4px;
  background: none;
}
.theme-toggle-label { font-size: 15px; color: var(--text); }

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, .brand-word {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--yellow);
  color: var(--dark);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 10000;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 18px 0;
  transition: padding 0.25s var(--ease), background 0.25s var(--ease);
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(18, 17, 24, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 12px 10px 20px;
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo {
  height: 80px;
  width: auto;
  display: block;
}

:root[data-theme="dark"] .brand-logo { filter: brightness(0) invert(1); }

.main-nav {
  display: flex;
  gap: 4px;
  font-size: 14px;
  font-family: 'Raleway SemiBold', var(--font-body);
}

.main-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--text-muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.main-nav a.is-active { color: var(--dark); background: var(--yellow); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-cta { display: none; font-family: 'Raleway SemiBold', var(--font-body); }
@media (min-width: 860px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle svg { width: 18px; height: 18px; }
.nav-toggle-close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-close { display: block; }

@media (min-width: 860px) { .nav-toggle { display: none; } }
@media (max-width: 859px) { .main-nav { display: none; } }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  margin: 0 24px;
  border-radius: var(--r-md);
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}

.mobile-nav.open {
  max-height: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 14px;
  margin-top: 10px;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 15px;
  font-family: 'Raleway SemiBold', var(--font-body);
}

.mobile-nav a:hover { background: rgba(255, 255, 255, 0.06); }
.mobile-nav .btn { margin-top: 8px; text-align: center; justify-content: center; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  background: var(--surface-2);
  color: var(--text);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s ease;
}

.btn svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--yellow); color: var(--dark); }
.btn-primary:hover { box-shadow: var(--shadow-glow); }

.btn-outline { background: transparent; border: 1px solid var(--border-strong); color: var(--text); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.06); }

.btn-pill { border-radius: 999px; }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

.btn-spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-top-color: var(--dark);
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Reveal / animaciones de entrada ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}
.contact-eyebrow::before { content: ''; width: 18px; height: 2px; background: var(--pink); border-radius: 2px; }

.section-heading { text-align: center; max-width: 640px; margin: 0 auto 30px; }
.section-heading h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.section-heading p { color: var(--text-muted); font-size: 15px; }

section { padding: 112px 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: 40px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 239, 91, 0.18), transparent 70%);
  top: -160px;
  right: -120px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.hero-copy h1 {
  font-size: clamp(34px, 5vw, 58px);
  margin-bottom: 20px;
}

.hero-copy h1 em { color: var(--yellow); font-style: normal; }

.hero-copy p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--font-body); font-size: 24px; color: var(--yellow); }
.hero-stat span { font-size: 12px; color: var(--text-muted); }

.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.hero-slider { position: relative; height: 100%; }
.hero-slides { position: relative; height: 100%; overflow: hidden; }

.hero-slides:empty::after {
  content: 'Muy pronto, nuevas fotos aquí';
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-faint);
  font-size: 13px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 239, 91, 0.12), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(215, 73, 151, 0.15), transparent 55%);
}

.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }

.hero-slider .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(18, 17, 24, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 50%;
}
.hero-slider #prevSlide { left: 14px; }
.hero-slider #nextSlide { right: 14px; }

/* ---------- Chips de categoria (home) ---------- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 13px;
  color: var(--text-muted);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.chip:hover { border-color: var(--yellow); color: var(--text); transform: translateY(-2px); }

/* ---------- Bento de categorias ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
margin-bottom: 40px;
}

.bento-card {
  position: relative;
  grid-column: span 1;
  grid-row: span 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.bento-card:nth-child(5n+1) { grid-column: span 2; grid-row: span 2; }

.bento-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }

.bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.bento-card:hover img { transform: scale(1.06); }

.bento-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  color: var(--text-faint);
  font-family: var(--font-display);
  text-align: center;
  padding: 12px;
}

.bento-card-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
}

.section-cta { text-align: center; margin-top: 40px; }

/* ---------- Features ---------- */
.feature-strip { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; margin-top: 48px; margin-bottom: 48px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
}

.feature-card {
  text-align: center;
  padding: 8px 16px;
  border-radius: var(--r-md);
  transition: background 0.25s ease, transform 0.25s ease;
}
.feature-card:hover { background: var(--surface); transform: translateY(-3px); }

.feature-card img {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.feature-card strong { display: block; font-family: var(--font-display); font-size: 14px; margin-bottom: 4px; }
.feature-card span { font-size: 12px; color: var(--text-muted); }

/* ---------- Video ---------- */
.video-section { text-align: center; }

.video-frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--yellow);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s var(--ease);
}
.play-btn:hover { transform: scale(1.08); }
.play-btn svg { width: 24px; height: 24px; fill: var(--dark); margin-left: 3px; }

.slider-arrow {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.slider-arrow:hover { border-color: var(--yellow); transform: scale(1.06); }
.slider-arrow img { width: 30px; height: 30px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  margin: 48px 24px 0;
  padding: 64px 32px;
  text-align: center;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
}

.cta-band::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 239, 91, 0.16), transparent 70%);
  top: -120px;
  left: -80px;
}

.cta-band h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 20px; position: relative; }
.cta-band p { color: var(--text-muted); margin-bottom: 20px; position: relative; }
.cta-band .btn { position: relative; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding-top: 70px;
  margin-top: 30px;
}

.footer-glow {
  position: absolute;
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(215, 73, 151, 0.12), transparent 70%);
  bottom: 0;
  right: -100px;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p { color: var(--text-muted); font-size: 13px; margin: 14px 0 18px; max-width: 280px; }

.brand-footer .brand-logo { height: 90px; }

.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; color: var(--text-muted); font-size: 14px; margin-bottom: 10px; }
.footer-col a:hover { color: var(--yellow); }

.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.social-icons a:hover { border-color: var(--yellow); transform: translateY(-2px); }
.social-icons svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  font-size: 12px;
  color: var(--text-faint);
}

/* ---------- WhatsApp flotante ---------- */
.wa-float-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 500;
  transition: transform 0.2s var(--ease);
}
.wa-float-btn:hover { transform: scale(1.08); }
.wa-float-btn img { width: 44px; height: 44px; object-fit: contain; }

.wa-float-ping {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: ping 2.4s ease-out infinite;
}
@keyframes ping {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ---------- Modales genericos (WA, confirmaciones) ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 7, 12, 0.7);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal-panel {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: 32px;
  max-width: 440px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s var(--ease);
}
.modal-overlay.open .modal-panel { transform: translateY(0) scale(1); }

.modal-panel h3 { font-size: 20px; margin-bottom: 6px; }
.modal-panel > p { color: var(--text-muted); font-size: 13px; margin-bottom: 18px; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close svg { width: 14px; height: 14px; }

.modal-form { display: flex; flex-direction: column; gap: 14px; margin-top: 6px; }
.form-row { display: flex; gap: 12px; }

.form-alert { padding: 11px 14px; border-radius: var(--r-sm); font-size: 13px; margin-bottom: 14px; }
.form-alert-error { background: rgba(215, 73, 151, 0.14); color: #ffb4d8; }
.form-alert-success { background: rgba(214, 231, 221, 0.14); color: #b3e6cb; }

/* ---------- Toasts ---------- */
.toast-stack {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10001;
  align-items: center;
}

.toast {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: var(--shadow-card);
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast-success { border-color: rgba(214, 231, 221, 0.4); }
.toast-error { border-color: rgba(215, 73, 151, 0.4); }

/* ---------- Formularios (campos flotantes, reutilizado en varias pantallas) ---------- */
.field-float { position: relative; flex: 1; }

.field-float input,
.field-float select,
.field-float textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  padding: 16px 14px 8px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-float select { padding: 14px; }

.field-float input:focus,
.field-float select:focus,
.field-float textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 239, 91, 0.14);
}

.field-float label {
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 14px;
  color: var(--text-faint);
  pointer-events: none;
  transition: top 0.18s ease, font-size 0.18s ease, color 0.18s ease;
  background: var(--surface);
  padding: 0 4px;
}

.field-float input:focus + label,
.field-float input:not(:placeholder-shown) + label,
.field-float textarea:focus + label,
.field-float textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 11px;
  color: var(--yellow);
}

.field-float textarea { min-height: 100px; resize: vertical; padding-top: 20px; }
.field-float textarea + label { top: 16px; }

/* ============================================================
   Contacto
   ============================================================ */
.contact-section { position: relative; margin-top: 48px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 { font-size: 28px; margin-bottom: 14px; }
.contact-info p { color: var(--text-muted); font-size: 14px; margin-bottom: 22px; }

.contact-quick-list { display: flex; flex-direction: column; gap: 14px; }
.contact-quick-item { display: flex; gap: 12px; align-items: flex-start; }
.contact-quick-item svg { width: 20px; height: 20px; color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.contact-quick-item strong { display: block; font-size: 14px; }
.contact-quick-item span { font-size: 13px; color: var(--text-muted); }

.contact-form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
}

.contact-form-panel form { display: flex; flex-direction: column; gap: 16px; }

/* ============================================================
   Paginas internas: hero, valores, proceso, industrias
   ============================================================ */
.page-hero {
  position: relative;
  padding: 96px 0 64px;
  text-align: center;
  overflow: hidden;
  margin-bottom: 50px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 239, 91, 0.14), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(215, 73, 151, 0.14), transparent 50%);
  pointer-events: none;
}

.page-hero h1 { font-size: clamp(28px, 4vw, 44px); max-width: 760px; margin: 10px auto 16px; position: relative; }
.page-hero p { max-width: 600px; margin: 0 auto; color: var(--text-muted); font-size: 15px; position: relative; }

.page-hero-pink::before {
  background:
    radial-gradient(circle at 25% 30%, rgba(215, 73, 151, 0.22), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(255, 239, 91, 0.16), transparent 55%);
}

.page-hero-mint::before {
  background:
    radial-gradient(circle at 25% 30%, rgba(214, 231, 221, 0.16), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(196, 230, 255, 0.16), transparent 55%);
}

.cta-band-pink { background: linear-gradient(135deg, rgba(215, 73, 151, 0.18), var(--surface)); }
.page-hero .contact-eyebrow { justify-content: center; position: relative; }

.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 60px;}
.split-section h2 { font-size: 28px; margin-bottom: 14px; }
.split-section p { color: var(--text-muted); font-size: 14px; margin-bottom: 12px; }

.blob-shape {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 46% 54% 62% 38% / 48% 42% 58% 52%;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  animation: morph 9s ease-in-out infinite;
  box-shadow: var(--shadow-card);
}
@keyframes morph {
  0%, 100% { border-radius: 46% 54% 62% 38% / 48% 42% 58% 52%; transform: rotate(0deg); }
  50% { border-radius: 62% 38% 40% 60% / 55% 62% 38% 45%; transform: rotate(6deg); }
}

.value-grid, .process-grid, .industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 50px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }

.value-card, .industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  transition: transform 0.25s var(--ease), border-color 0.25s ease;
}
.value-card:hover, .industry-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }

.value-card svg, .industry-card svg { width: 30px; height: 30px; color: var(--yellow); margin-bottom: 14px; }
.value-card h3, .industry-card h3 { font-size: 16px; margin-bottom: 8px; }
.value-card p, .industry-card p { font-size: 13px; color: var(--text-muted); }

.industry-card { grid-column: span 1; display: block; }
.industry-grid { grid-template-columns: repeat(3, 1fr); }
.industry-card-link { display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 700; color: var(--pink); transition: transform 0.2s ease; }
.industry-card:hover .industry-card-link { transform: translateX(4px); }

.process-grid { grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.process-step { position: relative; padding-top: 8px; }
.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--yellow);
  margin-bottom: 14px;
}
.process-step h3 { font-size: 15px; margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   Catalogo de productos
   ============================================================ */
.catalog-header { text-align: center; margin-bottom: 48px; }
.catalog-header h1 { font-size: clamp(26px, 3.5vw, 36px); }
.catalog-header p { color: var(--text-muted); font-size: 15px; max-width: 560px; margin: 10px auto 0; }

.filter-bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }

.filter-pill {
  font-family: 'Raleway SemiBold', var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 18px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.filter-pill:hover { color: var(--text); border-color: var(--border-strong); }
.filter-pill.is-active { background: var(--yellow); border-color: var(--yellow); color: var(--dark); }

.filter-pills-sub { margin-bottom: 28px; }
.filter-pill-sm { padding: 7px 14px; font-size: 12px; border-radius: 999px; }

.catalog-search { flex: 0 0 auto; min-width: 220px; }

.search-input {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.03);
  padding: 0 12px;
}
.search-input svg { width: 16px; height: 16px; color: var(--text-faint); flex-shrink: 0; }
.search-input input { border: none; background: none; padding: 10px 0; flex: 1; color: var(--text); font-family: 'Raleway SemiBold', var(--font-body); }
.search-input input:focus { outline: none; }

.clear-filters { font-size: 12px; color: var(--pink); text-decoration: underline; align-self: center; margin-bottom: 36px; display: inline-block; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }

.product-card-media { aspect-ratio: 1/1; overflow: hidden; }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.product-card:hover img { transform: scale(1.07); }

.product-card-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  color: var(--text-faint);
  font-family: var(--font-display);
  text-align: center;
  padding: 12px;
}

.product-card-body { padding: 16px 18px 18px; }
.product-card-label { display: block; font-family: var(--font-display); font-size: 14px; font-weight: 600; }
.product-card-label em { display: block; font-family: var(--font-body); font-style: normal; font-weight: 400; font-size: 12px; color: var(--yellow); margin-top: 4px; }

.catalog-empty {
  text-align: center;
  padding: 70px 20px;
  color: var(--text-muted);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-lg);
}

/* ============================================================
   Detalle de producto
   ============================================================ */
.product-detail { padding-top: 64px; }

.breadcrumb { font-size: 12px; color: var(--text-faint); margin-bottom: 24px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--yellow); }

.product-detail-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 48px; }

.gallery-main { aspect-ratio: 1/1; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
.gallery-thumb {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.gallery-thumb.is-active, .gallery-thumb:hover { border-color: var(--yellow); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info h1 { font-size: 28px; margin-bottom: 10px; }
.product-price { font-family: var(--font-body); font-size: 20px; color: var(--yellow); margin-bottom: 14px; }
.product-short { color: var(--text-muted); font-size: 14px; margin-bottom: 22px; }

.product-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin: 28px 0 20px; flex-wrap: wrap; }
.product-tab {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 4px;
  margin-right: 20px;
  cursor: pointer;
  position: relative;
}
.product-tab::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.product-tab.is-active { color: var(--text); }
.product-tab.is-active::after { transform: scaleX(1); }

.product-tab-panel { display: none; font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.product-tab-panel.is-active { display: block; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .bento-card:nth-child(5n+1) { grid-column: span 2; grid-row: span 1; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid, .split-section, .product-detail-grid { grid-template-columns: 1fr; }
  .value-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .nav-shell { border-radius: var(--r-lg); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { gap: 20px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .value-grid, .process-grid, .industry-grid, .product-grid, .grid-3 { grid-template-columns: 1fr; }
  .cta-band { margin: 32px 16px 0; padding: 44px 22px; }
  .filter-bar-row { flex-direction: column; align-items: stretch; }
  .catalog-search { min-width: 0; }
  .contact-form-panel { padding: 22px; }
  .modal-panel { padding: 24px; }
  .wa-float-btn { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .wa-float-btn img { width: 36px; height: 36px; }
  .form-row { flex-direction: column; }
}
