:root {
  --radius: 1rem;
  --background: oklch(0.985 0.012 80);
  --foreground: oklch(0.36 0.06 40);
  --card: oklch(1 0 0);
  --primary: oklch(0.76 0.16 10);
  --primary-foreground: oklch(0.99 0 0);
  --muted-foreground: oklch(0.55 0.04 50);
  --border: oklch(0.92 0.02 60);
  --pink: oklch(0.78 0.16 5);
  --pink-soft: oklch(0.94 0.05 5);
  --lavender: oklch(0.74 0.13 305);
  --lavender-soft: oklch(0.93 0.05 305);
  --mint: oklch(0.78 0.11 160);
  --mint-soft: oklch(0.94 0.04 160);
  --sky: oklch(0.8 0.09 230);
  --sky-soft: oklch(0.95 0.03 230);
  --sunshine: oklch(0.88 0.13 95);
  --sunshine-soft: oklch(0.96 0.06 95);
  --gradient-hero: linear-gradient(180deg, oklch(0.96 0.04 60) 0%, oklch(0.95 0.05 5) 50%, oklch(0.94 0.06 305) 100%);
  --shadow-soft: 0 12px 40px -16px oklch(0.55 0.08 20 / 0.18);
  --shadow-card: 0 8px 24px -12px oklch(0.55 0.1 320 / 0.18);
  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-sans: "Nunito", ui-sans-serif, system-ui, sans-serif;
  --font-script: "Caveat", "Comic Sans MS", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "ss02";
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.lucide {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid color-mix(in oklch, var(--pink) 65%, white);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
}

.container {
  width: min(100% - 3rem, 80rem);
  margin-inline: auto;
}

.section {
  padding-block: 4.25rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in oklch, var(--background) 72%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-script);
  font-weight: 700;
}

.brand span,
.hero-brand span {
  background: linear-gradient(90deg, var(--pink), var(--lavender), var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand {
  font-size: 2rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--muted-foreground);
  font-size: .925rem;
  font-weight: 700;
}

.main-nav a {
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--foreground);
}

.menu-toggle,
.mobile-cta {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, .82fr);
  gap: 2.75rem;
  align-items: center;
  padding-block: 3.75rem 8rem;
}

.hero-brand {
  gap: .75rem;
  margin-bottom: 1.5rem;
  font-size: 3.25rem;
  line-height: 1;
}

.hero h1 {
  max-width: 44rem;
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  line-height: 1.08;
}

.hero h1 span,
.about h2 span,
.services h2 span {
  background: linear-gradient(120deg, var(--pink), var(--lavender));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p {
  max-width: 36rem;
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  font-size: 1.075rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 999px;
  padding: .75rem 1.5rem;
  font-size: .925rem;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, background .2s ease;
}

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

.button svg {
  width: 1rem;
  height: 1rem;
}

.button svg:not(.lucide) {
  fill: currentColor;
}

.button-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}

.button-secondary {
  background: color-mix(in oklch, white 70%, transparent);
  border: 1px solid color-mix(in oklch, var(--foreground) 15%, transparent);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  color: color-mix(in oklch, var(--foreground) 82%, transparent);
  font-size: .925rem;
  font-weight: 800;
}

.hero-tags li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.icon-bubble,
.service-icon,
.step-icon,
.heart-mark,
.contact-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.icon-bubble {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .9rem;
}

