:root {
  --pink: #ff3f8f;
  --pink-dark: #e92679;
  --pink-soft: #fff0f7;
  --purple: #7439d0;
  --purple-soft: #f3ebff;
  --teal: #10b9ad;
  --teal-soft: #e6fbf8;
  --orange: #ff7a35;
  --yellow: #ffc62b;
  --blue: #36b9ee;
  --green: #1fc65b;
  --green-dark: #11a949;
  --ink: #2d2340;
  --muted: #6f6780;
  --line: #eee8f3;
  --white: #ffffff;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 15px;
  --shadow: 0 18px 55px rgba(68, 35, 98, 0.12);
  --shadow-soft: 0 12px 30px rgba(68, 35, 98, 0.08);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
}
.skip-link:focus { top: 16px; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 88px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(116,57,208,0.08);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand {
  position: relative;
  width: 112px;
  display: inline-flex;
  flex-direction: column;
  line-height: .78;
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  transform: rotate(-2deg);
}
.brand-line { letter-spacing: -1.5px; }
.brand-top { font-size: 25px; color: var(--pink); }
.brand-bottom { font-size: 31px; color: var(--purple); }
.brand-bottom::first-letter { color: var(--yellow); }
.brand-spark { position: absolute; right: 0; top: -9px; color: var(--teal); font-size: 17px; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.main-nav a { font-weight: 800; font-size: 14px; color: #4f4663; transition: color .2s ease; }
.main-nav a:hover, .main-nav a:focus { color: var(--pink); }
.menu-toggle { display: none; margin-left: auto; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 3px; margin: 5px 0; border-radius: 999px; background: var(--pink); }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 900;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); box-shadow: 0 11px 24px rgba(53, 26, 90, .16); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--pink), #ff6caf); }
.btn-secondary { color: var(--purple); background: #fff; box-shadow: inset 0 0 0 2px #dfd0f5; }
.btn-whatsapp { color: #fff; background: linear-gradient(135deg, var(--green), #13b64d); }
.btn-purple { color: #fff; background: linear-gradient(135deg, var(--purple), #955ee4); }
.btn-teal { color: #fff; background: linear-gradient(135deg, var(--teal), #23d2c3); }
.btn-orange { color: #fff; background: linear-gradient(135deg, var(--orange), #ff9e56); }
.btn-block { width: 100%; }
.header-cta { min-height: 44px; padding: 10px 18px; font-size: 14px; }

.hero {
  position: relative;
  padding-top: 48px;
  background:
    radial-gradient(circle at 8% 14%, rgba(255,198,43,.18), transparent 25%),
    radial-gradient(circle at 78% 15%, rgba(54,185,238,.18), transparent 28%),
    linear-gradient(180deg, #effcff 0%, #fff 65%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 110px;
  background: linear-gradient(176deg, transparent 50%, #fff 51%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .9fr) minmax(330px, .72fr);
  align-items: center;
  gap: 24px;
}
.hero-copy { padding: 30px 0 130px; }
.eyebrow { margin: 0 0 10px; color: var(--pink); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow.small { font-size: 11px; }
h1,h2,h3 { font-family: "Baloo 2", cursive; line-height: 1.05; }
h1 { margin: 0; font-size: clamp(48px, 5.5vw, 80px); letter-spacing: -2.5px; color: var(--pink); }
h1 span { color: var(--purple); }
.hero-text { max-width: 610px; margin: 24px 0; color: #544a68; font-size: 19px; font-weight: 700; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 24px; color: #544a68; font-size: 13px; font-weight: 800; }
.hero-visual { position: relative; align-self: end; min-height: 560px; display: flex; align-items: end; justify-content: center; }
.hero-visual img { position: relative; z-index: 2; width: 100%; max-height: 610px; object-fit: cover; object-position: 50% center; border-radius: 48% 48% 38% 38% / 35% 35% 22% 22%; filter: drop-shadow(0 28px 30px rgba(63, 38, 82, .2)); }
.hero-sticker {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 35px;
  width: 132px;
  height: 132px;
  display: grid;
  place-content: center;
  border: 7px solid #fff;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  background: var(--pink);
  box-shadow: var(--shadow);
  transform: rotate(-8deg);
}
.hero-sticker strong { display: block; font-family: "Baloo 2", cursive; font-size: 21px; line-height: 1; }
.hero-sticker span { font-size: 13px; font-weight: 900; }
.balloon { position: absolute; z-index: 1; width: 86px; height: 108px; border-radius: 50%; filter: drop-shadow(0 12px 10px rgba(60,32,90,.14)); }
.balloon::after { content: ""; position: absolute; left: 50%; top: 100%; width: 1px; height: 90px; background: rgba(82,64,104,.28); }
.balloon-pink { right: 12%; top: 28px; background: linear-gradient(135deg,#ff92c3,#ff3f8f); transform: rotate(9deg); }
.balloon-yellow { left: 8%; top: 75px; background: linear-gradient(135deg,#ffe873,#ffc62b); transform: scale(.78) rotate(-14deg); }
.balloon-blue { right: -2%; top: 122px; background: linear-gradient(135deg,#95e9ff,#36b9ee); transform: scale(.68) rotate(14deg); }
.hero-decor { position: absolute; z-index: 1; font-size: 30px; opacity: .55; }
.decor-one { left: 3%; top: 20%; color: var(--yellow); transform: rotate(-15deg); }
.decor-two { left: 37%; top: 13%; color: var(--pink); }
.decor-three { right: 7%; top: 24%; color: var(--teal); }

.order-card {
  align-self: start;
  margin-top: 8px;
  padding: 24px;
  border: 1px solid #f2dceb;
  border-radius: 28px;
  background: linear-gradient(180deg,#fff6fa,#fff);
  box-shadow: var(--shadow);
}
.order-heading { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.order-heading h2 { margin: 0; color: var(--pink); font-size: 31px; }
.order-heading p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.order-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 18px; background: #fff; font-size: 28px; box-shadow: var(--shadow-soft); }
.form-row { display: grid; gap: 10px; }
.form-row.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.field { margin-bottom: 10px; }
.field label { display: block; margin: 0 0 5px; color: #544a68; font-size: 11px; font-weight: 900; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 45px;
  border: 1px solid #eadfeb;
  border-radius: 12px;
  outline: none;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(255,63,143,.1); }
.field.invalid input, .field.invalid select { border-color: #dc3545; }
.form-note { margin: 8px 0 0; color: var(--muted); text-align: center; font-size: 11px; }
.form-error { min-height: 18px; margin: 0 0 6px; color: #c82f3f; font-size: 12px; font-weight: 800; }
.cart-box { margin: 4px 0 12px; padding: 12px; border-radius: 14px; background: #fff; border: 1px dashed #e2cde6; }
.cart-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cart-head button { border: 0; color: var(--pink); background: transparent; font-size: 11px; font-weight: 900; }
.cart-box ul { margin: 8px 0 0; padding-left: 18px; color: var(--muted); font-size: 12px; }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 34px; }
.section-head h2, .faq-intro h2, .process-copy h2 { margin: 0; color: var(--purple); font-size: clamp(38px,4vw,58px); letter-spacing: -1.5px; }
.section-head > p { max-width: 510px; margin: 0; color: var(--muted); font-weight: 700; }

.services-section { padding-top: 54px; }
.services-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 16px; }
.service-card { position: relative; overflow: hidden; min-height: 280px; padding: 24px 20px 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); transition: transform .22s ease, box-shadow .22s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card::after { content:""; position:absolute; width:110px; height:110px; right:-36px; bottom:-40px; border-radius:50%; background:rgba(255,255,255,.56); }
.service-card.pink { background: #fff0f7; }
.service-card.yellow { background: #fff7d9; }
.service-card.blue { background: #e9f8ff; }
.service-card.mint { background: #e8fbf5; }
.service-card.lilac { background: #f4ecff; }
.service-card.orange { background: #fff0e6; }
.service-icon { width: 76px; height: 76px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 24px; background: rgba(255,255,255,.78); font-size: 40px; box-shadow: 0 10px 20px rgba(74,49,99,.08); }
.service-card h3 { margin: 0 0 8px; font-size: 24px; color: var(--ink); }
.service-card p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.text-link { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 7px; padding: 0; border: 0; background: transparent; color: var(--pink); font-weight: 900; }
.text-link span { display: grid; place-items: center; width: 22px; height: 22px; color: #fff; border-radius: 50%; background: var(--pink); }

.packages-section { background: linear-gradient(180deg,#fff,#fff9fc); }
.packages-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.package-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 25px; background: #fff; box-shadow: var(--shadow-soft); transition: transform .22s ease, box-shadow .22s ease; }
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.package-card.featured { border: 2px solid #c9a5f8; transform: translateY(-10px); }
.package-card.featured:hover { transform: translateY(-15px); }
.featured-badge { position: absolute; z-index: 2; top: 14px; right: 14px; padding: 7px 11px; border-radius: 999px; color: #fff; background: var(--purple); font-size: 11px; font-weight: 900; }
.package-card img { width: 100%; aspect-ratio: 1.35 / 1; object-fit: cover; }
.package-body { padding: 22px; }
.package-label { color: var(--pink); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.package-card h3 { margin: 7px 0 0; font-size: 28px; }
.package-capacity { margin: 0; color: var(--muted); font-size: 13px; }
.price { margin: 12px 0; color: var(--pink); font-family: "Baloo 2", cursive; font-size: 28px; font-weight: 800; }
.price small { color: var(--muted); font-family: "Nunito", sans-serif; font-size: 11px; }
.package-card ul { min-height: 132px; margin: 0 0 18px; padding: 0; list-style: none; color: #5f566e; font-size: 13px; }
.package-card li { position: relative; padding: 4px 0 4px 21px; }
.package-card li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }

.gallery-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); grid-auto-rows: 190px; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: 20px; background: #eee; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item::after { content: "Ver foto"; position: absolute; inset: auto 12px 12px auto; padding: 7px 10px; border-radius: 999px; color: #fff; background: rgba(45,35,64,.76); font-size: 11px; font-weight: 900; opacity: 0; transform: translateY(8px); transition: .25s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }

.process-section { padding-top: 30px; }
.process-card { display: grid; grid-template-columns: .75fr 1.25fr; gap: 40px; align-items: center; padding: 45px; border-radius: 32px; color: #fff; background: linear-gradient(135deg,#7439d0,#9a5ae4 52%,#ff3f8f); box-shadow: var(--shadow); }
.process-copy .eyebrow { color: #ffe777; }
.process-copy h2 { color: #fff; }
.process-copy p:last-child { margin-bottom: 0; color: rgba(255,255,255,.82); }
.process-list { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.process-list li { min-height: 142px; display: flex; flex-direction: column; justify-content: center; padding: 18px; border-radius: 22px; background: rgba(255,255,255,.13); backdrop-filter: blur(8px); }
.process-list span { width: 34px; height: 34px; display: grid; place-items:center; margin-bottom: 10px; border-radius: 50%; color: var(--purple); background: #fff; font-weight: 900; }
.process-list strong { font-family: "Baloo 2",cursive; font-size: 21px; }
.process-list small { color: rgba(255,255,255,.78); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.testimonial { margin: 0; padding: 28px; border-radius: 24px; background: #fff; box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.stars { color: #ffb400; letter-spacing: 3px; }
.testimonial > p { color: #574d68; font-size: 16px; font-weight: 700; }
.testimonial footer { display: flex; flex-direction: column; }
.testimonial footer span { color: var(--muted); font-size: 12px; }

.faq-section { background: #fff9fc; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 60px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro p:not(.eyebrow) { color: var(--muted); }
.accordion { display: grid; gap: 12px; }
.accordion-item { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.accordion-item button { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 20px 22px; border: 0; color: var(--ink); background: transparent; text-align: left; font-weight: 900; }
.accordion-item button strong { color: var(--pink); font-size: 22px; transition: transform .2s ease; }
.accordion-item button[aria-expanded="true"] strong { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.accordion-panel p { margin: 0; padding: 0 22px 22px; color: var(--muted); }

.site-footer { padding: 66px 0 22px; color: #fff; background: #482085; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr 1fr 1.15fr; gap: 42px; }
.footer-brand .brand-bottom { color: #fff; }
.site-footer h3 { margin: 0 0 15px; font-size: 21px; }
.site-footer p { color: rgba(255,255,255,.74); }
.site-footer a:not(.btn):not(.brand) { display: block; margin: 8px 0; color: rgba(255,255,255,.82); }
.site-footer a:not(.btn):not(.brand):hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); font-size: 12px; }
.footer-bottom p { margin: 0; }

.floating-whatsapp { position: fixed; z-index: 800; right: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border: 4px solid #fff; border-radius: 50%; color: #fff; background: var(--green); box-shadow: 0 12px 24px rgba(0,0,0,.2); font-size: 25px; }

.lightbox { width: min(920px, calc(100% - 30px)); padding: 0; border: 0; border-radius: 22px; background: #111; box-shadow: 0 25px 90px rgba(0,0,0,.45); }
.lightbox::backdrop { background: rgba(24,12,34,.82); backdrop-filter: blur(5px); }
.lightbox img { width: 100%; max-height: 80vh; object-fit: contain; }
.lightbox-close { position: absolute; z-index: 2; right: 12px; top: 12px; width: 42px; height: 42px; border: 0; border-radius: 50%; color: #fff; background: rgba(0,0,0,.58); font-size: 28px; }
.toast { position: fixed; z-index: 2000; left: 50%; bottom: 26px; transform: translate(-50%, 30px); padding: 12px 18px; border-radius: 999px; color: #fff; background: var(--ink); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .25s ease; font-weight: 800; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .order-card { grid-column: 1 / -1; display: grid; grid-template-columns: .55fr 1.45fr; gap: 24px; align-items: start; margin-top: -80px; }
  .order-heading { margin: 10px 0; }
  .hero-copy { padding-bottom: 110px; }
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .packages-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .section { padding: 70px 0; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 20px; right: 20px; top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 10px; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 35px 0 0; text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions, .hero-badges { justify-content: center; }
  .hero-visual { min-height: 450px; margin-top: -40px; }
  .hero-visual img { max-width: 650px; }
  .order-card { grid-column: auto; display: block; margin-top: -30px; }
  .section-head { align-items: start; flex-direction: column; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .process-card { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 58px 0; }
  .site-header { backdrop-filter: blur(12px); }
  .header-inner { min-height: 68px; }
  .brand { width: 94px; }
  .brand-top { font-size: 21px; }
  .brand-bottom { font-size: 27px; }
  .hero { padding-top: 20px; }
  h1 { font-size: clamp(43px, 13vw, 59px); }
  .hero-text { font-size: 16px; }
  .hero-actions .btn { flex: 1; min-width: 150px; }
  .hero-badges { display: grid; grid-template-columns: 1fr 1fr; text-align: left; }
  .hero-visual { min-height: 360px; margin-top: -20px; }
  .hero-visual img { max-height: 420px; border-radius: 44% 44% 25% 25% / 28% 28% 18% 18%; }
  .hero-sticker { width: 100px; height: 100px; left: -4px; bottom: 22px; border-width: 5px; }
  .hero-sticker strong { font-size: 16px; }
  .balloon { width: 60px; height: 76px; }
  .order-card { padding: 20px; border-radius: 24px; }
  .form-row.two { grid-template-columns: 1fr 1fr; }
  .section-head h2, .faq-intro h2, .process-copy h2 { font-size: 40px; }
  .services-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 18px; margin-inline: -4px; }
  .service-card { flex: 0 0 78%; min-height: 245px; scroll-snap-align: start; }
  .packages-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding: 12px 3px 24px; }
  .package-card { flex: 0 0 87%; scroll-snap-align: start; }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-5px); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery-item.wide { grid-column: span 2; }
  .process-card { padding: 28px 20px; }
  .process-list { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-cta { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { width: 54px; height: 54px; right: 15px; bottom: 15px; }
}

@media (max-width: 430px) {
  .form-row.two { grid-template-columns: 1fr; }
  .hero-badges { grid-template-columns: 1fr; }
  .order-heading h2 { font-size: 28px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 205px; }
  .gallery-item.wide { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
