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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: #f6efe3;
  color: #2c3833;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #c9358c;
  text-decoration: none;
}

a:hover {
  color: #a52872;
}

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

::selection {
  background: #f3b8dd;
  color: #2c3833;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(-2deg); }
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.display {
  font-family: 'Baloo 2', sans-serif;
}

/* NAV */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 239, 227, 0.9);
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2c3833;
}

.nav-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e460b9;
}

.nav-name {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: #4a695f;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-link {
  font-weight: 700;
  color: #4a695f;
  font-size: 15px;
}

.btn {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  display: inline-block;
}

.btn-primary {
  font-size: 15px;
  background: #e460b9;
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 0 #c9358c;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0 70px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eaf1ed;
  color: #4a695f;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  border: 2px dashed #9ab5aa;
}

.hero h1 {
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin: 22px 0 0;
  color: #37524a;
}

.hero h1 .accent {
  color: #e460b9;
}

.hero p {
  font-size: 19px;
  line-height: 1.6;
  color: #55635d;
  margin: 22px 0 0;
  max-width: 520px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn-large {
  font-size: 17px;
  /* asymmetric vertical padding nudges the label down so it sits optically
     centred against the raised box-shadow base (and Baloo 2's high glyphs) */
  padding: 21px 32px 11px;
  border-radius: 999px;
}

.btn-large.btn-primary {
  box-shadow: 0 7px 0 #c9358c;
}

.btn-secondary {
  background: #fff;
  color: #4a695f;
  box-shadow: 0 7px 0 #cdd8d2;
  border: 2px solid #e2e9e4;
}

.hero-media {
  position: relative;
}

.hero-photo {
  border-radius: 42% 58% 56% 44% / 48% 42% 58% 52%;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 24px 50px rgba(74, 105, 95, 0.28);
  aspect-ratio: 1 / 1;
}

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

.sticker {
  font-weight: 600;
  font-size: 15px;
  padding: 12px 18px;
  border-radius: 18px;
  position: absolute;
}

.sticker-1 {
  top: -18px;
  left: -18px;
  background: #648b80;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  animation: floaty 5s ease-in-out infinite;
}

.sticker-2 {
  bottom: -16px;
  right: -10px;
  background: #fff;
  color: #c9358c;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transform: rotate(4deg);
}

/* STATS */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 90px;
}

.stat {
  border-radius: 26px;
  padding: 26px 24px;
  text-align: center;
}

.stat-number {
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
}

.stat-label {
  font-weight: 700;
  font-size: 15px;
  margin-top: 8px;
}

.stat-sage {
  background: #648b80;
  color: #fff;
}

.stat-sage .stat-label {
  opacity: 0.9;
}

.stat-fuchsia {
  background: #e460b9;
  color: #fff;
}

.stat-fuchsia .stat-label {
  opacity: 0.95;
}

.stat-outline {
  background: #fff;
  color: #4a695f;
  border: 2px solid #e6ede8;
}

.stat-outline .stat-number {
  color: #648b80;
}

/* SECTION HEADINGS */

.eyebrow {
  color: #e460b9;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.5px;
}

.section-title {
  font-weight: 700;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -1px;
  margin: 10px 0 20px;
  color: #37524a;
}

/* O MNIE */

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 100px;
}

.about-media {
  position: relative;
}

.about-photo {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 20px 44px rgba(74, 105, 95, 0.25);
}

.about-photo-small {
  position: absolute;
  bottom: -22px;
  right: -18px;
  background: #fff;
  padding: 8px;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  transform: rotate(-5deg);
  width: 130px;
}

.about-photo-small img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about p {
  font-size: 17px;
  line-height: 1.7;
  color: #55635d;
  font-weight: 500;
  margin-bottom: 16px;
}

.about p:last-of-type {
  margin-bottom: 26px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #4a695f;
}

.about-list .badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-sage {
  background: #eaf1ed;
}

.badge-fuchsia {
  background: #fbe3f2;
}

/* OFERTA */

.offer {
  margin-bottom: 100px;
}

.offer-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.offer-header .section-title {
  margin-bottom: 14px;
}

.offer-header p {
  font-size: 17px;
  line-height: 1.6;
  color: #55635d;
  font-weight: 500;
}

.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  border-radius: 28px;
  padding: 34px 32px;
  border: 2px solid;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card.white {
  background: #ffffff;
  border-color: #e6ede8;
}

.service-card.pink {
  background: #fbf1f8;
  border-color: #f3d3e9;
}

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.service-icon.sage {
  background: #eaf1ed;
}

.service-icon.fuchsia {
  background: #fbe3f2;
}

.service-card h3 {
  font-weight: 600;
  font-size: 24px;
  color: #37524a;
  margin-top: 6px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #55635d;
  font-weight: 500;
}

.service-link {
  margin-top: auto;
  padding-top: 14px;
  font-weight: 600;
  font-size: 15px;
  color: #c9358c;
}

/* CTA */

.cta {
  background: #648b80;
  border-radius: 40px;
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-paw {
  position: absolute;
  font-size: 120px;
  opacity: 0.12;
}

.cta-paw-1 {
  top: -30px;
  right: -20px;
}

.cta-paw-2 {
  bottom: -40px;
  left: -10px;
}

.cta-tag {
  display: inline-block;
  background: #e460b9;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  position: relative;
}

.cta h2 {
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: #fff;
  margin: 20px auto 16px;
  max-width: 640px;
  position: relative;
}

.cta > p {
  font-size: 18px;
  line-height: 1.6;
  color: #e6efeb;
  font-weight: 500;
  max-width: 520px;
  margin: 0 auto 32px;
  position: relative;
}

.btn-cta {
  font-size: 18px;
  background: #fff;
  color: #c9358c;
  padding: 18px 40px;
  border-radius: 999px;
  box-shadow: 0 8px 0 #d8c9b3;
  position: relative;
}

.cta > p.cta-email {
  font-size: 14px;
  color: #cfe0da;
  margin-top: 30px;
  font-weight: 600;
  position: relative;
}

.cta-email a {
  color: #fff;
  text-decoration: underline;
}

/* FOOTER */

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0 50px;
  flex-wrap: wrap;
  border-top: 2px dashed #cdd8d2;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e460b9;
}

.footer-name {
  font-weight: 700;
  font-size: 18px;
  color: #4a695f;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-weight: 700;
  color: #4a695f;
  font-size: 15px;
}

.footer-links a {
  color: #4a695f;
}

.footer-copy {
  font-size: 14px;
  color: #7c8a84;
  font-weight: 600;
}

/* RESPONSIVE */

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

  .hero-media,
  .about-media {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav-links {
    gap: 16px;
  }

  .hero p {
    max-width: none;
  }
}