.icon-bubble svg {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-bubble svg:not(.lucide) {
  fill: currentColor;
}

.pink {
  background: var(--pink-soft);
  color: var(--pink);
}

.lavender {
  background: var(--lavender-soft);
  color: var(--lavender);
}

.sky {
  background: var(--sky-soft);
  color: var(--sky);
}

.mint {
  background: var(--mint-soft);
  color: var(--mint);
}

.sunshine {
  background: var(--sunshine-soft);
  color: var(--sunshine);
}

.hero-media {
  position: relative;
  width: min(100%, 31rem);
  justify-self: center;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -1.5rem;
  border-radius: 3rem;
  background: color-mix(in oklch, white 44%, transparent);
  filter: blur(26px);
}

.hero-media img {
  position: relative;
  width: 100%;
  max-height: 31rem;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid color-mix(in oklch, white 60%, transparent);
}

.wave {
  pointer-events: none;
  width: 100%;
  line-height: 0;
}

.wave svg {
  width: 100%;
  height: 6.25rem;
}

.wave-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.section-kicker {
  width: max-content;
  margin: 0 auto 2rem;
  border-radius: 999px;
  background: var(--lavender-soft);
  color: var(--lavender);
  padding: .45rem 1.25rem;
  font-size: .9rem;
  font-weight: 800;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(18rem, .9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

.portrait-card {
  position: relative;
}

.portrait-card > img:first-child {
  width: min(100%, 23.5rem);
  max-height: 23.5rem;
  margin-inline: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 16%;
  border-radius: 2rem;
  box-shadow: var(--shadow-card);
}

.floating-cloud {
  position: absolute;
  bottom: -1.5rem;
  left: 1rem;
  width: 8rem;
  pointer-events: none;
  user-select: none;
}

.about-copy h2,
.section-heading h2,
.contact-title h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.12;
}

.about-copy p {
  margin-top: 1rem;
  color: color-mix(in oklch, var(--foreground) 82%, transparent);
  line-height: 1.7;
}

.about-copy strong {
  color: var(--foreground);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 2rem;
}

.mini-card {
  display: flex;
  gap: .75rem;
  min-height: 6.25rem;
  padding: 1rem;
  border: 1px solid color-mix(in oklch, var(--border) 55%, transparent);
  border-radius: 1rem;
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.mini-card h3 {
  font-family: var(--font-sans);
  font-size: .92rem;
  font-weight: 900;
}

.mini-card p {
  margin-top: .25rem;
  color: var(--muted-foreground);
  font-size: .78rem;
  line-height: 1.35;
}

.services {
  position: relative;
}

.services-band {
  margin-top: -1px;
  padding-block: 2.5rem 3.5rem;
  background: var(--lavender-soft);
}

.section-heading {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  margin-top: 1rem;
  color: color-mix(in oklch, var(--foreground) 74%, transparent);
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border: 1px solid color-mix(in oklch, white 65%, transparent);
  border-radius: 1.5rem;
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.service-icon,
.step-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
}

.service-icon svg,
.step-icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.service-icon svg:not(.lucide),
.step-icon svg:not(.lucide) {
  fill: currentColor;
}

.service-card h3 {
  margin-top: 1.25rem;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 900;
  text-align: center;
}

.service-card p {
  margin-top: .75rem;
  color: color-mix(in oklch, var(--foreground) 75%, transparent);
  font-size: .92rem;
  line-height: 1.65;
  text-align: center;
}

.service-card ul {
  margin: 1.25rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
  list-style: none;
  color: color-mix(in oklch, var(--foreground) 80%, transparent);
  font-size: .9rem;
  line-height: 1.7;
  text-align: center;
}

.service-card li::before {
  content: "· ";
}

.service-note {
  margin-top: 2.5rem;
  color: color-mix(in oklch, var(--foreground) 70%, transparent);
  font-size: .925rem;
  text-align: center;
}

.service-note a {
  color: var(--pink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: .25rem;
}

.process {
  position: relative;
  overflow: hidden;
}

.process-blob {
  position: absolute;
  top: 3rem;
  right: 2rem;
  width: 8rem;
  pointer-events: none;
  user-select: none;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.process-step {
  min-width: 0;
}

.step-icon {
  position: relative;
}

.step-icon b {
  position: absolute;
  top: -.8rem;
  right: -.7rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
}

.process-step h3 {
  margin-top: 1.25rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 900;
}

.process-step p {
  margin-top: .5rem;
  color: color-mix(in oklch, var(--foreground) 70%, transparent);
  font-size: .9rem;
  line-height: 1.65;
}

.process-note {
  margin-top: 3rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
  border-radius: 1rem;
  background: var(--card);
  color: color-mix(in oklch, var(--foreground) 75%, transparent);
  font-size: .925rem;
  line-height: 1.6;
  text-align: center;
}

.process-note strong {
  color: var(--foreground);
}

.contact {
  padding-top: .5rem;
}

.contact-title {
  display: flex;
  align-items: end;
  gap: .75rem;
  margin-bottom: 2.5rem;
}

.contact-title img {
  width: 6rem;
  margin-bottom: -.5rem;
}

.contact-intro {
  max-width: 28rem;
  color: color-mix(in oklch, var(--foreground) 75%, transparent);
  line-height: 1.65;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list a,
.contact-list div {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: opacity .2s ease;
}

.contact-list a:hover {
  opacity: .8;
}

.contact-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-icon svg:not(.lucide) {
  fill: currentColor;
}

.contact-icon.whatsapp {
  background: #e0f2f1;
  color: #25d366;
}

.contact-list strong,
.contact-list small,
.contact-list b {
  display: block;
}

.contact-list strong {
  font-size: .92rem;
}

.contact-list small {
  color: var(--muted-foreground);
  font-size: .8rem;
}

.contact-list b {
  margin-top: .15rem;
  color: var(--pink);
  font-size: .9rem;
}

.contact-card {
  padding: 2.5rem;
  border: 2px solid color-mix(in oklch, var(--pink) 30%, transparent);
  border-radius: 2rem;
  background: color-mix(in oklch, var(--pink-soft) 40%, transparent);
  text-align: center;
}

.heart-mark {
  width: 4rem;
  height: 4rem;
  margin-inline: auto;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--pink);
  box-shadow: var(--shadow-card);
}

.heart-mark svg {
  width: 1.75rem;
  height: 1.75rem;
}

.heart-mark svg:not(.lucide) {
  fill: currentColor;
}

.contact-card h3 {
  margin-top: 1.25rem;
  font-size: 1.6rem;
}

.contact-card p {
  max-width: 24rem;
  margin: .75rem auto 0;
  color: color-mix(in oklch, var(--foreground) 75%, transparent);
  font-size: .925rem;
  line-height: 1.65;
}

.contact-card .button {
  margin-top: 1.5rem;
}

.contact-card small {
  display: block;
  margin-top: 1rem;
  color: var(--muted-foreground);
}

.site-footer {
  background: var(--pink);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 2.5rem;
  padding-block: 3.5rem;
}

.site-footer h2 {
  font-family: var(--font-script);
  font-size: 2rem;
}

.site-footer h3 {
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 900;
}

.site-footer p,
.site-footer a {
  color: color-mix(in oklch, white 86%, transparent);
  font-size: .9rem;
  line-height: 1.65;
}

.site-footer nav a {
  display: block;
  margin-top: .5rem;
}

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in oklch, white 15%, transparent);
  color: white;
  font-weight: 900;
}

.footer-social svg {
  width: 1.1rem;
  height: 1.1rem;
}

.footer-social svg:not(.lucide) {
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid color-mix(in oklch, white 20%, transparent);
}

.footer-bottom .container {
  padding-block: 1.25rem;
  color: color-mix(in oklch, white 80%, transparent);
  font-size: .8rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 50;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: white;
  box-shadow: 0 14px 36px -14px rgba(0, 0, 0, .45);
}

.whatsapp-float span {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #25d366;
  opacity: .28;
  animation: pulse 1.8s ease-out infinite;
}

.whatsapp-float svg {
  position: relative;
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
}

@keyframes pulse {
  to {
    transform: scale(1.7);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-block: 3rem 7rem;
  }

  .hero-media {
    width: min(100%, 26rem);
  }

  .portrait-card > img:first-child {
    width: min(100%, 22rem);
  }

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

  .process-blob {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 2rem, 80rem);
  }

  .section {
    padding-block: 3.25rem;
  }

  .header-inner {
    min-height: 4rem;
    gap: .6rem;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
    font-size: 1.65rem;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: color-mix(in oklch, var(--background) 96%, white);
    box-shadow: var(--shadow-card);
  }

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

  .main-nav a {
    padding: .8rem 1rem;
    border-radius: .75rem;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    flex: 0 0 auto;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in oklch, var(--pink) 24%, transparent);
    border-radius: .95rem;
    background: color-mix(in oklch, white 72%, var(--pink-soft));
    color: var(--pink);
    box-shadow: 0 8px 20px -16px color-mix(in oklch, var(--pink) 55%, black);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
  }

  .menu-toggle span:not(.sr-only) {
    position: absolute;
    left: 50%;
    width: 1.15rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: translateX(-50%);
    transition: top .2s ease, opacity .15s ease, transform .2s ease;
  }

  .menu-toggle span:nth-of-type(2) {
    top: .88rem;
  }

  .menu-toggle span:nth-of-type(3) {
    top: 1.32rem;
  }

  .menu-toggle span:nth-of-type(4) {
    top: 1.76rem;
  }

  .menu-toggle[aria-expanded="true"] {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    top: 1.32rem;
    transform: translateX(-50%) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
    top: 1.32rem;
    transform: translateX(-50%) rotate(-45deg);
  }

  .mobile-cta {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 2.45rem;
    border-radius: 999px;
    background: var(--primary);
    color: white;
    padding-inline: 1rem;
    font-size: .8rem;
    font-weight: 900;
    box-shadow: var(--shadow-soft);
  }

  .hero-grid {
    gap: 2.25rem;
    padding-block: 2.5rem 6.25rem;
  }

  .hero-media {
    width: min(100%, 21rem);
  }

  .hero-media img {
    border-radius: 1.75rem;
  }

  .hero-brand {
    font-size: 2.7rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-actions {
    display: grid;
    gap: .8rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .portrait-card > img:first-child {
    width: min(100%, 19rem);
    max-height: 19rem;
    border-radius: 1.5rem;
  }

  .wave svg {
    height: 4.75rem;
  }

  .values-grid,
  .service-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card h3,
  .service-card p,
  .service-card ul {
    text-align: left;
  }

  .floating-cloud {
    left: 0;
    width: 6rem;
  }

  .contact-card {
    padding: 2rem 1.25rem;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }
}

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