/* ==========================================================
   amorize.studio · Estilos
   Paleta: rosa magenta #EC4899 · navy #1E2749 · lavanda #B8A4E3
   Inspirada en el logo oficial "Sublimación con Amor"
   ========================================================== */

:root {
  --pink: #EC4899;
  --pink-dark: #C4166B;
  --pink-mid: #F27FA5;
  --pink-light: #FCE4EC;
  --pink-soft: #FDF2F8;
  --pink-cream: #FAF3F6;
  --navy: #1E2749;
  --navy-2: #2D3868;
  --navy-3: #4B5478;
  --lavender: #B8A4E3;
  --lavender-light: #E2D8F5;
  --cream: #FAF7F5;
  --white: #FFFFFF;
  --line: #F5D8E4;
  --line-soft: #FBEEF3;
  --text: #1E2749;
  --text-2: #4B5478;
  --text-3: #8992B3;
  --shadow-soft: 0 6px 24px rgba(236, 72, 153, 0.08);
  --shadow-med: 0 12px 40px rgba(30, 39, 73, 0.10);
  --shadow-pink: 0 8px 24px rgba(236, 72, 153, 0.25);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --f-serif: 'Cormorant Garamond', 'Georgia', serif;
  --f-script: 'Dancing Script', 'Cormorant Garamond', cursive;
  --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --gap-section: clamp(80px, 12vw, 140px);
}

/* ========== Reset ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ========== Tipografía ========== */
h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); font-weight: 600; }
h4 { font-size: 1rem; font-family: var(--f-sans); font-weight: 500; letter-spacing: 0.02em; text-transform: uppercase; color: var(--navy); }
em { font-style: italic; color: var(--pink); font-weight: 500; font-family: var(--f-script); font-size: 1.15em; }
p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--pink-light);
}
.eyebrow-light { color: var(--white); border-bottom-color: rgba(255,255,255,0.35); }

/* ========== Layout ========== */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
section {
  padding: var(--gap-section) 0;
}
.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 560px;
  margin: 12px auto 0;
}

