:root {
  --pink: #e91e63;          /* pink mais profissional */
  --pink-soft: #fce4ec;     /* variação clara para cards/pills */
  --pink-soft-2: #fff5fa;   /* variação muito suave para fundos */
  --green: #00c853;
  --green-soft: #e6f9f0;
  --grey-bg: #f6f6f6;
  --text-dark: #111111;
  --text-muted: #6f6f6f;
  --white: #ffffff;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.06);
  --radius-lg: 24px;
  --font-main: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

/* RESET */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--white);
}

/* LAYOUT BASE */

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 80px 0;
  text-align: center;
}

.section-grey {
  background-color: var(--grey-bg);
}

.section-softpink {
  background: linear-gradient(180deg, #ffffff 0%, var(--pink-soft-2) 100%);
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--pink);
}

.section-subtitle {
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-title-left {
  text-align: left;
}

.section-subtitle-left {
  text-align: left;
  margin-left: 0;
}

/* HEADER */

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  background-color: var(--white);
  z-index: 20;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo img {
  display: block;
  height: 50px;
}

/* nav desktop */
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* links mais minimalistas */
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #555555;
}

.nav-link:hover {
  color: var(--pink);
  opacity: 1;
}

/* botão do cabeçalho mais leve também */
.nav-link-contact {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid var(--pink);
  color: var(--pink);
  background-color: transparent;
}

.nav-link-contact:hover {
  background-color: var(--pink);
  color: var(--white);
}

/* BOTÕES */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 28px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease,
    background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-whatsapp {
  background-color: var(--green);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(0, 200, 83, 0.4);
}

.btn-whatsapp-outline {
  background-color: transparent;
  color: var(--green);
  border: 1px solid var(--green);
  box-shadow: none;
}

.btn-whatsapp:hover,
.btn-whatsapp-outline:hover,
.btn-pink:hover,
.btn-light-outline:hover,
.btn-instagram:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp:active,
.btn-whatsapp-outline:active,
.btn-pink:active,
.btn-light-outline:active,
.btn-instagram:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.btn-pink {
  background-color: var(--pink);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(233, 30, 99, 0.4);
}

.btn-block {
  width: 100%;
}

.btn-whatsapp-icon img {
  display: block;
  width: 18px;
  height: 18px;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}

/* overlay fixa com luz rosa, sem movimento */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 18% 12%,
      rgba(233, 30, 99, 0.4),
      rgba(0, 0, 0, 0.55)
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  margin-top: 80px;        /* compensa o header fixo */
  padding-bottom: 100px;
}

.hero-title {
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.08;
  color: var(--white);
}

.hero-subtitle-name {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-line {
  display: block;
}

.hero-highlight {
  color: var(--pink);
}

.btn-whatsapp-hero {
  margin-top: 34px;
}

.section-cta {
  margin-top: 40px;
}

/* PILLS / LISTAS */

.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
  max-width: 920px;
  margin: 0 auto;
}

.pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  text-align: left;
  justify-content: flex-start;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pill-pink {
  background-color: var(--pink-soft);
}

.pill-green {
  background-color: var(--green-soft);
}

.pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  font-size: 13px;
  flex-shrink: 0;
}

.pill-icon-green {
  background-color: var(--green);
  color: var(--white);
}

.pill-icon-white {
  background-color: var(--white);
  color: var(--green);
  border: 1px solid rgba(0, 200, 83, 0.18);
}

.pill-text {
  color: #333333;
}

