:root {
  --yellow: #FFEB3B;
  --yellow-dark: #f2d600;
  --pink: #E91E63;
  --pink-light: #F8BBD0;
  --indigo: #5C6BC0;
  --indigo-dark: #3949ab;
  --wa: #25D366;
  --wa-dark: #1ebe5d;
  --white: #FFFFFF;
  --dark: #333333;
  --gray: #666666;
  --bg-soft: #fff9e6;
  --radius: 20px;
  --shadow: 0 12px 40px rgba(51, 51, 51, .12);
  --shadow-lg: 0 24px 60px rgba(92, 107, 192, .25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: "Baloo 2", "Poppins", sans-serif; line-height: 1.2; }

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

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

.container { width: min(1160px, 92%); margin-inline: auto; }
.container-narrow { width: min(860px, 92%); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--pink); color: var(--white);
  padding: 10px 18px; border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-align: center;
}
.btn svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }

.btn-whats { background: var(--wa); color: var(--white); box-shadow: 0 10px 24px rgba(37, 211, 102, .35); }
.btn-whats:hover { background: var(--wa-dark); box-shadow: 0 14px 30px rgba(37, 211, 102, .45); }

.btn-ghost { background: var(--yellow); color: var(--dark); box-shadow: 0 10px 24px rgba(255, 235, 59, .4); }
.btn-ghost:hover { background: var(--yellow-dark); }

.btn-lg { padding: 17px 34px; font-size: 1.15rem; }
.btn-xl { padding: 20px 40px; font-size: 1.3rem; }
.btn-sm { padding: 10px 20px; font-size: .95rem; }

/* ===== Header ===== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  background: var(--yellow);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .08);
  transition: transform .25s ease;
}
.header-inner { display: flex; align-items: center; gap: 24px; padding: 12px 0; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { font-size: 2rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: "Baloo 2", sans-serif; font-size: 1.35rem; color: var(--pink); }
.brand-text span { font-size: .82rem; color: var(--dark); font-weight: 600; letter-spacing: .4px; }

.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { font-weight: 600; font-size: .95rem; color: var(--dark); position: relative; padding: 4px 0; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 3px; border-radius: 3px; background: var(--pink);
  transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }

.header-cta { margin-left: 4px; flex-shrink: 0; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 26px; height: 3px; border-radius: 3px; background: var(--dark); transition: transform .2s ease, opacity .2s ease; }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--yellow) 0%, #fff3a8 55%, var(--pink-light) 100%);
  padding: 150px 0 90px;
  overflow: hidden;
}
.hero-deco {
  position: absolute; top: 110px; right: 6%;
  font-size: 5rem; opacity: .25; transform: rotate(12deg);
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(12deg); } 50% { transform: translateY(-16px) rotate(12deg); } }

.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }

.hero-badge {
  display: inline-block; background: var(--pink); color: var(--white);
  font-size: .82rem; font-weight: 600; padding: 8px 16px; border-radius: 999px;
  margin-bottom: 20px; box-shadow: 0 8px 20px rgba(233, 30, 99, .3);
}
.hero-title { font-size: clamp(2.1rem, 4.6vw, 3.5rem); color: var(--dark); margin-bottom: 18px; }
.hero-title em { font-style: normal; color: var(--pink); position: relative; }
.hero-title em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 12px;
  background: var(--yellow); z-index: -1; border-radius: 6px; transform: rotate(-1deg);
}
.hero-sub { font-size: 1.08rem; color: #444; max-width: 560px; margin-bottom: 28px; }
.hero-sub strong { color: var(--pink); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.hero-trust li { font-size: .9rem; font-weight: 600; color: var(--indigo-dark); }

.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid var(--white);
}
.hero-img-wrap img { width: 100%; height: 420px; object-fit: cover; }

.hero-card {
  position: absolute; background: var(--white); border-radius: 14px;
  display: flex; align-items: center; gap: 10px; padding: 10px 16px;
  box-shadow: var(--shadow); font-size: .82rem;
}
.hero-card strong { display: block; font-family: "Baloo 2", sans-serif; color: var(--dark); line-height: 1.15; }
.hero-card span { color: var(--gray); font-size: .76rem; }
.hc-emoji { font-size: 1.6rem; }
.hero-card-1 { top: -22px; right: -8px; }
.hero-card-2 { bottom: -22px; left: -8px; }

/* ===== Sections ===== */
.section { padding: 84px 0; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.kicker {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--pink); background: var(--pink-light);
  padding: 6px 16px; border-radius: 999px; margin-bottom: 14px;
}
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.section-sub { color: var(--gray); font-size: 1.02rem; }

.txt-pink { color: var(--pink); }
.txt-yellow { color: var(--yellow); }

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.service-card {
  background: var(--white); border: 2px solid var(--pink-light);
  border-radius: var(--radius); padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--pink); }
.service-icon { font-size: 2.6rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.45rem; color: var(--pink); margin-bottom: 12px; }
.service-card h3 em { font-style: normal; color: var(--indigo); }
.service-card p { color: var(--gray); font-size: .95rem; margin-bottom: 16px; flex-grow: 1; }
.service-card ul { list-style: none; margin-bottom: 22px; }
.service-card li { font-size: .9rem; padding-left: 24px; position: relative; margin-bottom: 8px; color: var(--dark); }
.service-card li::before { content: "✔"; position: absolute; left: 0; color: var(--wa); font-weight: 700; }
.service-card .btn { align-self: flex-start; }

/* ===== Gallery ===== */
.section-gallery { background: var(--bg-soft); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; cursor: zoom-in; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-wide { grid-column: span 2; }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .65));
  color: var(--white); font-weight: 600; font-size: .88rem;
  padding: 34px 16px 12px;
}

