@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #292b52;
  --navy-2: #202242;
  --cream: #fff9ee;
  --cream-2: #fff4df;
  --teal: #20b5a3;
  --teal-dark: #129889;
  --coral: #f34f6d;
  --coral-dark: #db3656;
  --yellow: #f7c64a;
  --pink: #f8c7d2;
  --lilac: #c9b9df;
  --blue: #b8e3eb;
  --green: #cbe8d4;
  --white: #fff;
  --text: #555568;
  --muted: #77778a;
  --border: rgba(41, 43, 82, 0.11);
  --shadow-sm: 0 8px 26px rgba(41, 43, 82, 0.08);
  --shadow-md: 0 18px 50px rgba(41, 43, 82, 0.13);
  --shadow-lg: 0 30px 80px rgba(41, 43, 82, 0.18);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --container: 1200px;
  --header-height: 90px;
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

#app {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}

.site-header,
main,
.site-footer {
  width: 100%;
  max-width: 100%;
}

body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section { padding: 104px 0; position: relative; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading h2, h1, h2, h3 { font-family: 'Fredoka', sans-serif; color: var(--navy); }
.section-heading h2 { margin: 10px 0 14px; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.08; letter-spacing: -0.02em; }
.section-heading p { margin: 0; font-size: 1.1rem; color: var(--muted); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral-dark);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 22px; height: 3px; border-radius: 10px; background: var(--yellow); }
.eyebrow--light { color: var(--white); }
.eyebrow--light::before { background: var(--yellow); }
.icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; }

