:root {
  --background: oklch(0.99 0.01 95);
  --foreground: oklch(0.28 0.09 300);
  --card: oklch(1 0 0);
  --muted: oklch(0.96 0.02 320);
  --muted-foreground: oklch(0.5 0.06 300);
  --border: oklch(0.9 0.03 320);
  --primary: oklch(0.62 0.24 355);
  --primary-foreground: oklch(0.99 0.01 95);
  --yellow: oklch(0.85 0.17 90);
  --yellow-foreground: oklch(0.32 0.09 60);
  --pink: oklch(0.62 0.24 355);
  --sky: oklch(0.72 0.14 220);
  --green: oklch(0.72 0.19 145);
  --orange: oklch(0.72 0.19 45);
  --whatsapp: oklch(0.68 0.17 150);
  --gradient-hero: linear-gradient(135deg, oklch(0.62 0.24 355), oklch(0.72 0.19 45), oklch(0.85 0.17 90));
  --gradient-fun: linear-gradient(135deg, oklch(0.72 0.14 220), oklch(0.72 0.19 145));
  --shadow-fun: 0 12px 32px -8px color-mix(in oklab, oklch(0.62 0.24 355) 45%, transparent);
  --shadow-soft: 0 8px 24px -10px color-mix(in oklab, oklch(0.28 0.09 300) 30%, transparent);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: "Nunito", system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: "Baloo 2", system-ui, sans-serif; font-weight: 800; line-height: 1.1; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container { max-width: 72rem; margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }
.section { padding-top: 4rem; padding-bottom: 4rem; }
.text-primary { color: var(--primary); }
.text-gradient {
  background-image: var(--gradient-hero);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* buttons */
.btn-primary {
  display: inline-block; background: var(--primary); color: var(--primary-foreground);
  font-weight: 800; padding: 0.75rem 1.75rem; border-radius: 999px;
  box-shadow: var(--shadow-fun); transition: transform .2s;
}
.btn-primary:hover { transform: scale(1.05); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-outline {
  display: inline-block; border: 2px solid var(--primary); color: var(--primary);
  font-weight: 800; padding: 0.7rem 1.75rem; border-radius: 999px; transition: all .2s;
}
.btn-outline:hover { background: var(--primary); color: var(--primary-foreground); }

/* header */
.header {
  position: sticky; top: 0; z-index: 40; width: 100%;
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: color-mix(in oklab, var(--background) 85%, transparent);
  backdrop-filter: blur(12px);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding-top: 0.75rem; padding-bottom: 0.75rem; }
.brand { display: flex; align-items: center; gap: 0.5rem; }
.brand-logo { height: 3rem; width: 3rem; border-radius: 999px; object-fit: cover; }
.brand-name { font-family: "Baloo 2", sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--primary); }
.nav-links { display: none; align-items: center; gap: 1.75rem; }
.nav-links > a { font-size: 0.875rem; font-weight: 700; color: color-mix(in oklab, var(--foreground) 80%, transparent); transition: color .2s; }
.nav-links > a:hover { color: var(--primary); }
.ig-link { color: var(--primary); }
.menu-btn { display: block; background: none; border: none; color: var(--primary); cursor: pointer; }
.mobile-menu { display: flex; flex-direction: column; gap: 0.25rem; padding: 0.75rem 1rem 1rem; border-top: 1px solid var(--border); background: var(--background); }
.mobile-menu a { padding: 0.5rem 0; font-weight: 700; color: color-mix(in oklab, var(--foreground) 80%, transparent); }
.ig-mobile { color: var(--primary) !important; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .menu-btn, .mobile-menu { display: none !important; }
}

/* hero */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; background: var(--gradient-hero); opacity: 0.1; }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; padding-top: 3.5rem; padding-bottom: 3.5rem; }
.hero-text { text-align: center; }
.badge { display: inline-block; background: var(--yellow); color: var(--yellow-foreground); font-weight: 800; font-size: 0.875rem; padding: 0.25rem 1rem; border-radius: 999px; }
.hero-text h1 { font-size: 2.5rem; margin-top: 1rem; }
.hero-text p { margin-top: 1.25rem; font-size: 1.125rem; font-weight: 600; color: var(--muted-foreground); }
.hero-cta { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.hero-img-wrap { position: relative; }
.hero-img-blob { position: absolute; inset: -0.75rem; z-index: -1; transform: rotate(3deg); border-radius: 2rem; background: var(--gradient-fun); opacity: 0.6; }
.hero-img { width: 100%; border-radius: 2rem; object-fit: cover; box-shadow: var(--shadow-soft); }

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; padding-top: 5rem; padding-bottom: 5rem; }
  .hero-text { text-align: left; }
  .hero-text h1 { font-size: 3.75rem; }
  .hero-cta { justify-content: flex-start; }
}

/* section heads */
.section-head { text-align: center; }
.section-head h2 { font-size: 2rem; }
.section-head p { margin: 0.75rem auto 0; max-width: 36rem; font-weight: 600; color: var(--muted-foreground); }
@media (min-width: 768px) { .section-head h2 { font-size: 2.25rem; } }

