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

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

:root {
  --rosa: #eb008b;
  --rosa-dark: #c4006f;
  --rosa-light: #fce4f3;
  --verde: #a5cd38;
  --verde-dark: #7fa228;
  --verde-light: #edf6d0;
  --roxo: #7B2D8B;
  --roxo-dark: #5e1f6b;
  --roxo-light: #f0e5f4;
  --branco: #fff;
  --cinza-bg: #fafafa;
  --texto: #2a1030;
  --texto-mid: #6b4f7a;
  --radius: 18px;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cinza-bg);
  color: var(--texto);
  line-height: 1.6
}

/* ── NAV ── */
nav {
  background: var(--branco);
  padding: .75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--verde-light);
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-logo svg {
  height: 56px;
  width: auto;
  display: block
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none
}

.nav-links a {
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
  color: var(--texto-mid);
  transition: color .2s
}

.nav-links a:hover {
  color: var(--rosa)
}

.btn-nav {
  background: var(--rosa);
  color: var(--branco) !important;
  padding: .45rem 1.25rem;
  border-radius: 50px;
  font-size: .85rem !important;
  transition: background .2s
}

.btn-nav:hover {
  background: var(--rosa-dark) !important
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--roxo);
  border-radius: 2px;
  transition: transform .25s, opacity .25s
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* mobile menu drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--branco);
  border-top: 1px solid var(--verde-light);
  position: sticky;
  top: 0;
  z-index: 190;
}

.nav-drawer.open {
  display: flex
}

.nav-drawer a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--texto-mid);
  padding: .85rem 2rem;
  border-bottom: 1px solid var(--verde-light);
  transition: background .15s, color .15s;
}

.nav-drawer a:last-child {
  border-bottom: none
}

.nav-drawer a:hover {
  background: var(--rosa-light);
  color: var(--rosa)
}

.nav-drawer .btn-nav-drawer {
  background: var(--rosa);
  color: var(--branco) !important;
  margin: 1rem 2rem 1.25rem;
  border-radius: 50px;
  text-align: center;
  border-bottom: none;
}

.nav-drawer .btn-nav-drawer:hover {
  background: var(--rosa-dark) !important
}

@media (max-width: 768px) {
  .nav-links {
    display: none
  }

  .nav-toggle {
    display: flex
  }
}

@media (max-width: 480px) {
  nav {
    padding: .65rem 1.25rem
  }
}

/* ── HERO ── */
.hero {
  background: var(--roxo);
  padding: 5rem 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(165, 205, 56, .18);
  border: 1px solid var(--verde);
  color: var(--verde);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--branco);
  line-height: 1.15;
  margin-bottom: 1.2rem
}

.hero h1 span {
  color: var(--verde)
}

.hero h1 em {
  font-style: italic;
  color: var(--rosa)
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .78);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.btn-rosa {
  background: var(--rosa);
  color: var(--branco);
  border: none;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: background .2s, transform .15s;
  text-decoration: none;
  display: inline-block
}

.btn-rosa:hover {
  background: var(--rosa-dark);
  transform: translateY(-2px)
}

.btn-verde-outline {
  background: transparent;
  color: var(--verde);
  border: 2px solid var(--verde);
  padding: .85rem 2rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: all .2s;
  text-decoration: none;
  display: inline-block
}

.btn-verde-outline:hover {
  background: var(--verde);
  color: var(--branco)
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative
}

.hero-blob {
  width: 360px;
  height: 380px;
  background: rgba(255, 255, 255, .08);
  border: 2px solid rgba(165, 205, 56, .3);
  border-radius: 70% 30% 60% 40% / 50% 60% 40% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.hero-blob-inner {
  font-size: 7rem;
  opacity: .3;
  user-select: none
}

.hero-pill {
  position: absolute;
  bottom: 28px;
  right: 0;
  background: var(--branco);
  border-radius: 14px;
  padding: .7rem 1.1rem;
  font-size: .82rem;
  font-weight: 800;
  color: var(--roxo);
  display: flex;
  align-items: center;
  gap: .5rem;
  min-width: 160px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2)
}

.pill-dot {
  width: 9px;
  height: 9px;
  background: var(--verde);
  border-radius: 50%;
  flex-shrink: 0
}

.hero-pill2 {
  position: absolute;
  top: 10px;
  left: 35%;
  transform: translateX(-50%);
  background: var(--rosa);
  border-radius: 14px;
  padding: .7rem 1.1rem;
  font-size: .82rem;
  font-weight: 800;
  color: var(--branco);
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 20px rgba(235, 0, 139, .3)
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 3.5rem 2rem 3rem;
    text-align: center
  }

  .hero p {
    margin-left: auto;
    margin-right: auto
  }

  .hero-ctas {
    justify-content: center
  }

  .hero-visual {
    display: none
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2.5rem 1.25rem 2.5rem
  }

  .hero h1 {
    font-size: 2.2rem
  }
}

/* ── STATS ── */
.stats {
  background: var(--verde);
  padding: 2rem 3rem
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem
}

.stat-item {
  text-align: center;
  color: var(--branco)
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: .25rem
}

.stat-label {
  font-size: .85rem;
  opacity: .9;
  font-weight: 700
}

@media (max-width: 480px) {
  .stats {
    padding: 1.75rem 1.25rem
  }

  .stat-num {
    font-size: 1.8rem
  }
}