.gallery-cta {
  margin-top: 40px; background: var(--indigo); color: var(--white);
  border-radius: var(--radius); padding: 36px 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.gallery-cta p { font-family: "Baloo 2", sans-serif; font-size: 1.25rem; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(0, 0, 0, .9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  touch-action: pan-y;
}
.lightbox.open { opacity: 1; visibility: visible; }

.lightbox-figure {
  max-width: 92vw; max-height: 88vh;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin: 0; padding: 0;
}
.lightbox-img {
  max-width: 92vw; max-height: 80vh;
  border-radius: 10px; box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  object-fit: contain; background: #111;
}
.lightbox-caption {
  color: #eee; font-size: .95rem; font-weight: 600; text-align: center;
  font-family: "Baloo 2", sans-serif;
}
.lightbox-counter {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  color: #ddd; font-size: .85rem; letter-spacing: 1px; background: rgba(0, 0, 0, .45);
  padding: 4px 12px; border-radius: 999px;
}

.lightbox-btn {
  position: absolute; z-index: 2;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .35);
  color: var(--white); font-size: 1.6rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s ease, transform .2s ease;
}
.lightbox-btn:hover { background: rgba(255, 255, 255, .3); transform: scale(1.08); }

.lightbox-close { top: 18px; right: 18px; }
.lightbox-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 14px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.1); }

@media (max-width: 600px) {
  .lightbox-btn { width: 40px; height: 40px; font-size: 1.2rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ===== Differentials ===== */
.section-diff { background: linear-gradient(150deg, var(--indigo) 0%, var(--indigo-dark) 100%); color: var(--white); }
.section-diff .kicker { background: rgba(255, 235, 59, .18); color: var(--yellow); }
.section-diff .section-sub { color: #e3e7ff; }

.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.diff-card {
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius); padding: 28px 22px; text-align: center;
  backdrop-filter: blur(4px);
  transition: transform .2s ease, background .2s ease;
}
.diff-card:hover { transform: translateY(-6px); background: rgba(255, 255, 255, .16); }
.diff-icon { font-size: 2.4rem; margin-bottom: 12px; }
.diff-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.diff-card p { font-size: .88rem; color: #dfe3ff; }

/* ===== Info / area ===== */
.section-info { background: var(--bg-soft); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.info-list { list-style: none; margin: 26px 0 30px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.info-ico {
  width: 44px; height: 44px; border-radius: 12px; background: var(--yellow);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.info-list strong { display: block; font-family: "Baloo 2", sans-serif; color: var(--pink); }
.info-list span { color: var(--dark); font-size: .95rem; }

.info-map { border-radius: var(--radius); overflow: hidden; min-height: 380px; box-shadow: var(--shadow); border: 5px solid var(--white); }
.info-map iframe { width: 100%; height: 100%; min-height: 380px; display: block; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: var(--white); border: 2px solid var(--pink-light);
  border-radius: 16px; overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] { border-color: var(--pink); box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-family: "Baloo 2", sans-serif; font-size: 1.12rem; color: var(--dark);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-toggle::before, .faq-toggle::after {
  content: ""; position: absolute; background: var(--pink); border-radius: 3px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  transition: transform .2s ease;
}
.faq-toggle::before { width: 18px; height: 3px; }
.faq-toggle::after { width: 3px; height: 18px; }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-body { padding: 0 24px 22px; color: var(--gray); font-size: .96rem; }

/* ===== Final CTA ===== */
.section-final {
  background: linear-gradient(160deg, var(--yellow) 0%, #ffe082 55%, var(--pink-light) 100%);
}
.final-card {
  background: var(--white); border-radius: 28px; box-shadow: var(--shadow-lg);
  padding: 56px 40px; text-align: center;
}
.final-emoji { font-size: 3.4rem; display: inline-block; margin-bottom: 10px; animation: floaty2 3s ease-in-out infinite; }
@keyframes floaty2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.final-card .section-sub { max-width: 560px; margin-inline: auto; margin-bottom: 30px; }
.final-note { margin-top: 18px; font-weight: 600; color: var(--indigo-dark); }

/* ===== Footer ===== */
.footer { background: var(--dark); color: #cfcfcf; padding: 56px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 36px;
  padding-bottom: 40px;
}
.footer .brand-text strong { color: var(--yellow); }
.footer .brand-text span { color: #cfcfcf; }
.footer-brand p { font-size: .9rem; margin-top: 12px; }
.footer-col h4 {
  font-size: 1.05rem; color: var(--yellow); margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { font-size: .9rem; margin-bottom: 10px; color: #cfcfcf; }
.footer-col a { color: #cfcfcf; transition: color .2s ease; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid #4a4a4a; padding: 20px 0; font-size: .82rem; text-align: center; color: #999; }

/* ===== Floating WA ===== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--wa); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .5);
  transition: transform .2s ease;
}
.wa-float svg { width: 32px; height: 32px; fill: currentColor; }
.wa-float:hover { transform: scale(1.1); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed; inset: 64px 0 auto 0; background: var(--yellow);
    flex-direction: column; gap: 0; padding: 12px 6%;
    box-shadow: 0 14px 24px rgba(0, 0, 0, .12);
    transform: translateY(-140%); transition: transform .25s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid rgba(51, 51, 51, .12); }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .hero { padding-top: 120px; }
  .hero-actions .btn { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item-wide { grid-column: span 1; }
  .hero-card-1 { top: -16px; right: 4px; }
  .hero-card-2 { bottom: -16px; left: 4px; }
  .final-card { padding: 40px 22px; }
}

@media (max-width: 520px) {
  .diff-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}
