:root {
  --bg: #FFFCF6;
  --bg-alt: #FFF9EF;
  --ink: #1A1A1A;
  --pink: #E91E8A;
  --pink-link: #D81B7C;
  --pink-link-hover: #B01463;
  --blue: #4FA8DB;
  --yellow: #F2D227;
  --green: #25D366;
  --green-hover: #1FB855;
  --border: #F0E4D8;
  --font-display: "Unbounded", sans-serif;
  --font-body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
}

a { color: var(--pink-link); text-decoration: none; }
a:hover { color: var(--pink-link-hover); }
img, svg { display: block; max-width: 100%; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

.page { position: relative; overflow: hidden; }

.section { padding: 80px 24px; max-width: 1240px; margin: 0 auto; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-dark { background: var(--ink); padding: 80px 24px; max-width: none; }
.section-alt { background: var(--bg-alt); max-width: none; padding: 80px 24px; }
.section-alt .contact-grid { max-width: 1240px; margin: 0 auto; }

.section-head { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.eyebrow {
  font-weight: 700;
  font-size: 13px;
  color: var(--pink-link);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.eyebrow-yellow { color: var(--yellow); }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.section-head p { color: #666; font-size: 16px; line-height: 1.6; }
.text-white { color: #fff; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #333; color: #fff; }
.btn-outline { background: #fff; color: var(--ink); border: 2px solid var(--ink); }
.btn-outline:hover { background: #F5F5F5; color: var(--ink); }
.btn-whatsapp { background: var(--green); color: #fff; padding: 11px 20px; box-shadow: 0 6px 16px rgba(37,211,102,0.35); }
.btn-whatsapp:hover { background: var(--green-hover); color: #fff; }
.hero-actions .btn-whatsapp { padding: 15px 28px; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,252,246,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
}
.brand-logo.footer-logo { width: 40px; height: 40px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.footer-brand-name { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.nav-links a { font-weight: 600; font-size: 14px; color: var(--ink); }
.nav-links a:hover { color: var(--pink-link); }

/* Hero */
.hero {
  position: relative;
  padding: 90px 24px 100px;
  max-width: 1240px;
  margin: 0 auto;
  overflow: hidden;
}
.hero-shape { position: absolute; z-index: 0; }
.hero-shape-blue {
  top: -40px; right: -20px;
  width: 220px; height: 220px;
  background: var(--blue);
  border-radius: 44% 56% 62% 38% / 48% 42% 58% 52%;
  opacity: 0.9;
  animation: zg-float 7s ease-in-out infinite;
}
.hero-shape-yellow {
  top: 180px; right: 220px;
  width: 70px; height: 70px;
  background: var(--yellow);
  border-radius: 50%;
  animation: zg-float2 5s ease-in-out infinite;
}
.hero-shape-pink {
  bottom: 20px; left: -30px;
  width: 180px; height: 180px;
  background: var(--pink);
  border-radius: 50% 50% 50% 4%;
  opacity: 0.85;
  animation: zg-float2 8s ease-in-out infinite;
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF3D6;
  color: #8A6B00;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: zg-fadeUp 0.7s ease-out both;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  margin: 0 0 20px;
  animation: zg-fadeUp 0.7s ease-out 0.1s both;
}
.accent { color: var(--pink); }
.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: #4A4A4A;
  margin: 0 0 32px;
  max-width: 540px;
  animation: zg-fadeUp 0.7s ease-out 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: zg-fadeUp 0.7s ease-out 0.3s both;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  animation: zg-fadeUp 0.7s ease-out 0.4s both;
  position: relative;
  z-index: 1;
}
.stat-number { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--ink); }
.stat-label { font-size: 13px; color: #777; font-weight: 600; }

@keyframes zg-float { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(0,-18px) rotate(6deg); } }
@keyframes zg-float2 { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(14px,10px) rotate(-8deg); } }
@keyframes zg-fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes zg-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0,0,0,0.08); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 17px; margin: 0 0 8px; }
.service-card p { font-size: 14px; color: #777; line-height: 1.55; }

/* Catalogo */
.chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.chip {
  border: 2px solid #E5D9C8;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font-body);
}
.chip.active { border-color: var(--ink); background: var(--ink); color: #fff; }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
}
.gallery-item.hidden { display: none; }
.gallery-thumb {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
  background: var(--bg-alt);
}
.gallery-info { padding: 14px 16px; }
.gallery-cat { font-size: 11px; font-weight: 700; color: var(--pink-link); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.gallery-label { font-size: 14px; font-weight: 600; color: var(--ink); }

/* Como pedir */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step-card { background: #242424; border-radius: 18px; padding: 28px 22px; }
.step-num { font-family: var(--font-display); font-weight: 800; font-size: 36px; margin-bottom: 14px; }
.step-card h3 { font-size: 16px; color: #fff; margin: 0 0 8px; }
.step-card p { font-size: 14px; color: #AAA; line-height: 1.55; }

/* Testimonios */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--bg-alt); border-radius: 20px; padding: 28px 24px; border: 1px solid var(--border); }
.stars { font-size: 22px; color: var(--yellow); margin-bottom: 14px; }
.testimonial-card p { font-size: 15px; color: #3A3A3A; line-height: 1.6; margin-bottom: 20px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-family: var(--font-display);
}
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.testimonial-role { font-size: 12px; color: #888; }

/* Nosotros */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 56px;
  align-items: center;
}
.about-text { font-size: 16px; color: #555; line-height: 1.7; margin-bottom: 16px; }
.checks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 12px; }
.check-title { font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.check-desc { font-size: 13px; color: #888; }
.about-photo {
  border-radius: 24px;
  aspect-ratio: 4/5;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: #999; font-size: 14px; text-align: center; padding: 16px;
}

/* Contacto */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 48px;
}
.contact-rows { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.contact-row { display: flex; gap: 12px; align-items: flex-start; }
.contact-row span { font-size: 18px; }
.contact-label { font-weight: 700; font-size: 14px; color: var(--ink); }
.contact-value { font-size: 14px; color: #666; }
.map-photo {
  border-radius: 20px;
  min-height: 280px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: #999; font-size: 14px;
}

/* Footer */
.footer { background: var(--ink); padding: 48px 24px 28px; }
.footer-top {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid #333;
}
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a { color: #CCC; font-size: 14px; font-weight: 600; }
.footer-links a:hover { color: #fff; }
.footer-copy { max-width: 1240px; margin: 0 auto; padding-top: 20px; font-size: 13px; color: #777; }

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(37,211,102,0.5);
  z-index: 60;
  font-size: 28px;
  animation: zg-pulse 2.5s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 860px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 16/9; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 20px 70px; }
  .section { padding: 56px 20px; }
  .section-dark, .section-alt { padding: 56px 20px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .checks-grid { grid-template-columns: 1fr; }
}