/* ── SECTIONS ── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 3rem
}

@media (max-width: 900px) {
  .section {
    padding: 4rem 2rem
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3rem 1.25rem
  }
}

.tag-rosa {
  display: inline-block;
  background: var(--rosa-light);
  color: var(--rosa-dark);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .75rem
}

.tag-roxo {
  display: inline-block;
  background: rgba(255, 255, 255, .15);
  color: var(--verde);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .75rem
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--roxo);
  margin-bottom: .75rem;
  line-height: 1.2
}

.section-title span {
  color: var(--rosa)
}

.section-sub {
  font-size: 1rem;
  color: var(--texto-mid);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 3rem
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem
  }
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem
}

.service-card {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s
}

.service-card:hover {
  border-color: var(--rosa);
  transform: translateY(-4px)
}

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem
}

.ic-verde {
  background: var(--verde-light)
}

.ic-rosa {
  background: var(--rosa-light)
}

.ic-roxo {
  background: var(--roxo-light)
}

.svc-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--roxo);
  margin-bottom: .5rem
}

.svc-desc {
  font-size: .88rem;
  color: var(--texto-mid);
  line-height: 1.75;
  margin-bottom: 1.1rem
}

.svc-badge {
  display: inline-block;
  background: var(--verde-light);
  color: var(--verde-dark);
  font-size: .78rem;
  font-weight: 800;
  padding: .25rem .75rem;
  border-radius: 50px
}

.gato-banner {
  background: var(--roxo);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem
}

.gato-banner img {
  width: 14rem;
  height: auto;
  flex-shrink: 0;
  border-radius: 8px
}

@media (max-width: 600px) {
  .gato-banner {
    justify-content: center;
    text-align: center
  }

  .gato-banner img {
    width: 100%;
    max-width: 100%
  }
}

.gato-icon {
  font-size: 3.5rem;
  flex-shrink: 0
}

.gato-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--branco);
  margin-bottom: .4rem
}

.gato-text p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .8);
  max-width: 500px;
  line-height: 1.7
}

/* ── WHY ── */
.why-wrap {
  background: var(--roxo);
  padding: 5rem 3rem
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center
}

.why-left .section-title {
  color: var(--branco)
}

.why-left .section-title span {
  color: var(--verde)
}

.why-left .section-sub {
  color: rgba(255, 255, 255, .65)
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start
}

.why-check {
  width: 30px;
  height: 30px;
  background: var(--rosa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .8rem;
  color: var(--branco);
  font-weight: 800;
  margin-top: 2px
}

.why-item-text strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: var(--branco);
  margin-bottom: .1rem
}

.why-item-text span {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.why-card {
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  padding: 1.4rem
}

.why-card.accent {
  border-color: var(--verde);
  background: rgba(165, 205, 56, .12)
}

.why-card-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--verde);
  margin-bottom: .25rem
}

.why-card-label {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6)
}

@media (max-width: 900px) {
  .why-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  .why-wrap {
    padding: 4rem 2rem
  }
}

@media (max-width: 480px) {
  .why-wrap {
    padding: 3rem 1.25rem
  }

  .why-cards {
    grid-template-columns: 1fr
  }
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem
}

.testi-card {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1.5px solid var(--roxo-light)
}

.stars {
  color: var(--rosa);
  font-size: .95rem;
  margin-bottom: .75rem;
  letter-spacing: 2px
}

.testi-text {
  font-size: .9rem;
  color: var(--texto-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem
}

.av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .82rem;
  color: var(--branco);
  flex-shrink: 0
}

.av1 {
  background: var(--rosa)
}

.av2 {
  background: var(--roxo)
}

.av3 {
  background: var(--verde-dark)
}

.testi-name {
  font-weight: 800;
  font-size: .88rem;
  color: var(--texto)
}

.testi-pet {
  font-size: .8rem;
  color: var(--texto-mid)
}

/* ── CONTATO ── */
.contact-wrap {
  background: var(--rosa-light);
  padding: 4rem 3rem
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center
}

.contact-inner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--roxo);
  margin-bottom: 1rem;
  line-height: 1.2
}

.contact-inner h2 span {
  color: var(--rosa)
}

.contact-inner p {
  color: var(--texto-mid);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 2rem
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem
}

.contact-card {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1.5px solid rgba(123, 45, 139, .15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-align: center
}

.c-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0
}

.c-verde {
  background: var(--verde);
  color: var(--branco)
}

.c-rosa {
  background: var(--rosa);
  color: var(--branco)
}

.c-roxo {
  background: var(--roxo);
  color: var(--branco)
}

.contact-card-label {
  font-size: .75rem;
  font-weight: 800;
  color: var(--texto-mid);
  text-transform: uppercase;
  letter-spacing: 1px
}

.contact-card-value {
  font-size: .9rem;
  font-weight: 700;
  color: var(--texto)
}

@media (max-width: 480px) {
  .contact-wrap {
    padding: 3rem 1.25rem
  }

  .contact-cards {
    grid-template-columns: 1fr
  }
}

/* ── CTA FINAL ── */
.cta-final {
  background: var(--verde-dark);
  padding: 5rem 3rem;
  text-align: center
}

.cta-final h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--branco);
  margin-bottom: 1rem;
  line-height: 1.2
}

.cta-final p {
  color: rgba(255, 255, 255, .85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto
}

.btn-white {
  background: var(--branco);
  color: var(--verde-dark);
  border: none;
  padding: .9rem 2.25rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: transform .15s;
  text-decoration: none;
  display: inline-block;
  margin: .35rem
}

.btn-white:hover {
  transform: translateY(-2px)
}

.btn-wpp {
  background: var(--roxo);
  color: var(--branco) !important
}

@media (max-width: 480px) {
  .cta-final {
    padding: 3rem 1.25rem
  }

  .cta-final h2 {
    font-size: 1.9rem
  }
}

/* ── FOOTER ── */
footer {
  background: var(--roxo-dark);
  padding: 2.5rem 2rem;
  text-align: center
}

footer p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  margin-top: .3rem
}
