@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lato:wght@300;400;500;700&family=Syncopate:wght@400;700&display=swap');

:root {
  --background: 210 33% 98%;
  --foreground: 215 35% 15%;
  --card: 0 0% 100%;
  --card-foreground: 215 35% 15%;
  --primary: 215 55% 25%;
  --primary-foreground: 210 40% 98%;
  --secondary: 210 40% 96%;
  --secondary-foreground: 215 55% 25%;
  --muted: 210 30% 94%;
  --muted-foreground: 215 20% 45%;
  --accent: 38 45% 55%;
  --border: 214 25% 88%;
  --blue-deep: 215 55% 25%;
  --blue-ocean: 210 45% 35%;
  --blue-sky: 205 60% 55%;
  --blue-light: 205 55% 92%;
  --blue-mist: 210 40% 97%;
  --gold-warm: 38 45% 55%;
  --gold-light: 40 50% 90%;
  --cream: 40 30% 96%;
  --gradient-hero: linear-gradient(135deg, hsl(215 55% 25%) 0%, hsl(210 45% 35%) 50%, hsl(205 50% 45%) 100%);
  --gradient-soft: linear-gradient(180deg, hsl(210 40% 97%) 0%, hsl(0 0% 100%) 100%);
  --shadow-soft: 0 4px 20px -4px hsl(215 55% 25% / 0.08);
  --shadow-card: 0 8px 30px -8px hsl(215 55% 25% / 0.12);
  --shadow-hover: 0 12px 40px -8px hsl(215 55% 25% / 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: hsl(var(--foreground));
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 45%, #f6f3ea 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

main {
  display: block;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.section {
  scroll-margin-top: 96px;
}

.section-padding {
  padding: 72px 0;
}

.text-center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.brand img {
  width: 46px;
  height: 46px;
}

.brand__name {
  display: flex;
  gap: 6px;
  font-size: 20px;
  line-height: 1;
}

.brand__first {
  font-family: 'Syncopate', sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.brand__last {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: inset 0 -0.35em 0 rgba(184, 155, 93, 0.4);
  padding: 0 0.08em;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  z-index: 1000;
  border-bottom: 1px solid hsl(var(--border));
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links a {
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 16px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  color: hsl(var(--foreground) / 0.7);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: hsl(var(--foreground));
}

.menu-toggle {
  border: none;
  background: transparent;
  display: inline-flex;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.nav-cta .btn {
  padding: 10px 18px;
  border-radius: 14px;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: none;
}

.nav-cta .btn--elegant {
  border: 2px solid hsl(var(--blue-deep));
}

.nav-cta .social-links a {
  color: hsl(var(--foreground));
}

.mobile-menu {
  display: none;
  border-top: 1px solid hsl(var(--border));
  background: #fff;
  box-shadow: var(--shadow-card);
}

.site-header.menu-open .mobile-menu {
  display: block;
}

.mobile-menu .mobile-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 0;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.mobile-menu a {
  padding: 10px 0;
  border-bottom: 1px solid hsl(var(--border) / 0.6);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--hero {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-card);
}

.btn--hero:hover {
  background: #f5edd6;
  color: hsl(var(--foreground));
}

.btn--hero-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #f7f9fc;
  background: transparent;
}

.btn--hero-outline:hover {
  background: rgba(245, 237, 214, 0.85);
  color: hsl(var(--foreground));
}

.btn--elegant {
  background: hsl(var(--blue-deep));
  color: #f7f9fc;
  box-shadow: var(--shadow-soft);
}

.btn--soft {
  background: hsl(var(--blue-light));
  color: hsl(var(--blue-deep));
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #f7f9fc;
  padding-top: 92px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('bg1.png');
  background-size: cover;
  background-position: center 20%;
  opacity: 0.68;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(30px);
  z-index: 1;
}

.hero__glow--one {
  width: 220px;
  height: 220px;
  top: 80px;
  right: 40px;
}

.hero__glow--two {
  width: 280px;
  height: 280px;
  bottom: 120px;
  left: 50px;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 12px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.dot {
  width: 8px;
  height: 8px;
  background: hsl(var(--gold-warm));
  border-radius: 50%;
  display: inline-block;
}
.hero__title {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: 0.05em;
}

.hero__title .first {
  font-family: 'Syncopate', sans-serif;
  font-weight: 400;
}

.hero__title .last {
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: inset 0 -0.35em 0 rgba(184, 155, 93, 0.55);
  padding: 0 0.08em;
}

.hero__tagline {
  font-size: clamp(16px, 2.6vw, 28px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(160, 201, 227, 0.9);
  margin: 0 0 26px;
}

.hero__description {
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 18px 24px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(247, 249, 252, 0.7);
  animation: bounce 1.8s infinite;
}

.section-header {
  margin-bottom: 48px;
}

.section-header span {
  color: hsl(var(--accent));
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.section-header h2 {
  margin: 12px 0 16px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  text-transform: uppercase;
}

.section-divider {
  width: 64px;
  height: 4px;
  background: hsl(var(--accent));
  border-radius: 999px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.card--hover:hover {
  box-shadow: var(--shadow-card);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: hsl(var(--blue-light));
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.card__title {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 20px;
  margin: 0 0 12px;
}

.card__text {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin: 0;
}

.about {
  background: #f9f7f3;
}

.about__grid {
  display: grid;
  gap: 32px;
}

.about__image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: hsl(var(--blue-light));
}

.about__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about__decor {
  position: absolute;
  width: 88px;
  height: 88px;
  border-radius: 20px;
  background: rgba(184, 155, 93, 0.2);
  right: -20px;
  bottom: -20px;
  z-index: -1;
}

.about__decor--alt {
  width: 64px;
  height: 64px;
  background: hsl(var(--blue-light));
  left: -18px;
  top: -18px;
}

.about__text p {
  line-height: 1.7;
  margin-bottom: 16px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: hsl(var(--muted-foreground));
}

.list li span.dot {
  width: 8px;
  height: 8px;
  background: hsl(var(--accent));
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.values .card {
  text-align: center;
}

.music {
  background: #f9f7f3;
}

.music .quote {
  border-left: 4px solid hsl(var(--accent));
  padding: 20px;
  background: #f9f7f3;
  border-radius: 16px;
  font-style: italic;
}

.music .evidence {
  margin-top: 48px;
  padding: 32px;
  border-radius: 24px;
  background: rgba(160, 201, 227, 0.4);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.services .pill {
  display: inline-flex;
  padding: 6px 14px;
  background: hsl(var(--blue-light));
  color: hsl(var(--blue-deep));
  border-radius: 999px;
  font-size: 12px;
  margin: 4px 6px 0 0;
}

.services .modalities {
  background: hsl(var(--blue-mist));
  border-radius: 24px;
  padding: 24px;
}

.services .note {
  margin-top: 32px;
  background: rgba(160, 201, 227, 0.4);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}

.parents .message {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}

.parents .quote {
  margin-top: 32px;
  text-align: center;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-style: italic;
}

.contact .contact-info {
  display: grid;
  gap: 16px;
}

.contact .contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: hsl(var(--blue-mist));
  padding: 16px;
  border-radius: 16px;
}

.contact .contact-note {
  margin-top: 24px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border-left: 4px solid hsl(var(--accent));
  box-shadow: var(--shadow-soft);
  font-size: 14px;
}

.contact .cta-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer {
  background: hsl(var(--primary));
  color: rgba(247, 249, 252, 0.8);
  padding: 24px 0;
}

.footer .social-links a {
  color: rgba(247, 249, 252, 0.85);
}

.footer .social-links a:hover {
  color: #fff;
}

.footer .footer-inner {
  display: grid;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.footer .brand__name {
  color: #f7f9fc;
}

.footer .meta {
  font-size: 12px;
}

.icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}
.icon--fill {
  fill: currentColor;
  stroke: none;
}

.icon--fill path,
.icon--fill rect,
.icon--fill circle {
  stroke: none;
}
.icon--lg {
  width: 24px;
  height: 24px;
}

.icon--xl {
  width: 28px;
  height: 28px;
}

.whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
}

.whatsapp-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -12px rgba(0, 0, 0, 0.45);
}

.whatsapp-fab__icon {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.whatsapp-chat {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(320px, 90vw);
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-widget.is-open .whatsapp-chat {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp-chat__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: #1f9d58;
  color: #fff;
}

.whatsapp-chat__title {
  font-weight: 600;
  font-size: 14px;
}

.whatsapp-chat__subtitle {
  font-size: 12px;
  opacity: 0.85;
}

.whatsapp-chat__close {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  padding: 2px 6px;
}

.whatsapp-chat__body {
  padding: 16px;
  background: #f5f5f5;
}

.whatsapp-chat__bubble {
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  box-shadow: var(--shadow-soft);
  color: hsl(var(--foreground));
}

.whatsapp-chat__form {
  display: flex;
  gap: 8px;
  padding: 12px 16px 16px;
  background: #fff;
}

.whatsapp-chat__input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid hsl(var(--border));
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
}

.whatsapp-chat__input:focus {
  border-color: hsl(var(--blue-deep));
  box-shadow: 0 0 0 2px hsl(var(--blue-light));
}

.whatsapp-chat__send {
  border: none;
  background: hsl(var(--blue-deep));
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.whatsapp-chat__send:hover {
  background: hsl(var(--blue-ocean));
}

.fade-in {
  animation: fadeIn 0.8s ease-out both;
}

.fade-up {
  animation: fadeUp 0.8s ease-out both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-6px); }
  60% { transform: translateX(-50%) translateY(-3px); }
}

@media (min-width: 768px) {
  .nav-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 24px;
  }

  .nav-links,
  .nav-cta {
    display: flex;
  }

  .nav-links {
    position: static;
    transform: none;
    justify-content: center;
  }

  .nav-cta {
    margin-left: 0;
  }

  .menu-toggle {
    display: none;
  }

  .hero__cta {
    flex-direction: row;
  }

  .about__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .footer .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .brand img {
    width: 54px;
    height: 54px;
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero__glow--one {
    width: 260px;
    height: 260px;
  }

  .hero__glow--two {
    width: 360px;
    height: 360px;
  }
}





@media (max-width: 767px) {
  .nav-bar {
    padding: 10px 0;
  }

  .brand {
    gap: 8px;
  }

  .brand__name {
    font-size: 16px;
  }

  .brand__first {
    letter-spacing: 0.06em;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.98);
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }

  .mobile-menu .mobile-links {
    gap: 0;
    padding: 12px 0 18px;
    letter-spacing: 0.08em;
  }

  .mobile-menu a {
    padding: 14px 0;
  }

  .mobile-menu .btn {
    width: 100%;
    margin-top: 8px;
    border-radius: 14px;
  }

  .menu-toggle {
    border-radius: 10px;
    background: hsl(var(--secondary));
  }
}