/* BADGE */

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  border-radius: 999px;
  background-color: #e6f9f0;
  color: #00aa54;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* METODOLOGIA */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.step-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 18px 26px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.step-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  margin: 0 auto 10px;
  background: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.step-icon-circle img {
  width: 140%;
  height: 140%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.step-title {
  margin-top: 10px;
  margin-bottom: 6px;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.step-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* INCLUÍDO */

.section-incluido {
  background: radial-gradient(circle at center, #e9fdf2 0, #ffffff 55%);
}

.incluido-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.section-incluido .section-title,
.section-incluido .section-subtitle {
  text-align: left;
  margin-left: 0;
}

.list-feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-cta-left {
  text-align: left;
  margin-top: 32px;
}

.incluido-photo-wrapper {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.incluido-photo-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

/* APP (se for usar depois) */

.badge-green {
  display: inline-flex;
  padding: 6px 18px;
  border-radius: 999px;
  background-color: var(--green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
}

.section-app .badge-green {
  margin-bottom: 16px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

.app-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.app-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background-color: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--pink);
  margin-bottom: 12px;
}

.app-title {
  font-size: 0.98rem;
}

/* FORMATOS */

.section-format-intro {
  padding-bottom: 20px;
}

.section-format {
  padding-top: 30px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.format-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.format-image-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.format-image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.25s ease;
}

.format-tag-icon {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}

.format-body {
  padding: 24px 26px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.format-body .btn-block {
  margin-top: 12px;
}

.format-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.format-location {
  font-size: 0.82rem;
  color: var(--pink);
  font-weight: 600;
}

.format-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
}

.format-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.format-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background-color: #f0f5ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* DEPOIMENTOS */

.section-depoimentos {
  padding-top: 80px;
}

.depoimentos-slider {
  position: relative;
}

/* cada “aba” de depoimentos */
.depoimentos-slide {
  display: none;
}

.depoimentos-slide-active {
  display: block;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.depo-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 24px 22px 26px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.depo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.depo-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
}

.depo-name {
  font-size: 0.96rem;
  font-weight: 600;
}

.depo-age {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.depo-stars {
  margin: 6px 0 10px;
  color: #ffb400;
  font-size: 0.9rem;
}

.depo-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* navegação do slider */

.depo-slider-nav {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: none;
  background-color: #dddddd;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.dot-active {
  background-color: var(--pink);
}

.depo-arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background-color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--pink);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease,
    color 0.18s ease;
}

/* MOTIVOS */

.section-motivos {
  padding-bottom: 96px;
}

.motivos-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: center;
}

.motivos-left,
.motivos-right {
  text-align: left;
}

.motivos-photo-wrapper {
  padding: 26px;
  border-radius: 32px;
  background: radial-gradient(circle at center, var(--pink-soft) 0, #ffffff 58%);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.motivos-photo-wrapper img {
  display: block;
  width: 100%;
  border-radius: 24px;
}

.motivos-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.motivo-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.motivo-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 18px;
}

.motivo-title {
  font-size: 0.96rem;
  margin-bottom: 4px;
}

.motivo-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== BLOCO FINAL / CTA + FORM + FOOTER ===== */

.section-final-cta {
  background-color: var(--pink);
  color: var(--white);
  text-align: center;
  padding: 72px 0 0px;
}

.final-cta-title {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.final-cta-subtitle {
  max-width: 620px;
  margin: 0 auto 26px;
  font-size: 0.98rem;
  line-height: 1.6;
}

.btn-light-outline {
  background-color: var(--white);
  color: var(--pink);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.final-cta-note {
  margin-top: 16px;
  font-size: 0.8rem;
  opacity: 0.9;
}

/* área do formulário */

.section-final-form {
  background-color: var(--pink);
  padding: 40px 0 80px;
}

.final-form-card {
  max-width: 520px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  padding: 32px 26px 26px;
  text-align: left;
}

.final-form-title {
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.final-form-subtitle {
  text-align: center;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.final-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.86rem;
  color: #555555;
}

.form-field input {
  border-radius: 6px;
  border: 1px solid #dddddd;
  padding: 10px 12px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 1px rgba(233, 30, 99, 0.25);
}

.final-form-btn {
  margin-top: 8px;
}

.final-form-small {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

.final-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.btn-half {
  flex: 1;
}

.btn-instagram {
  background-color: #f5608a;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(245, 96, 138, 0.35);
}

/* rodapé */

.site-footer {
  background-color: #11141a;
  color: #f2f2f2;
  padding: 32px 0 24px;
  text-align: center;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.footer-name {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.footer-line {
  font-size: 0.8rem;
  color: #c3c3c3;
}

.footer-line span + span::before {
  content: " • ";
  margin: 0 4px;
}

.footer-copy {
  margin-top: 16px;
  font-size: 0.74rem;
  color: #8d8d8d;
}

/* ===================== RESPONSIVO ===================== */

/* TABLETS E CELULARES GRANDES */
@media (max-width: 992px) {
  .topbar-inner {
    padding: 10px 16px;
  }

  .hero {
    align-items: flex-end;
    background-position: center top;
  }

  .hero-content {
    margin-top: 72px;      /* compensa o header fixo */
    padding-bottom: 40px;
  }

  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 18px;
  }

  .incluido-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .incluido-right {
    order: -1;
  }

  .section-incluido .section-title,
  .section-incluido .section-subtitle {
    text-align: center;
  }

  .section-cta-left {
    text-align: center;
  }

  .app-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .depoimentos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .motivos-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .motivos-left {
    max-width: 520px;
    margin: 0 auto;
  }

  .section-title-left,
  .section-subtitle-left {
    text-align: center;
  }
}

/* CELULARES (ATÉ 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 14px;
  }

  .topbar-inner {
    padding-inline: 14px;
    gap: 10px;
  }

  .logo img {
    height: 42px;
  }

  .nav {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-link {
    font-size: 0.78rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    margin-bottom: 30px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 90vh;
    background-position: center top;
  }

  .hero-content {
    padding: 0 14px 32px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-subtitle-name {
    font-size: 0.8rem;
  }

  .btn-whatsapp-hero {
    width: 100%;
    justify-content: center;
  }

  .pill-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .format-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .format-image-wrapper {
    height: 320px;
  }

  .depoimentos-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .motivos-grid {
    gap: 28px;
  }

  .motivo-card {
    padding: 14px 14px;
  }

  .final-form-card {
    max-width: 420px;
  }
}

/* CELULARES PEQUENOS (ATÉ 576px) */
@media (max-width: 576px) {
  html,
  body {
    font-size: 15px;
  }

  /* HEADER MOBILE */
  .topbar-inner {
    padding-inline: 12px;
    flex-direction: column;   /* logo em cima, menu embaixo */
    align-items: center;      /* centraliza o logo */
    gap: 8px;
  }

  .logo {
    width: 100%;
    display: flex;
    justify-content: center;  /* logo centralizado */
  }

  .logo img {
    height: 44px;
  }

  .nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;  /* centraliza os itens */
    gap: 6px 18px;
  }

  /* “Método passo a passo” e “Consultas” lado a lado */
  .nav-link {
    font-size: 0.82rem;
  }

  /* “Entre em contato” embaixo, ocupando a largura toda */
  .nav-link-contact {
    flex-basis: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 9px 20px;
  }

  .section {
    padding: 56px 0;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-subtitle-name {
    letter-spacing: 0.08em;
  }

  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .step-card {
    padding-inline: 20px;
  }

  .format-body {
    padding-inline: 18px;
  }

  .motivos-photo-wrapper {
    padding: 16px;
  }

  .final-form-card {
    padding-inline: 18px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
  }

  .section-final-cta {
    padding: 56px 0 40px;
  }

  .section-final-form {
    padding: 54px 0 64px;
  }

  .final-form-actions {
    flex-direction: column;
  }
}

/* EXTRA: MUITO ESTREITO (ATÉ 420px) */
@media (max-width: 420px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.82rem;
  }

  .footer-line {
    font-size: 0.78rem;
  }
}

/* ===================== HOVERS DESKTOP ===================== */

@media (hover: hover) and (pointer: fine) {
  .logo img {
    transition: transform 0.2s ease;
  }

  .logo img:hover {
    transform: scale(1.03);
  }

  .nav-link {
    transition: color 0.18s ease, transform 0.18s ease;
  }

  .nav-link:hover {
    transform: translateY(-1px);
  }

  .nav-link-contact:hover {
    transform: translateY(-1px);
  }

  .pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  }

  .step-card:hover,
  .format-card:hover,
  .depo-card:hover,
  .motivo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }

  .incluido-photo-wrapper:hover,
  .motivos-photo-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  }

  .format-card:hover .format-image-wrapper img {
    transform: scale(1.05);
  }

  .slider-dots .dot:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.18);
  }

  .depo-arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
    background-color: var(--pink);
    color: #ffffff;
  }

  /* hero – interação só no texto, sem mexer na imagem */
  .hero-title span {
    transition: text-shadow 0.25s ease, transform 0.25s ease;
  }

  .hero-subtitle-name {
    transition: letter-spacing 0.25s ease, opacity 0.25s ease;
  }

  .hero:hover .hero-title span {
    text-shadow: 0 0 14px rgba(0, 0, 0, 0.4);
  }

  .hero:hover .hero-subtitle-name {
    letter-spacing: 0.2em;
    opacity: 0.96;
  }

  /* botão principal com highlight interno */
  .btn-whatsapp-hero {
    position: relative;
    overflow: hidden;
  }

  .btn-whatsapp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at 0 0,
      rgba(255, 255, 255, 0.36),
      transparent 55%
    );
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
  }

  .btn-whatsapp-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 30px rgba(0, 200, 83, 0.6);
  }

  .btn-whatsapp-hero:hover::before {
    opacity: 1;
    transform: translate3d(10px, 10px, 0);
  }

  .app-card,
  .list-feature .pill,
  .format-list li {
    transition: transform 0.18s ease, box-shadow 0.18s ease,
      background-color 0.18s ease;
  }

  .app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
  }

  .format-list li:hover {
    transform: translateX(4px);
  }

  .format-list li:hover .format-icon {
    background-color: rgba(233, 30, 99, 0.12);
  }
}