/* ========== Botones ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  padding-left: 8px;
  padding-right: 8px;
}
.btn-ghost:hover { color: var(--pink); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--pink-dark);
  font-size: 15px;
  padding: 18px 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
}

/* ========== Nav ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.nav.scrolled { border-bottom-color: var(--line-soft); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}
.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.brand-name-nav {
  font-family: var(--f-serif);
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.01em;
}
.brand-name-nav .pink { color: var(--pink); }
.brand-tag-nav {
  font-family: var(--f-sans);
  font-size: 8px;
  letter-spacing: 0.22em;
  color: var(--text-3);
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  font-size: 14px;
  color: var(--text-2);
}
.nav-links a { transition: color 0.2s ease; position: relative; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1.5px;
  background: var(--pink);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--pink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  padding: 10px 22px;
  background: var(--pink);
  color: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25);
}
.nav-cta:hover { background: var(--pink-dark); transform: translateY(-1px); }
.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-menu-btn span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

/* ========== Hero ========== */
.hero {
  padding-top: 40px;
  padding-bottom: var(--gap-section);
  overflow: hidden;
  background: linear-gradient(180deg, var(--pink-soft) 0%, var(--white) 90%);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(184, 164, 227, 0.15) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy .eyebrow { margin-bottom: 24px; }
.hero h1 { margin-bottom: 24px; }
.hero .lead {
  font-size: 1.2rem;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-trust > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-trust strong {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 600;
  font-style: italic;
}
.hero-trust span {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-visual {
  position: relative;
}
.hero-photo {
  aspect-ratio: 1/1;
  background: var(--white);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(236, 72, 153, 0.20), 0 12px 40px rgba(30, 39, 73, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 8px solid var(--white);
}
.hero-photo img { width: 100%; height: 100%; object-fit: contain; }
.hero-badge {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: var(--pink);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-pink);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}
.badge-star {
  font-size: 18px;
  color: var(--white);
}
.hero-badge strong {
  display: block;
  color: var(--white);
  font-weight: 600;
}
.hero-badge span {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
}

/* ========== Sobre ========== */
.sobre {
  background: var(--white);
}
.sobre .section-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.sobre h2 { margin-top: 8px; }
.sobre-body p {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.75;
}
.valores {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}
.valor {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.valor span {
  font-family: var(--f-serif);
  font-size: 1.7rem;
  color: var(--pink);
  font-weight: 600;
  font-style: italic;
  min-width: 40px;
}
.valor p {
  margin: 0;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}

/* ========== Kits ========== */
.kits {
  background: var(--pink-soft);
  position: relative;
}
.kits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.kit-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.kit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-med);
}
.kit-featured {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--pink-light);
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(30, 39, 73, 0.25);
}
.kit-featured h3, .kit-featured .kit-price, .kit-featured .kit-price strong { color: var(--white); }
.kit-featured .kit-items li { color: var(--pink-light); border-bottom-color: rgba(252,228,236,0.15); }
.kit-featured .kit-minimum { color: var(--pink-mid); }
.kit-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--pink);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.35);
}
.kit-visual {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kit-esencial {
  background: linear-gradient(135deg, #FDF2F8 0%, #FCE4EC 100%);
}
.kit-premium {
  background: linear-gradient(135deg, #EC4899 0%, #C4166B 100%);
}
.kit-ejecutivo {
  background: linear-gradient(135deg, #B8A4E3 0%, #8B7BC7 100%);
}
.kit-visual::after {
  content: '';
  position: absolute;
  inset: 25%;
  border: 2px dashed rgba(255,255,255,0.5);
  border-radius: var(--radius);
}
.kit-esencial::after { border-color: rgba(236, 72, 153, 0.3); }
.kit-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.kit-body h3 { margin-bottom: 8px; color: var(--navy); }
.kit-price {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 24px;
}
.kit-price strong {
  font-family: var(--f-serif);
  font-size: 1.7rem;
  color: var(--pink);
  font-weight: 600;
  font-style: italic;
  display: block;
  margin-top: 2px;
}
.kit-items {
  margin: 0 0 24px;
  flex: 1;
}
.kit-items li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--text-2);
}
.kit-items li:last-child { border-bottom: 0; }
.kit-minimum {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.kits-note {
  text-align: center;
  margin-top: 48px;
  font-size: 15px;
  color: var(--text-2);
}
.kits-note a {
  color: var(--pink);
  font-weight: 500;
  border-bottom: 1.5px solid var(--pink-light);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}
.kits-note a:hover { border-bottom-color: var(--pink); }

/* ========== Productos individuales ========== */
.productos {
  background: var(--white);
}
.productos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.producto-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.producto-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-med);
  border-color: var(--pink-light);
}
.producto-img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.producto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.producto-card:hover .producto-img img { transform: scale(1.05); }
.producto-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  text-align: center;
}
.producto-placeholder span {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  font-style: italic;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.2;
}
.producto-placeholder small {
  font-family: var(--f-sans);
  font-size: 10px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.producto-mug { background: linear-gradient(135deg, #FCE4EC 0%, #EC4899 100%); }
.producto-lamina { background: linear-gradient(135deg, #B8A4E3 0%, #6B5EA3 100%); }
.producto-termo { background: linear-gradient(135deg, #1E2749 0%, #4B5478 100%); }
.producto-llavero { background: linear-gradient(135deg, #F27FA5 0%, #C4166B 100%); }
.producto-cojin { background: linear-gradient(135deg, #E2D8F5 0%, #B8A4E3 100%); }
.producto-camiseta { background: linear-gradient(135deg, #EC4899 0%, #F27FA5 100%); }
.producto-medias { background: linear-gradient(135deg, #C4166B 0%, #1E2749 100%); }
.producto-letrero { background: linear-gradient(135deg, #FDF2F8 0%, #F27FA5 100%); }
.producto-mousepad { background: linear-gradient(135deg, #4B5478 0%, #EC4899 100%); }
.producto-soporte { background: linear-gradient(135deg, #B8A4E3 0%, #EC4899 100%); }
.producto-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.producto-body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.producto-body p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}
.producto-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.producto-precio {
  font-family: var(--f-serif);
  font-size: 1.05rem;
  color: var(--pink);
  font-weight: 600;
  font-style: italic;
}
.producto-cta {
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
  transition: color 0.2s ease;
}
.producto-cta:hover { color: var(--pink); }
.productos-note {
  text-align: center;
  margin-top: 48px;
  font-size: 15px;
  color: var(--text-2);
}
.productos-note a {
  color: var(--pink);
  font-weight: 500;
  border-bottom: 1.5px solid var(--pink-light);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}
.productos-note a:hover { border-bottom-color: var(--pink); }

/* ========== Proceso ========== */
.proceso {
  background: var(--pink-soft);
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  padding: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 6%;
  right: 6%;
  height: 1px;
  border-top: 1.5px dashed var(--pink-mid);
  z-index: 0;
  opacity: 0.5;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--f-serif);
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 24px;
  box-shadow: 0 0 0 8px var(--white), 0 4px 16px rgba(236, 72, 153, 0.3);
}
.step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.step p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  padding: 0 4px;
}

/* ========== Galería ========== */
.galeria {
  background: linear-gradient(180deg, var(--pink-soft) 0%, var(--white) 100%);
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.gal-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin: 0;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-soft);
}
.gal-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-med);
}
.gal-item figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(30, 39, 73, 0.9);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}
.gal-item:hover figcaption { opacity: 1; transform: translateY(0); }
.gal-1 { background: linear-gradient(135deg, #FCE4EC, #EC4899); }
.gal-2 { background: linear-gradient(135deg, #1E2749, #2D3868); }
.gal-3 { background: linear-gradient(135deg, #B8A4E3, #8B7BC7); }
.gal-4 { background: linear-gradient(135deg, #EC4899, #C4166B); }
.gal-5 { background: linear-gradient(135deg, #FDF2F8, #F27FA5); }
.gal-6 { background: linear-gradient(135deg, #E2D8F5, #B8A4E3); }

/* ========== Testimonios ========== */
.testimonios {
  background: var(--pink-cream);
}
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.testimonio {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}
.testimonio:hover { transform: translateY(-4px); }
.testimonio::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 24px;
  font-family: var(--f-serif);
  font-size: 5rem;
  color: var(--pink);
  line-height: 1;
  opacity: 0.3;
}
.testimonio p {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--navy);
  font-style: italic;
  margin: 20px 0 0;
  position: relative;
}
.testimonio footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.testimonio cite {
  font-style: normal;
  font-weight: 600;
  color: var(--pink);
  font-size: 15px;
}
.testimonio footer span {
  font-size: 13px;
  color: var(--text-3);
}

/* ========== FAQ ========== */
.faq {
  background: var(--white);
}
.faq-list {
  max-width: 760px;
  margin: 40px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item summary {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--f-sans);
  font-size: 1.6rem;
  color: var(--pink);
  font-weight: 300;
  transition: transform 0.3s ease;
  margin-left: 20px;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--pink); }
.faq-body {
  padding: 12px 0 4px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
  max-width: 620px;
}
.faq-body p { margin: 0; }

/* ========== CTA final ========== */
.cta-final {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
  padding: clamp(80px, 12vw, 130px) 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 65%);
  border-radius: 50%;
}
.cta-final::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(184, 164, 227, 0.25) 0%, transparent 65%);
  border-radius: 50%;
}
.cta-inner {
  text-align: center;
  max-width: 780px;
  position: relative;
  z-index: 1;
}
.cta-final h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.cta-final h2 em {
  color: var(--pink-light);
  font-style: italic;
}
.cta-final p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 40px;
}

/* ========== Footer ========== */
.footer {
  background: var(--navy);
  color: var(--lavender-light);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.foot-brand p {
  color: var(--lavender-light);
  font-size: 14px;
  margin-top: 20px;
  max-width: 300px;
  line-height: 1.6;
  opacity: 0.8;
}
.brand-foot .brand-logo { filter: brightness(1.1); }
.brand-foot .brand-name-nav { color: var(--white); }
.brand-foot .brand-name-nav .pink { color: var(--pink-mid); }
.brand-foot .brand-tag-nav { color: var(--pink-mid); }
.foot-col h4 {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--f-sans);
  font-weight: 500;
}
.foot-col ul { display: flex; flex-direction: column; gap: 12px; }
.foot-col a, .foot-col li {
  font-size: 14px;
  color: var(--lavender-light);
  transition: color 0.2s ease;
  line-height: 1.5;
  opacity: 0.85;
}
.foot-col a:hover { color: var(--pink-mid); opacity: 1; }
.foot-bottom {
  border-top: 1px solid rgba(184, 164, 227, 0.15);
  padding: 24px 32px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-3);
}
.foot-bottom p { margin: 0; }

/* ========== WhatsApp float ========== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ========== Responsive ========== */
@media (max-width: 1100px) {
  .productos-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-menu-btn { display: flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    border-bottom: 1px solid var(--line-soft);
    box-shadow: var(--shadow-med);
  }
  .nav.open .nav-cta { display: inline-flex; margin: 16px 32px 24px; text-align: center; justify-content: center; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-visual { order: -1; max-width: 400px; margin: 0 auto; }
  .hero-trust { gap: 24px; flex-wrap: wrap; }
  .sobre .section-inner { grid-template-columns: 1fr; gap: 40px; }
  .kits-grid { grid-template-columns: 1fr; }
  .kit-featured { transform: none; }
  .productos-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps::before { display: none; }
  .step-num { box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3); }
  .galeria-grid { grid-template-columns: 1fr 1fr; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .brand-tag-nav { display: none; }
}

@media (max-width: 560px) {
  .section-inner { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; }
  .brand-logo { height: 42px; }
  .brand-name-nav { font-size: 1.1rem; }
  .hero { padding-top: 30px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-trust { justify-content: space-between; gap: 12px; }
  .hero-trust strong { font-size: 1.15rem; }
  .hero-trust span { font-size: 10px; }
  .steps { grid-template-columns: 1fr; }
  .productos-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .kit-body { padding: 28px 24px; }
  .testimonio { padding: 28px 24px; }
  .wa-float { width: 52px; height: 52px; }
}
