:root {
  --primary: #e91e8c;
  --accent: #ffd600;
  --bg: #fff0f7;
  --text: #2d1a2e;
  --white: #ffffff;
  --pink-light: #fce4ec;
  --purple: #9c27b0;
  --radius: 24px;
  --radius-sm: 12px;
  --shadow: 0 4px 20px rgba(233,30,140,0.15);
  --shadow-lg: 0 8px 40px rgba(233,30,140,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-top: 36px;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* DEMO BAR */
.demo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
}
.demo-bar a { color: var(--accent); text-decoration: underline; margin: 0 4px; }

/* HEADER */
header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(233,30,140,0.1);
  position: sticky;
  top: 36px;
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active { background: var(--primary); color: #fff; }

.nav-toggle { display: none; }
.nav-label { display: none; cursor: pointer; padding: 8px; border-radius: 8px; background: var(--bg); }
.burger { display: block; width: 24px; }
.burger span { display: block; height: 2px; width: 100%; background: var(--primary); margin: 5px 0; border-radius: 2px; }

@media (max-width: 700px) {
  .nav-label { display: flex; align-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: 0 8px 20px rgba(233,30,140,0.15);
  }
  .nav-links a { width: 100%; text-align: center; }
  .nav-toggle:checked ~ .nav-links { display: flex; }
}

/* HERO */
.hero {
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg) 0%, #fce4ec 50%, #fff9c4 100%);
}
.hero-circles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-circles span { position: absolute; border-radius: 50%; opacity: 0.15; }
.c1 { width:320px;height:320px;background:var(--primary);top:-100px;right:-80px; }
.c2 { width:220px;height:220px;background:var(--accent);bottom:-70px;left:-50px; }
.c3 { width:160px;height:160px;background:var(--purple);bottom:100px;right:8%; }
.c4 { width:110px;height:110px;background:var(--primary);top:45%;left:4%; }

.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.1rem; color: #7b3f6e; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

.btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-secondary { background: var(--accent); color: var(--text); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }

/* CONES */
.hero-illustration { margin: 40px auto 0; display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.cone-scoop-stack { display: flex; flex-direction: column; align-items: center; }
.scoop { width: 70px; height: 70px; border-radius: 50%; margin-bottom: -10px; border: 3px solid rgba(255,255,255,0.6); }
.cone-shape { width: 0; height: 0; border-left: 35px solid transparent; border-right: 35px solid transparent; border-top: 60px solid #d4a257; }

/* SECTION */
.section { padding: 80px 20px; }
.section-alt { background: var(--white); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 900; color: var(--primary); margin-bottom: 8px; }
.section-title p { color: #7b3f6e; font-size: 1rem; }

/* CARDS */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width:600px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width:900px) { .cards-grid { grid-template-columns: repeat(3,1fr); } }

.card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-visual { height: 180px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.card-body { padding: 20px; }
.card-body h3 { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.card-body p { font-size: 0.88rem; color: #7b3f6e; line-height: 1.5; }
.card-price { display: inline-block; margin-top: 10px; background: var(--accent); color: var(--text); padding: 4px 14px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; }

/* MENU PAGE */
.menu-section { margin-bottom: 48px; }
.menu-section h2 { font-size: 1.4rem; font-weight: 900; color: var(--primary); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.menu-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.menu-list { display: grid; gap: 12px; }
@media (min-width:600px) { .menu-list { grid-template-columns: 1fr 1fr; } }
.menu-item { background: var(--white); border-radius: var(--radius-sm); padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; box-shadow: var(--shadow); gap: 12px; }
.menu-item-info h4 { font-size: 0.95rem; font-weight: 700; }
.menu-item-info p { font-size: 0.8rem; color: #9e6b8a; margin-top: 2px; }
.menu-item-price { font-weight: 800; color: var(--primary); font-size: 1rem; white-space: nowrap; }
.menu-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; margin-left: 6px; vertical-align: middle; }
.badge-new { background: var(--primary); color: #fff; }
.badge-best { background: var(--accent); color: var(--text); }
.badge-special { background: var(--purple); color: #fff; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
@media (min-width:700px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width:1000px) { .gallery-grid { grid-template-columns: repeat(4,1fr); } }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); position: relative; }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(45,26,46,0.85)); color: #fff; padding: 20px 12px 10px; font-size: 0.8rem; font-weight: 600; text-align: center; }

/* PACKAGES */
.packages-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width:600px) { .packages-grid { grid-template-columns: repeat(3,1fr); } }
.package-card { border-radius: var(--radius); padding: 28px 24px; text-align: center; position: relative; }
.package-card.basic { background: var(--white); box-shadow: var(--shadow); }
.package-card.premium { background: var(--primary); color: #fff; box-shadow: var(--shadow-lg); transform: scale(1.03); }
.package-card.birthday { background: linear-gradient(135deg,var(--accent),#ff8a00); color: var(--text); box-shadow: var(--shadow-lg); }
.package-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; background: var(--accent); color: var(--text); margin-bottom: 14px; }
.package-card.premium .package-badge { background: #fff; }
.package-card h3 { font-size: 1.2rem; font-weight: 900; margin-bottom: 4px; }
.package-duration { font-size: 0.85rem; opacity: 0.8; margin-bottom: 16px; }
.package-price { font-size: 2rem; font-weight: 900; margin-bottom: 20px; }
.package-features { text-align: left; }
.package-features li { font-size: 0.85rem; padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; }
.package-features li::before { content: "✓"; font-weight: 700; color: var(--accent); flex-shrink: 0; }
.package-card.birthday .package-features li::before { color: var(--text); }

/* FORM */
.form-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow-lg); max-width: 700px; margin: 0 auto; }
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr; margin-bottom: 16px; }
@media (min-width:600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 700; }
.form-group input, .form-group select, .form-group textarea {
  border: 2px solid #f0d0e8;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* VALUES */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width:600px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width:900px) { .values-grid { grid-template-columns: repeat(3,1fr); } }
.value-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; text-align: center; box-shadow: var(--shadow); }
.value-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.value-card h3 { font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: #7b3f6e; }

/* TEAM */
.team-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width:600px) { .team-grid { grid-template-columns: repeat(3,1fr); } }
.team-card { background: var(--white); border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 900; color: #fff; }
.team-card h4 { font-weight: 800; }
.team-card .role { font-size: 0.82rem; color: var(--primary); font-weight: 600; margin-top: 4px; }
.team-card p { font-size: 0.82rem; color: #9e6b8a; margin-top: 8px; }

/* TIMELINE */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content:''; position:absolute; left:10px; top:0; bottom:0; width:3px; background:linear-gradient(var(--primary),var(--accent)); border-radius:3px; }
.timeline-item { position: relative; padding-bottom: 28px; }
.timeline-item::before { content:''; position:absolute; left:-26px; top:6px; width:14px; height:14px; border-radius:50%; background:var(--primary); border:3px solid #fff; box-shadow:0 0 0 2px var(--primary); }
.timeline-item .year { font-size:0.78rem; color:var(--accent); font-weight:700; text-transform:uppercase; letter-spacing:0.05em; margin-bottom:4px; }
.timeline-item h4 { font-weight:800; color:var(--primary); }
.timeline-item p { font-size:0.88rem; color:#7b3f6e; margin-top:4px; }

/* MEDIA */
.media-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width:600px) { .media-grid { grid-template-columns: repeat(3,1fr); } }
.media-card { background: var(--white); border-radius: var(--radius-sm); padding: 20px; box-shadow: var(--shadow); border-left: 4px solid var(--primary); }
.media-card .source { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; }
.media-card blockquote { font-size: 0.88rem; color: var(--text); margin-top: 6px; font-style: italic; }

/* STATS */
.stat-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 40px; }
.stat-item { text-align: center; }
.stat-item .num { font-size: 2.4rem; font-weight: 900; color: var(--primary); }
.stat-item .lbl { font-size: 0.82rem; color: #7b3f6e; font-weight: 600; }

/* HIGHLIGHT BOX */
.highlight-box { background: linear-gradient(135deg,var(--primary),var(--purple)); color: #fff; border-radius: var(--radius); padding: 48px 32px; text-align: center; }
.highlight-box h2 { font-size: clamp(1.4rem,4vw,2rem); font-weight: 900; margin-bottom: 12px; }
.highlight-box p { opacity: 0.9; margin-bottom: 24px; }

/* PROMO STRIP */
.promo-strip { background: var(--primary); color: #fff; text-align: center; padding: 12px 20px; font-size: 0.88rem; font-weight: 700; }
.promo-strip span { color: var(--accent); }

/* DAILY BANNER */
.daily-banner { background: var(--accent); border-radius: var(--radius); padding: 24px 28px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.daily-banner .daily-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.daily-banner h3 { font-weight: 900; color: var(--text); font-size: 1.1rem; }
.daily-banner p { font-size: 0.88rem; color: #5d3a00; margin-top: 2px; }

/* FLOWER WALL */
.flower-wall { width:100%; height:100%; display:grid; grid-template-columns:repeat(4,1fr); grid-template-rows:repeat(3,1fr); gap:6px; padding:12px; background:#fce4ec; }
.flower { border-radius: 50%; }

/* FOOTER */
footer { background: var(--text); color: rgba(255,255,255,0.85); padding: 48px 20px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width:700px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand .logo { color: var(--accent); margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; opacity: 0.7; line-height: 1.6; }
.footer-col h4 { color: var(--accent); font-weight: 700; margin-bottom: 12px; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col a { display: block; font-size: 0.85rem; opacity: 0.7; padding: 3px 0; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; }
.footer-col p { font-size: 0.85rem; opacity: 0.7; line-height: 1.7; }
.footer-bottom { max-width: 1100px; margin: 32px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.8rem; opacity: 0.5; }

/* TAG */
.tag { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; background: var(--bg); color: var(--primary); margin: 3px; }

@media (min-width:900px) { .section { padding: 100px 40px; } }