.button-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.button-row--center { justify-content: center; }
.button {
  min-height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 23px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, button:focus-visible, a:focus-visible { outline: 3px solid rgba(32, 181, 163, .35); outline-offset: 3px; }
.button--primary { color: white; background: var(--coral); box-shadow: 0 12px 26px rgba(243, 79, 109, .25); }
.button--primary:hover { background: var(--coral-dark); box-shadow: 0 16px 32px rgba(243, 79, 109, .3); }
.button--secondary { color: var(--navy); background: var(--white); border-color: rgba(41,43,82,.14); box-shadow: var(--shadow-sm); }
.button--secondary:hover { color: var(--coral-dark); border-color: var(--coral); }
.button--light { color: var(--navy); background: var(--white); box-shadow: 0 12px 32px rgba(32,34,66,.18); }
.button--light:hover { color: var(--coral-dark); }
.button--outline-light { color: var(--white); border-color: rgba(255,255,255,.65); background: transparent; }
.button--outline-light:hover { background: rgba(255,255,255,.12); border-color: white; }
.button--full { width: 100%; }
.section-action { margin-top: 42px; text-align: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255,249,238,.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: height .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.site-header.scrolled { height: 78px; border-color: var(--border); box-shadow: 0 8px 30px rgba(41,43,82,.07); }
.site-header__inner { height: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
.brand { width: 74px; height: 74px; display: grid; place-items: center; flex-shrink: 0; }
.site-header.scrolled .brand { width: 62px; height: 62px; }
.brand img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.desktop-nav { display: flex; justify-content: center; gap: 32px; }
.desktop-nav a { position: relative; color: var(--navy); font-size: .94rem; font-weight: 800; }
.desktop-nav a::after { content: ''; position: absolute; left: 50%; bottom: -8px; width: 0; height: 3px; border-radius: 3px; background: var(--coral); transform: translateX(-50%); transition: width .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { width: 22px; }
.desktop-nav a.active { color: var(--coral-dark); }
.header-cta { white-space: nowrap; }
.menu-button { display: none; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border); background: white; align-items: center; justify-content: center; cursor: pointer; }
.menu-button .icon { width: 24px; height: 24px; }
.mobile-menu { position: fixed; inset: 0; z-index: 150; display: grid; justify-items: end; background: rgba(32,34,66,.45); visibility: hidden; opacity: 0; transition: opacity .25s ease, visibility .25s ease; }
.mobile-menu.open { visibility: visible; opacity: 1; }
.mobile-menu__panel { width: min(88%, 390px); height: 100%; padding: 24px; background: var(--cream); transform: translateX(100%); transition: transform .28s ease; box-shadow: var(--shadow-lg); }
.mobile-menu.open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.mobile-menu__top img { width: 72px; height: 72px; border-radius: 50%; }
.mobile-menu__top button, .modal__close { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: white; display: grid; place-items: center; cursor: pointer; }
.mobile-menu nav { display: grid; gap: 8px; }
.mobile-menu nav a { padding: 14px 10px; border-bottom: 1px solid var(--border); color: var(--navy); font-family: 'Fredoka'; font-weight: 600; font-size: 1.15rem; }
.mobile-menu__cta { width: 100%; margin-top: 28px; }

/* Hero */
.hero { min-height: 740px; padding: 72px 0 115px; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--cream) 0%, #fff5e4 65%, #ffe9d1 100%); }
.hero::before { content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(247,198,74,.12); left: -190px; top: 130px; }
.hero__grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 70px; position: relative; z-index: 2; }
.hero__content h1 { margin: 18px 0 24px; max-width: 720px; font-size: clamp(3rem, 5.5vw, 5.2rem); line-height: .98; letter-spacing: -0.045em; }
.hero__content h1::first-line { color: var(--navy); }
.hero__content > p { max-width: 620px; margin: 0 0 32px; color: var(--text); font-size: 1.16rem; }
.hero__note { margin-top: 28px; display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 700; }
.hero__note .icon { color: var(--coral); }
.hero__visual { position: relative; }
.hero__image-wrap { position: relative; max-width: 560px; margin-left: auto; padding: 14px; border-radius: 44px; background: white; transform: rotate(1.5deg); box-shadow: var(--shadow-lg); }
.hero__image-wrap::after { content: ''; position: absolute; z-index: -1; inset: 35px -28px -28px 35px; border-radius: 42px; background: var(--teal); opacity: .95; }
.hero__image-wrap img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 32px; }
.hero__badge { position: absolute; display: flex; align-items: center; gap: 9px; padding: 12px 16px; border-radius: 999px; background: white; color: var(--navy); font-weight: 800; box-shadow: var(--shadow-md); transform: rotate(-1.5deg); }
.hero__badge .icon { color: var(--coral); }
.hero__badge--top { top: -22px; right: -15px; }
.hero__badge--bottom { bottom: -23px; left: -26px; }
.hero__badge--bottom .icon { color: var(--teal); }
.hero__decor { position: absolute; z-index: 1; pointer-events: none; }
.hero__decor--cloud-one, .hero__decor--cloud-two { width: 130px; height: 42px; background: rgba(255,255,255,.8); border-radius: 50px; }
.hero__decor--cloud-one::before, .hero__decor--cloud-one::after, .hero__decor--cloud-two::before, .hero__decor--cloud-two::after { content: ''; position: absolute; border-radius: 50%; background: inherit; }
.hero__decor--cloud-one::before, .hero__decor--cloud-two::before { width: 58px; height: 58px; left: 20px; bottom: 0; }
.hero__decor--cloud-one::after, .hero__decor--cloud-two::after { width: 78px; height: 78px; right: 13px; bottom: 0; }
.hero__decor--cloud-one { top: 44px; left: 4%; transform: scale(.7); }
.hero__decor--cloud-two { right: 7%; bottom: 105px; transform: scale(.6); }
.hero__decor--star-one { left: 48%; top: 120px; color: var(--teal); font-size: 54px; transform: rotate(18deg); }
.hero__decor--star-two { right: 3%; top: 170px; color: var(--coral); font-size: 48px; }
.hero__wave { position: absolute; left: -2%; right: -2%; bottom: -2px; height: 74px; background: var(--cream); border-radius: 50% 50% 0 0 / 100% 100% 0 0; }

/* Services */
.services-section { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.service-card { min-height: 280px; padding: 28px 20px 24px; border-radius: 28px; text-align: center; transition: transform .22s ease, box-shadow .22s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-card--yellow { background: #fff2bd; }
.service-card--pink { background: #fde1e7; }
.service-card--green { background: #def1e3; }
.service-card--blue { background: #d9f1f5; }
.service-card--lilac { background: #e8def3; }
.service-card__icon { width: 94px; height: 94px; margin: 0 auto 22px; border-radius: 50%; background: rgba(255,255,255,.72); display: grid; place-items: center; color: var(--navy); }
.service-card__icon .icon { width: 48px; height: 48px; }
.service-card h3 { margin: 0 0 10px; font-size: 1.25rem; line-height: 1.15; }
.service-card p { margin: 0; font-size: .96rem; line-height: 1.55; }

/* Differentials */
.differentials-section { background: white; overflow: hidden; }
.differentials-section::before { content: ''; position: absolute; width: 480px; height: 480px; border-radius: 50%; background: rgba(32,181,163,.07); right: -250px; top: -170px; }
.differentials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.differential-card { position: relative; padding: 34px 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--cream); overflow: hidden; }
.differential-card__number { position: absolute; right: 18px; top: 2px; font-family: 'Fredoka'; font-size: 4.5rem; color: rgba(41,43,82,.055); line-height: 1; }
.differential-card__icon { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; color: var(--coral); background: var(--pink); margin-bottom: 22px; }
.differential-card:nth-child(2) .differential-card__icon { color: var(--teal-dark); background: var(--green); }
.differential-card:nth-child(3) .differential-card__icon { color: #b7830c; background: #fff0b9; }
.differential-card:nth-child(4) .differential-card__icon { color: #6b55a0; background: var(--lilac); }
.differential-card__icon .icon { width: 30px; height: 30px; }
.differential-card h3 { margin: 0 0 10px; font-size: 1.28rem; }
.differential-card p { margin: 0; }

/* Steps */
.steps-section { background: var(--teal); color: rgba(255,255,255,.86); overflow: hidden; }
.steps-section .section-heading h2, .steps-section .section-heading p { color: white; }
.steps-section .eyebrow { color: white; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step-card { position: relative; padding: 34px; min-height: 230px; border-radius: 28px; background: rgba(255,255,255,.98); color: var(--text); box-shadow: 0 18px 45px rgba(17,98,90,.18); }
.step-card__number { width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; background: var(--coral); color: white; font-family: 'Fredoka'; font-weight: 700; font-size: 1.4rem; margin-bottom: 22px; }
.step-card:nth-child(2) .step-card__number { background: var(--yellow); color: var(--navy); }
.step-card:nth-child(3) .step-card__number { background: var(--navy); }
.step-card h3 { margin: 0 0 10px; font-size: 1.35rem; }
.step-card p { margin: 0; }
.step-card__arrow { position: absolute; right: -31px; top: 50%; z-index: 2; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--yellow); color: var(--navy); font-weight: 900; box-shadow: var(--shadow-sm); }

/* Combo cards */
.combos-section { background: var(--cream); }
.combos-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px; }
.combos-grid--listing { margin-top: 42px; }
.combos-grid--two { grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 850px; margin-inline: auto; }
.combo-card { display: flex; flex-direction: column; min-width: 0; border-radius: 28px; background: white; border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.combo-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.combo-card__image { display: block; position: relative; overflow: hidden; aspect-ratio: 4/3; }
.combo-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.combo-card:hover .combo-card__image img { transform: scale(1.045); }
.tag { display: inline-flex; align-items: center; width: fit-content; padding: 7px 12px; border-radius: 999px; background: var(--coral); color: white; font-size: .74rem; font-weight: 800; letter-spacing: .03em; }
.combo-card__image .tag { position: absolute; top: 16px; left: 16px; box-shadow: 0 8px 22px rgba(41,43,82,.16); }
.combo-card__body { display: flex; flex: 1; flex-direction: column; padding: 25px; }
.combo-card h3 { margin: 0 0 10px; font-size: 1.5rem; }
.combo-card h3 a:hover { color: var(--coral-dark); }
.combo-card p { margin: 0 0 18px; }
.combo-card__meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; padding-bottom: 18px; }
.combo-card__meta span { display: flex; align-items: center; gap: 6px; font-size: .86rem; color: var(--muted); }
.combo-card__meta .icon { color: var(--teal-dark); }
.combo-card__footer { display: flex; gap: 14px; justify-content: space-between; align-items: flex-end; padding-top: 18px; border-top: 1px solid var(--border); }
.price { display: grid; line-height: 1.2; }
.price small { color: var(--muted); font-size: .74rem; }
.price strong { margin-top: 4px; color: var(--navy); font-family: 'Fredoka'; font-size: 1.03rem; }
.combo-card__footer .button { min-height: 42px; padding: 10px 16px; font-size: .88rem; }

/* About preview */
.about-preview-section { background: white; }
.about-preview { display: grid; grid-template-columns: .92fr 1.08fr; gap: 84px; align-items: center; }
.about-preview__image { position: relative; max-width: 520px; }
.about-preview__image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center 30%; border-radius: var(--radius-lg); position: relative; z-index: 2; box-shadow: var(--shadow-md); }
.about-preview__shape { position: absolute; inset: 30px -30px -30px 30px; border-radius: var(--radius-lg); background: var(--yellow); transform: rotate(-3deg); }
.about-preview__content h2 { margin: 10px 0 20px; font-size: clamp(2.2rem,4vw,3.4rem); line-height: 1.05; }
.about-preview__content p { margin: 0 0 16px; font-size: 1.06rem; }
.about-preview__content .button { margin-top: 12px; }

/* Instagram */
.instagram-section { background: var(--cream); }
.instagram-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 950px; margin-inline: auto; }
.instagram-post { position: relative; overflow: hidden; border-radius: 22px; aspect-ratio: 1; background: var(--cream-2); }
.instagram-post img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.instagram-post__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; gap: 8px; justify-content: center; align-items: center; color: white; background: linear-gradient(rgba(41,43,82,.04), rgba(41,43,82,.72)); opacity: 0; transition: opacity .25s ease; font-weight: 800; }
.instagram-post__overlay .icon { width: 32px; height: 32px; }
.instagram-post:hover img { transform: scale(1.06); }
.instagram-post:hover .instagram-post__overlay { opacity: 1; }

/* Testimonials */
.testimonials-section { background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { position: relative; padding: 32px; border-radius: var(--radius); background: var(--cream); border: 1px solid var(--border); }
.testimonial-card__quote { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; color: var(--coral); background: var(--pink); margin-bottom: 20px; }
.testimonial-card__quote .icon { width: 25px; height: 25px; }
.testimonial-card > p { min-height: 108px; margin: 0 0 22px; font-style: italic; }
.testimonial-card strong, .testimonial-card span { display: block; }
.testimonial-card strong { color: var(--navy); }
.testimonial-card span { color: var(--muted); font-size: .9rem; }

/* FAQ */
.faq-section { background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 75px; align-items: start; }
.faq-layout__intro { position: sticky; top: 120px; }
.faq-layout__intro h2 { margin: 10px 0 18px; font-size: clamp(2.4rem,4vw,3.5rem); line-height: 1.05; }
.faq-layout__intro p { font-size: 1.06rem; margin: 0 0 26px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border-radius: 18px; background: white; border: 1px solid var(--border); overflow: hidden; transition: box-shadow .2s ease; }
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-question { width: 100%; padding: 22px 24px; border: 0; display: flex; justify-content: space-between; align-items: center; gap: 18px; text-align: left; background: transparent; color: var(--navy); font-weight: 800; cursor: pointer; }
.faq-question .icon { transition: transform .25s ease; }
.faq-item.open .faq-question .icon { transform: rotate(180deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 24px 22px; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }

/* CTA */
.cta-section { background: white; }
.cta-card { position: relative; min-height: 350px; padding: 66px 36px; display: grid; place-items: center; border-radius: 38px; text-align: center; color: white; background: linear-gradient(135deg, var(--teal), #16a593); overflow: hidden; box-shadow: var(--shadow-md); }
.cta-card::before, .cta-card::after { content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,.08); }
.cta-card::before { width: 390px; height: 390px; left: -160px; bottom: -250px; }
.cta-card::after { width: 300px; height: 300px; right: -120px; top: -180px; }
.cta-card__content { position: relative; z-index: 2; max-width: 750px; }
.cta-card h2 { color: white; margin: 10px 0 14px; font-size: clamp(2.2rem,4vw,3.5rem); line-height: 1.05; }
.cta-card p { margin: 0 auto 28px; max-width: 650px; font-size: 1.08rem; color: rgba(255,255,255,.9); }
.cta-card__decor { position: absolute; color: var(--yellow); font-size: 72px; opacity: .8; }
.cta-card__decor--one { left: 8%; top: 22%; transform: rotate(-15deg); }
.cta-card__decor--two { right: 8%; bottom: 18%; color: var(--pink); transform: rotate(12deg); }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,.76); }
.site-footer__grid { padding: 72px 0 58px; display: grid; grid-template-columns: 1.35fr .8fr 1.05fr .8fr; gap: 55px; }
.footer-brand img { width: 120px; height: 120px; object-fit: contain; border-radius: 50%; margin-bottom: 18px; }
.footer-brand p { max-width: 310px; margin: 0; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column h3 { color: white; margin: 0 0 10px; font-size: 1.15rem; }
.footer-column > a:hover { color: white; }
.footer-contact a, .footer-contact span { display: flex; gap: 8px; align-items: flex-start; }
.footer-contact .icon { margin-top: 4px; color: var(--yellow); }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-links a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.09); color: white; transition: background .2s ease, transform .2s ease; }
.social-links a:hover { background: var(--coral); transform: translateY(-3px); }
.instagram-handle { margin-top: 4px; color: white; font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom__inner { min-height: 68px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: .88rem; }
.footer-bottom a { color: white; font-weight: 800; }
.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; height: 58px; padding: 0 20px; display: flex; align-items: center; gap: 10px; border-radius: 999px; background: #25d366; color: white; font-weight: 800; box-shadow: 0 14px 35px rgba(18,120,68,.32); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.02); }
.whatsapp-float .icon { width: 25px; height: 25px; }

/* Internal hero */
.internal-hero { position: relative; min-height: 340px; display: grid; place-items: center; overflow: hidden; color: white; background: var(--coral); }
.internal-hero--pink { background: linear-gradient(135deg, var(--coral), #eb6b83); }
.internal-hero--teal { background: linear-gradient(135deg, var(--teal), #159485); }
.internal-hero--yellow { background: linear-gradient(135deg, #efb62d, var(--yellow)); }
.internal-hero--navy { background: linear-gradient(135deg, var(--navy), #3b3e72); }
.internal-hero__content { position: relative; z-index: 2; text-align: center; max-width: 840px; padding: 65px 24px; }
.internal-hero h1 { color: white; margin: 12px 0 12px; font-size: clamp(2.8rem,5vw,4.7rem); line-height: 1; }
.internal-hero p { margin: 0; font-size: 1.15rem; color: rgba(255,255,255,.9); }
.decor { position: absolute; pointer-events: none; }
.decor--cloud { width: 130px; height: 42px; background: rgba(255,255,255,.18); border-radius: 50px; }
.decor--cloud::before, .decor--cloud::after { content: ''; position: absolute; border-radius: 50%; background: inherit; bottom: 0; }
.decor--cloud::before { width: 58px; height: 58px; left: 18px; }
.decor--cloud::after { width: 78px; height: 78px; right: 12px; }
.decor--cloud-a { top: 55px; left: 8%; }
.decor--spark-a { right: 13%; top: 65px; font-size: 64px; color: var(--yellow); }
.decor--squiggle-a { left: 17%; bottom: 20px; font-size: 100px; color: rgba(255,255,255,.25); transform: rotate(-15deg); }

/* About page */
.story-section { background: white; }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.story-image { position: relative; }
.story-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center; border-radius: 36px; box-shadow: var(--shadow-md); }
.story-image__badge { position: absolute; left: -20px; bottom: 30px; display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-radius: 999px; color: var(--navy); background: white; font-weight: 800; box-shadow: var(--shadow-md); }
.story-image__badge .icon { color: var(--coral); }
.story-content h2 { margin: 10px 0 20px; font-size: clamp(2.3rem,4vw,3.5rem); line-height: 1.06; }
.story-content > p { font-size: 1.08rem; }
.story-content blockquote { margin: 30px 0; padding: 24px 26px; display: flex; gap: 18px; align-items: flex-start; border-radius: 20px; background: var(--cream-2); color: var(--navy); font-family: 'Fredoka'; font-size: 1.3rem; font-style: normal; }
.story-content blockquote .icon { color: var(--coral); width: 30px; height: 30px; }
.story-location { display: flex; gap: 10px; align-items: flex-start; font-weight: 700; color: var(--navy); }
.story-location .icon { color: var(--teal); margin-top: 4px; }
.values-section { background: var(--cream); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.value-card { padding: 32px 26px; text-align: center; border-radius: var(--radius); background: white; border: 1px solid var(--border); }
.value-card__icon { width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 20px; display: grid; place-items: center; color: var(--coral); background: var(--pink); }
.value-card:nth-child(2) .value-card__icon { color: var(--teal-dark); background: var(--green); }
.value-card:nth-child(3) .value-card__icon { color: #a37200; background: #fff0b8; }
.value-card:nth-child(4) .value-card__icon { color: #6c57a0; background: var(--lilac); }
.value-card__icon .icon { width: 32px; height: 32px; }
.value-card h3 { margin: 0 0 8px; font-size: 1.3rem; }
.value-card p { margin: 0; }
.team-section { background: white; }
.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; max-width: 880px; margin-inline: auto; }
.team-card { overflow: hidden; border-radius: 28px; background: var(--cream); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.team-card__image { aspect-ratio: 4/3; overflow: hidden; }
.team-card__image img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body { padding: 25px; }
.team-card h3 { margin: 0; font-size: 1.55rem; }
.team-card__body > span { display: block; margin: 3px 0 12px; color: var(--coral-dark); font-weight: 800; }
.team-card p { margin: 0; }

/* Combo listing and detail */
.combos-list-section { background: var(--cream); }
.notice-card { max-width: 880px; margin: -32px auto 0; position: relative; z-index: 3; display: flex; gap: 14px; align-items: center; padding: 20px 24px; border-radius: 18px; background: white; color: var(--navy); border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.notice-card .icon { color: var(--coral); width: 26px; height: 26px; }
.notice-card p { margin: 0; font-weight: 700; }
.combo-detail-hero { padding-top: 46px; background: var(--cream); }
.breadcrumb { display: flex; align-items: center; gap: 7px; margin-bottom: 32px; color: var(--muted); font-size: .9rem; }
.breadcrumb a:hover { color: var(--coral-dark); }
.breadcrumb .icon { width: 15px; height: 15px; }
.combo-detail-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 65px; align-items: start; }
.gallery__main { position: relative; border-radius: 30px; overflow: hidden; background: white; box-shadow: var(--shadow-md); }
.gallery__main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery__nav { position: absolute; top: 50%; width: 46px; height: 46px; transform: translateY(-50%); border: 0; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--navy); font-size: 2rem; line-height: 1; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery__nav--prev { left: 16px; }
.gallery__nav--next { right: 16px; }
.gallery__counter { position: absolute; right: 16px; bottom: 16px; padding: 6px 11px; border-radius: 999px; background: rgba(41,43,82,.82); color: white; font-size: .78rem; font-weight: 800; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 14px; }
.gallery__thumb { padding: 0; border: 3px solid transparent; border-radius: 16px; overflow: hidden; background: white; cursor: pointer; opacity: .65; transition: border-color .2s ease, opacity .2s ease; }
.gallery__thumb.active { border-color: var(--coral); opacity: 1; }
.gallery__thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.combo-detail-summary { padding-top: 8px; }
.combo-detail-summary h1 { margin: 16px 0 18px; font-size: clamp(2.7rem,5vw,4.6rem); line-height: .98; }
.combo-detail-summary__lead { margin: 0 0 26px; font-size: 1.15rem; }
.quick-info-grid { display: grid; gap: 12px; padding: 22px 0; border-block: 1px solid var(--border); }
.quick-info-grid > div { display: flex; gap: 12px; align-items: center; }
.quick-info-grid .icon { width: 24px; height: 24px; color: var(--teal); }
.quick-info-grid span { display: grid; line-height: 1.25; }
.quick-info-grid small { color: var(--muted); font-size: .75rem; }
.quick-info-grid strong { color: var(--navy); }
.combo-detail-price { display: grid; margin: 24px 0 20px; }
.combo-detail-price small { color: var(--muted); }
.combo-detail-price strong { color: var(--navy); font-family: 'Fredoka'; font-size: 1.7rem; }
.combo-detail-summary__help { margin: 13px 0 0; text-align: center; color: var(--muted); font-size: .87rem; }
.combo-content-section { background: white; }
.combo-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.content-block { padding: 34px; border-radius: 26px; background: var(--cream); border: 1px solid var(--border); }
.content-block--wide { grid-column: 1/-1; }
.content-block h2 { margin: 0 0 16px; font-size: 1.8rem; }
.content-block h3 { margin: 0 0 16px; display: flex; gap: 10px; align-items: center; font-size: 1.4rem; }
.content-block p { margin: 0; font-size: 1.06rem; }
.content-block--important { grid-column: 1/-1; background: #fff3c8; }
.content-block--important .icon { color: #a87500; }
.check-list, .bullet-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list .icon { width: 22px; height: 22px; padding: 3px; border-radius: 50%; color: white; background: var(--teal); margin-top: 2px; }
.bullet-list li { position: relative; padding-left: 22px; }
.bullet-list li::before { content: ''; position: absolute; left: 2px; top: .72em; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.related-section { background: var(--cream); }

/* Workshops */
.workshops-list-section { background: var(--cream); }
.workshops-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.workshop-card { border-radius: 28px; overflow: hidden; background: white; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.workshop-card__trigger { width: 100%; padding: 0; display: grid; grid-template-columns: .9fr 1.1fr; border: 0; text-align: left; background: transparent; cursor: pointer; }
.workshop-card__image { overflow: hidden; min-height: 315px; }
.workshop-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.workshop-card:hover img { transform: scale(1.045); }
.workshop-card__body { padding: 32px; display: flex; flex-direction: column; }
.workshop-card h3 { margin: 0 0 10px; font-size: 1.6rem; }
.workshop-card p { margin: 0 0 20px; }
.workshop-card__meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; margin-bottom: 22px; }
.workshop-card__meta span { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: .88rem; }
.workshop-card__meta .icon { color: var(--teal); }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--coral-dark); font-weight: 800; }
.text-link .icon { transition: transform .2s ease; }
.workshop-card:hover .text-link .icon { transform: translateX(4px); }
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px; visibility: hidden; opacity: 0; transition: opacity .22s ease, visibility .22s ease; }
.modal.open { visibility: visible; opacity: 1; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(32,34,66,.7); backdrop-filter: blur(8px); }
.modal__dialog { position: relative; z-index: 2; width: min(1040px, 100%); max-height: min(820px, calc(100vh - 48px)); overflow: auto; border-radius: 32px; background: var(--cream); box-shadow: var(--shadow-lg); }
.modal__close { position: absolute; z-index: 4; top: 16px; right: 16px; }
.workshop-modal-grid { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 620px; }
.workshop-modal-image img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.workshop-modal-content { padding: 58px 48px 42px; }
.workshop-modal-content h2 { margin: 10px 0 16px; font-size: 2.7rem; line-height: 1; }
.workshop-modal-lead { margin: 0 0 25px; font-size: 1.06rem; }
.workshop-modal-info { display: grid; gap: 10px; }
.workshop-modal-info > div { display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; border-radius: 14px; background: white; border: 1px solid var(--border); }
.workshop-modal-info .icon { color: var(--teal); margin-top: 3px; }
.workshop-modal-info span { display: grid; line-height: 1.3; }
.workshop-modal-info small { color: var(--muted); }
.workshop-modal-info strong { color: var(--navy); }
.workshop-modal-price { display: grid; margin: 22px 0 18px; }
.workshop-modal-price small { color: var(--muted); }
.workshop-modal-price strong { color: var(--navy); font-family: 'Fredoka'; font-size: 1.5rem; }

/* Legal */
.legal-section { background: white; }
.legal-layout { display: grid; grid-template-columns: 270px 1fr; gap: 70px; align-items: start; max-width: 1050px; }
.legal-sidebar { position: sticky; top: 120px; display: grid; gap: 12px; padding: 24px; border-radius: 20px; background: var(--cream); border: 1px solid var(--border); }
.legal-sidebar strong { color: var(--navy); font-family: 'Fredoka'; }
.legal-sidebar a { font-size: .9rem; }
.legal-sidebar a:hover { color: var(--coral-dark); }
.legal-content { min-width: 0; }
.legal-date { color: var(--muted); margin-bottom: 18px; }
.legal-warning { display: flex; gap: 14px; align-items: flex-start; padding: 20px; border-radius: 16px; background: #fff2bd; color: var(--navy); }
.legal-warning .icon { color: #9b6f00; width: 28px; height: 28px; }
.legal-warning p { margin: 0; }
.legal-content section { padding: 30px 0; border-bottom: 1px solid var(--border); scroll-margin-top: 120px; }
.legal-content h2 { margin: 0 0 12px; font-size: 1.7rem; }
.legal-content p { margin: 0; font-size: 1.04rem; }
.legal-content > .button { margin-top: 34px; }

/* 404 */
.not-found { min-height: 650px; display: grid; place-items: center; position: relative; overflow: hidden; background: linear-gradient(135deg,var(--cream),#ffeccf); }
.not-found__content { max-width: 750px; padding: 90px 24px; text-align: center; }
.not-found__number { display: block; font-family: 'Fredoka'; color: rgba(41,43,82,.1); font-size: clamp(8rem,18vw,14rem); font-weight: 700; line-height: .7; }
.not-found__kite { margin: -30px auto 25px; color: var(--coral); font-size: 82px; transform: rotate(45deg); }
.not-found h1 { margin: 0 0 16px; font-size: clamp(2.3rem,5vw,4rem); line-height: 1; }
.not-found p { margin: 0 0 28px; font-size: 1.1rem; }

@media (max-width: 1050px) {
  :root { --header-height: 80px; }
  .desktop-nav, .header-cta { display: none; }
  .site-header__inner { grid-template-columns: auto 1fr auto; }
  .menu-button { display: flex; grid-column: 3; }
  .brand { width: 64px; height: 64px; }
  .hero__grid { gap: 35px; }
  .hero__content h1 { font-size: clamp(2.8rem,5.8vw,4.2rem); }
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .services-grid .service-card:nth-child(4), .services-grid .service-card:nth-child(5) { transform: translateX(52%); }
  .services-grid .service-card:hover { transform: translateY(-8px); }
  .services-grid .service-card:nth-child(4):hover, .services-grid .service-card:nth-child(5):hover { transform: translate(52%,-8px); }
  .differentials-grid, .values-grid { grid-template-columns: repeat(2,1fr); }
  .combos-grid { grid-template-columns: repeat(2,1fr); }
  .combos-grid .combo-card:last-child { grid-column: 1/-1; max-width: 560px; width: 100%; justify-self: center; }
  .site-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .site-footer__grid > :last-child { grid-column: 2/4; }
  .workshops-grid { grid-template-columns: 1fr; max-width: 820px; margin-inline: auto; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 78px 0; }
  .hero { padding: 52px 0 100px; }
  .hero__grid, .about-preview, .story-grid, .combo-detail-grid, .faq-layout, .workshop-modal-grid, .legal-layout { grid-template-columns: 1fr; }
  .hero__content { text-align: center; }
  .hero__content > p { margin-inline: auto; }
  .hero__content .button-row { justify-content: center; }
  .hero__note { justify-content: center; }
  .hero__visual { margin-top: 28px; }
  .hero__image-wrap { margin-inline: auto; max-width: 600px; }
  .hero__badge--top { right: 5px; }
  .hero__badge--bottom { left: 5px; }
  .steps-grid { grid-template-columns: 1fr; max-width: 610px; margin-inline: auto; }
  .step-card__arrow { right: 50%; top: auto; bottom: -32px; transform: translateX(50%) rotate(90deg); }
  .about-preview { gap: 58px; }
  .about-preview__image { margin-inline: auto; }
  .about-preview__content { text-align: center; }
  .instagram-grid { grid-template-columns: repeat(2,1fr); }
  .faq-layout { gap: 38px; }
  .faq-layout__intro { position: static; text-align: center; }
  .story-grid { gap: 50px; }
  .story-image { max-width: 540px; margin-inline: auto; }
  .combo-detail-grid { gap: 42px; }
  .combo-detail-summary { max-width: 650px; }
  .workshop-modal-image img { min-height: auto; aspect-ratio: 16/9; }
  .workshop-modal-content { padding: 42px 30px 34px; }
  .legal-layout { gap: 28px; }
  .legal-sidebar { position: static; }
  .site-footer__grid { grid-template-columns: repeat(2,1fr); }
  .site-footer__grid > :last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  :root { --radius: 20px; --radius-lg: 28px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 66px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2 { font-size: 2.25rem; }
  .button-row { flex-direction: column; align-items: stretch; }
  .button-row .button { width: 100%; }
  .site-header { height: 72px; }
  .brand { width: 58px; height: 58px; }
  .hero { min-height: auto; padding-top: 48px; }
  .hero__content h1 { font-size: clamp(2.65rem,13vw,3.75rem); }
  .hero__content > p { font-size: 1.02rem; }
  .hero__image-wrap { padding: 9px; border-radius: 29px; transform: none; }
  .hero__image-wrap img { border-radius: 22px; }
  .hero__image-wrap::after { inset: 18px -12px -16px 18px; border-radius: 28px; }
  .hero__badge { font-size: .78rem; padding: 9px 11px; }
  .hero__badge--top { top: -12px; }
  .hero__badge--bottom { bottom: -14px; }
  .services-grid, .differentials-grid, .combos-grid, .testimonials-grid, .values-grid, .team-grid, .combo-content-grid, .combos-grid--two { grid-template-columns: 1fr; }
  .services-grid .service-card:nth-child(4), .services-grid .service-card:nth-child(5), .services-grid .service-card:nth-child(4):hover, .services-grid .service-card:nth-child(5):hover { transform: none; }
  .service-card { min-height: auto; display: grid; grid-template-columns: 74px 1fr; grid-template-areas: 'icon title' 'icon desc'; text-align: left; gap: 3px 18px; align-items: center; padding: 22px; }
  .service-card:hover { transform: none; }
  .service-card__icon { grid-area: icon; width: 74px; height: 74px; margin: 0; }
  .service-card__icon .icon { width: 38px; height: 38px; }
  .service-card h3 { grid-area: title; }
  .service-card p { grid-area: desc; }
  .combo-card, .combos-grid .combo-card:last-child { max-width: none; grid-column: auto; }
  .combo-card__footer { align-items: stretch; flex-direction: column; }
  .combo-card__footer .button { width: 100%; }
  .about-preview { gap: 48px; }
  .about-preview__shape { inset: 16px -12px -15px 14px; }
  .instagram-grid { gap: 8px; }
  .testimonial-card > p { min-height: auto; }
  .internal-hero { min-height: 300px; }
  .internal-hero h1 { font-size: 2.7rem; }
  .internal-hero p { font-size: 1rem; }
  .story-image__badge { left: 10px; bottom: 15px; }
  .team-card__image { aspect-ratio: 4/3; }
  .notice-card { margin-top: -22px; align-items: flex-start; }
  .breadcrumb { flex-wrap: wrap; }
  .combo-detail-hero { padding-top: 28px; }
  .combo-detail-summary h1 { font-size: 2.75rem; }
  .gallery__thumbs { gap: 7px; }
  .gallery__nav { width: 40px; height: 40px; }
  .content-block, .content-block--wide, .content-block--important { grid-column: auto; padding: 25px; }
  .workshop-card__trigger { grid-template-columns: 1fr; }
  .workshop-card__image { min-height: auto; aspect-ratio: 4/3; }
  .workshop-card__body { padding: 24px; }
  .modal { padding: 0; align-items: stretch; }
  .modal__dialog { width: 100%; height: 100%; max-height: none; border-radius: 0; }
  .workshop-modal-image img { aspect-ratio: 4/3; }
  .workshop-modal-content { padding: 34px 20px 100px; }
  .workshop-modal-content h2 { font-size: 2.25rem; }
  .workshop-modal-content .button { position: fixed; left: 16px; right: 16px; bottom: 16px; width: calc(100% - 32px); z-index: 5; }
  .cta-card { min-height: 390px; padding: 58px 22px; border-radius: 28px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 34px; padding-top: 58px; }
  .footer-bottom__inner { min-height: 100px; flex-direction: column; justify-content: center; text-align: center; }
  .whatsapp-float { width: 56px; height: 56px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
  .whatsapp-float .icon { width: 28px; height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