/* services */
.services-grid { margin-top: 2.5rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.service-card { border: 1px solid var(--border); background: var(--card); border-radius: 1.5rem; padding: 1.5rem; text-align: center; box-shadow: var(--shadow-soft); transition: transform .2s; }
.service-card:hover { transform: translateY(-0.5rem); }
.service-icon { margin: 0 auto; width: 4rem; height: 4rem; display: flex; align-items: center; justify-content: center; border-radius: 1rem; font-size: 1.75rem; }
.service-card h3 { margin-top: 1rem; font-size: 1.25rem; }
.service-card p { margin-top: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--muted-foreground); }
.bg-pink { background: var(--pink); } .bg-sky { background: var(--sky); }
.bg-orange { background: var(--orange); } .bg-green { background: var(--green); }
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

/* gallery */
.gallery-section { background: color-mix(in oklab, var(--muted) 50%, var(--background)); padding: 4rem 0; }
.gallery-grid { margin-top: 2.5rem; display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.gallery-item { overflow: hidden; border-radius: 1rem; box-shadow: var(--shadow-soft); }
.gallery-item img { height: 100%; width: 100%; object-fit: cover; transition: transform .3s; }
.gallery-item img:hover { transform: scale(1.1); }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

/* about */
.about-grid { display: grid; gap: 2.5rem; align-items: center; }
.about-img-wrap { position: relative; order: 2; }
.about-img-blob { position: absolute; inset: -0.75rem; z-index: -1; transform: rotate(-3deg); border-radius: 2rem; background: var(--yellow); opacity: 0.5; }
.about-img { width: 100%; border-radius: 2rem; object-fit: cover; box-shadow: var(--shadow-soft); }
.about-text { order: 1; }
.about-text h2 { font-size: 2rem; }
.about-text > p { margin-top: 1rem; font-size: 1.125rem; font-weight: 600; color: var(--muted-foreground); }
.about-points { margin-top: 1.5rem; list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.about-points li { display: flex; align-items: center; gap: 0.75rem; font-weight: 700; }
.point-icon { flex: none; width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; border-radius: 999px; background: color-mix(in oklab, var(--primary) 10%, transparent); }
.ig-box { margin-top: 2rem; border-radius: 1.5rem; background: var(--gradient-hero); padding: 1.5rem; color: var(--primary-foreground); box-shadow: var(--shadow-fun); }
.ig-box-title { font-family: "Baloo 2", sans-serif; font-size: 1.125rem; font-weight: 800; }
.ig-box-sub { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 600; opacity: 0.9; }
.ig-box-btn { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; background: var(--background); color: var(--primary); font-weight: 800; padding: 0.75rem 1.5rem; border-radius: 999px; transition: transform .2s; }
.ig-box-btn:hover { transform: scale(1.05); }
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-img-wrap { order: 1; } .about-text { order: 2; }
  .about-text h2 { font-size: 2.25rem; }
}

/* cta */
.cta-box { position: relative; overflow: hidden; border-radius: 2.5rem; background: var(--gradient-hero); padding: 2.5rem 1.5rem; text-align: center; color: var(--primary-foreground); box-shadow: var(--shadow-fun); }
.cta-box h2 { font-size: 2rem; }
.cta-box p { margin: 1rem auto 0; max-width: 36rem; font-size: 1.125rem; font-weight: 700; opacity: 0.92; }
.cta-btn { margin-top: 2rem; display: inline-flex; align-items: center; gap: 0.5rem; background: var(--background); color: var(--primary); font-weight: 800; padding: 1rem 2rem; border-radius: 999px; transition: transform .2s; }
.cta-btn:hover { transform: scale(1.05); }
@media (min-width: 768px) { .cta-box { padding: 4rem; } .cta-box h2 { font-size: 3rem; } }

/* footer */
.footer { border-top: 1px solid var(--border); background: color-mix(in oklab, var(--muted) 40%, var(--background)); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; padding: 2.5rem 1rem; }
.footer-logo { height: 8rem; width: 8rem; border-radius: 999px; object-fit: cover; box-shadow: var(--shadow-fun); outline: 4px solid color-mix(in oklab, var(--primary) 20%, transparent); }
.footer-name { font-family: "Baloo 2", sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.footer-desc { max-width: 28rem; font-weight: 600; color: var(--muted-foreground); }
.footer-link { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 800; color: var(--primary); }
.footer-link:hover { text-decoration: underline; }
.footer-copy { font-size: 0.875rem; color: var(--muted-foreground); }

/* whatsapp float */
.wa-float { position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 50; display: flex; align-items: center; gap: 0.75rem; background: var(--whatsapp); color: #fff; padding: 1rem; border-radius: 999px; box-shadow: var(--shadow-fun); transition: transform .2s; }
.wa-float:hover { transform: scale(1.05); }
.wa-ping { position: absolute; inset: 0; border-radius: 999px; background: var(--whatsapp); opacity: 0.4; animation: waping 1.5s cubic-bezier(0,0,0.2,1) infinite; }
@keyframes waping { 75%, 100% { transform: scale(1.6); opacity: 0; } }
.wa-label { position: relative; font-weight: 800; padding-right: 0.25rem; display: none; }
@media (min-width: 640px) { .wa-label { display: inline; } }
