:root {
  --purple-950: #1f1147;
  --purple-800: #4a238f;
  --purple-650: #6d3bd2;
  --purple-450: #9467e8;
  --cyan-600: #0aa8c7;
  --cyan-300: #9ee8f2;
  --ink: #17142f;
  --muted: #615c79;
  --line: #e8def8;
  --surface: #fff;
  --surface-soft: #fbf8ff;
  --wash: #f4effc;
  --success: #25d366;
  --shadow: 0 16px 48px rgba(74, 35, 143, .12);
  --radius: 22px;
  --radius-sm: 14px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; min-width: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface-soft);
  line-height: 1.5;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.shell {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--purple-950);
  color: #fff;
}

.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(232, 222, 248, .72);
  backdrop-filter: blur(18px);
}

.header-grid {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 202px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav a,
.header-whatsapp,
.menu-button {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--purple-950);
  font-weight: 700;
  font-size: .92rem;
}

.nav a:hover,
.nav a:focus-visible,
.menu-button:hover {
  background: var(--wash);
}

.header-whatsapp {
  background: var(--success);
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .22);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--purple-800), var(--purple-650) 58%, var(--cyan-600));
  color: #fff;
  box-shadow: 0 16px 32px rgba(109, 59, 210, .24);
}

.button.secondary {
  background: #fff;
  color: var(--purple-800);
  border: 1px solid var(--line);
}

.button.small { min-height: 40px; padding: 10px 14px; font-size: .9rem; }
.button.full { width: 100%; }

.hero {
  background:
    linear-gradient(135deg, rgba(74, 35, 143, .07), rgba(10, 168, 199, .08)),
    radial-gradient(circle at 12% 20%, rgba(158, 232, 242, .28), transparent 30%),
    #fff;
  padding: 70px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--purple-650);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  margin-bottom: 18px;
  max-width: 740px;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.055em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  letter-spacing: -.02em;
}

.lead {
  max-width: 630px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 26px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin: 0;
}

.trust-strip div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .76);
}

.trust-strip dt {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
}

.trust-strip dd {
  margin: 2px 0 0;
  color: var(--purple-950);
  font-weight: 900;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 18px -12px -12px 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--cyan-300), var(--purple-450));
  opacity: .55;
}

.hero-media img {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border: 8px solid #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.notice-band {
  padding: 14px 0;
  background: var(--purple-950);
  color: #fff;
}

.notice-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  font-size: .94rem;
}

.notice-grid span { color: rgba(255, 255, 255, .78); }
.notice-grid a { color: var(--cyan-300); font-weight: 900; }

.section {
  padding: 74px 0;
}

.section.soft {
  background: #fff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .8fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 26px;
}

.split p,
.section-head p,
.social-head p,
.cta-card p {
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.service-list article,
.whatsapp-form,
.contact-cards article,
.social-aside,
.cta-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(74, 35, 143, .08);
}

.info-card { overflow: hidden; }
.info-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: var(--surface-soft);
}
.info-card h3,
.info-card p { padding-inline: 18px; }
.info-card h3 { padding-top: 18px; }
.info-card p { padding-bottom: 18px; color: var(--muted); }

.section-head {
  max-width: 760px;
  text-align: center;
  margin-bottom: 28px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-list article {
  min-height: 210px;
  padding: 22px;
}

.service-list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 14px;
  background: var(--wash);
  color: var(--purple-800);
  font-weight: 900;
}

.service-list p { color: var(--muted); margin-bottom: 0; }

.social-section {
  padding: 76px 0;
  background: linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
}

.social-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.social-head > div { max-width: 780px; }

.social-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 20px;
  align-items: start;
}

.post-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.post-card {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(68, 37, 117, .08);
}

.post-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
}

.post-card:hover img { transform: scale(1.015); }
.post-card:focus-visible { outline: 3px solid var(--cyan-500); outline-offset: 3px; }

.social-aside {
  position: sticky;
  top: 100px;
  padding: 20px;
}

.social-aside p { color: var(--muted); }
.social-aside .button + .button { margin-top: 10px; }

.mini-feed {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mini-feed a {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
}

.mini-feed img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  grid-row: span 2;
}

.mini-feed span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
}

.mini-feed strong {
  grid-column: 2;
  align-self: start;
  line-height: 1.18;
}

.embed-block {
  margin-top: 44px;
}

.embed-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.embed-title p { color: var(--muted); margin-bottom: 0; }

.instagram-embeds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.ig-placeholder {
  min-height: 470px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(74, 35, 143, .06);
}

.ig-placeholder blockquote,
.ig-placeholder iframe {
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
}

.cta-section { padding-top: 18px; }

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(22px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(109, 59, 210, .12), rgba(10, 168, 199, .1)),
    #fff;
}

.contact-section {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-cards article {
  padding: 18px;
}

.contact-cards p { color: var(--muted); margin-bottom: 4px; }
.contact-cards a { color: var(--purple-650); font-weight: 900; }

.whatsapp-form {
  padding: 22px;
}

.whatsapp-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--purple-950);
  font-weight: 800;
  font-size: .9rem;
}

.whatsapp-form input,
.whatsapp-form textarea,
.whatsapp-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--surface-soft);
}

.whatsapp-form input:focus,
.whatsapp-form textarea:focus,
.whatsapp-form select:focus {
  outline: 3px solid rgba(148, 103, 232, .18);
  border-color: var(--purple-450);
  background: #fff;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #f4effc;
  color: var(--purple-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 36px;
  align-items: start;
}

.footer-grid img {
  display: block;
  width: 230px;
  height: auto;
  max-width: 100%;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

.footer-grid nav {
  display: grid;
  gap: 8px;
}

.footer-grid strong,
.footer-grid a:hover { color: var(--purple-800); }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--success);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(37, 211, 102, .34);
}

@media (max-width: 1040px) {
  .hero-grid,
  .split,
  .social-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 520px;
    margin-inline: auto;
  }

  .cards-grid,
  .instagram-embeds {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .social-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 24px, 1160px); }

  .header-grid {
    min-height: 66px;
    grid-template-columns: auto auto;
  }

  .brand,
  .brand img { width: 144px; }

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

  .header-whatsapp {
    display: none;
  }

  .nav {
    grid-column: 1 / -1;
    display: none;
    padding: 6px 0 14px;
    justify-content: stretch;
    overflow-x: auto;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    flex: 0 0 auto;
    background: #fff;
    border: 1px solid var(--line);
  }

  .hero {
    padding: 38px 0 34px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-media::before {
    inset: 12px 0 -8px 12px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .notice-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .section,
  .social-section {
    padding: 52px 0;
  }

  .cards-grid,
  .post-gallery,
  .instagram-embeds,
  .service-list {
    grid-template-columns: 1fr;
  }

  .post-card {
    min-height: 380px;
  }

  .social-head,
  .embed-title,
  .cta-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-width: 48px;
    height: 48px;
    padding: 0 14px;
    font-size: .84rem;
  }
}

@media (max-width: 420px) {
  h1 { font-size: 2.2rem; }
  .hero-actions .button,
  .button.full {
    width: 100%;
  }
}
