body {
  -webkit-font-smoothing: antialiased;
}

.hero-dashboard-bg {
  background-color: #0b0b0d;
}

.hero-dashboard-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 72% 58% at 74% 16%,
      rgb(255 129 20 / 0.32) 0%,
      transparent 68%
    ),
    radial-gradient(
      ellipse 42% 34% at 90% 6%,
      rgb(255 168 72 / 0.16) 0%,
      transparent 72%
    );
  pointer-events: none;
}

.hero-dashboard-bg__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translate3d(0, 56px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-fade-in-opacity {
  from {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-enter-stagger {
  overflow: hidden;
}

.hero-enter-stagger > * {
  opacity: 0;
  transform: translate3d(0, 56px, 0);
  animation: hero-fade-in 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-enter-stagger > *:nth-child(1) {
  animation-delay: 0.3s;
}

.hero-enter-stagger > *:nth-child(2) {
  animation-delay: 0.8s;
}

.hero-enter-stagger > *:nth-child(3) {
  animation-delay: 1.3s;
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 48px, 0);
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-stats-stagger] .stats-grid__item {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-stats-stagger].is-visible .stats-grid__item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-stats-stagger].is-visible .stats-grid__item:nth-child(1) {
  transition-delay: 0ms;
}

[data-stats-stagger].is-visible .stats-grid__item:nth-child(2) {
  transition-delay: 320ms;
}

[data-stats-stagger].is-visible .stats-grid__item:nth-child(3) {
  transition-delay: 640ms;
}

[data-stats-stagger].is-visible .stats-grid__item:nth-child(4) {
  transition-delay: 960ms;
}

.text-pretty {
  text-wrap: pretty;
}

.phone-mockup {
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

.phone-mockup__device {
  position: relative;
  border-radius: 44px;
  padding: 10px;
  background: linear-gradient(145deg, #3a3a3c 0%, #1c1c1e 45%, #2c2c2e 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.5);
}

.phone-mockup__island {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 20;
  height: 24px;
  width: 96px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #000;
}

.phone-mockup__screen {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  border: 2px solid #ff8114;
  background: #f7f2ea;
}

.wa-app {
  display: flex;
  min-height: 640px;
  flex-direction: column;
  font-size: 11px;
  line-height: 1.35;
  color: #1e1e1e;
}

.wa-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px 4px;
  font-size: 10px;
  font-weight: 700;
}

.wa-header {
  border-bottom: 1px solid #eae2d6;
  background: #f7f2ea;
  padding: 0 14px 8px;
}

.wa-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 8px;
}

.wa-header__name {
  flex: 1;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.wa-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
}

.wa-tabs span {
  position: relative;
  padding-bottom: 6px;
  color: #8a8073;
}

.wa-tabs span.is-active {
  color: #1e1e1e;
}

.wa-tabs span.is-active::after {
  content: "";
  position: absolute;
  right: 20%;
  bottom: 0;
  left: 20%;
  height: 2px;
  border-radius: 999px;
  background: #ff8114;
}

.wa-chat {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  background-image: url("../assets/whatsapp-bg-light.png");
  background-position: center;
  background-size: cover;
  padding: 10px 10px 12px;
}

.wa-chat::-webkit-scrollbar {
  display: none;
}

.wa-chat__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wa-msg {
  display: flex;
  width: 100%;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.wa-msg:has(.wa-bubble--in) {
  justify-content: flex-start;
}

.wa-msg:has(.wa-bubble--out) {
  justify-content: flex-end;
}

.wa-msg.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wa-msg--system {
  align-self: center;
  justify-content: center;
  width: auto;
  max-width: 88%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 4px 10px;
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  color: #5f5952;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.wa-bubble {
  max-width: 88%;
  border-radius: 10px;
  padding: 7px 9px 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.wa-bubble--in {
  border-top-left-radius: 2px;
  background: #fff;
}

.wa-bubble--out {
  border-top-right-radius: 2px;
  background: #dcf8c6;
}

.wa-bubble p {
  margin: 0;
  font-size: 10px;
  line-height: 1.4;
  color: #1e1e1e;
}

.wa-bubble__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  margin-top: 3px;
  font-size: 8px;
  color: #8a8073;
}

.wa-bubble__meta svg {
  height: 10px;
  width: 10px;
  color: #53bdeb;
}

.wa-footer {
  border-top: 1px solid #ffc38a;
  background: #f7f2ea;
  padding: 8px 10px 12px;
}

.wa-footer__action {
  margin-bottom: 8px;
  display: flex;
  justify-content: flex-end;
}

.wa-footer__action button {
  border: 0;
  border-radius: 6px;
  background: #ff8114;
  padding: 5px 10px;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
}

.wa-footer__input {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #ff8114;
  border-radius: 999px;
  padding: 6px 10px;
}

.wa-footer__input span,
.wa-footer__input svg {
  flex-shrink: 0;
  color: #ff8114;
}

.wa-footer__field {
  flex: 1;
  height: 14px;
  border-radius: 999px;
  background: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .hero-enter-stagger > * {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .hero-enter-stagger {
    overflow: visible;
  }

  .hero-phone-mockup {
    opacity: 1;
    animation: none;
    transform: none;
  }

  @media (min-width: 1024px) {
    .hero-phone-mockup {
      transform: scale(min(0.48, calc((100dvh - 22rem) / 800)));
      transform-origin: bottom right;
    }
  }

  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-stats-stagger] .stats-grid__item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .wa-msg {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .wa-panel .wa-msg {
    grid-template-rows: 1fr;
    overflow: visible;
    opacity: 1;
    transform: none;
  }

  .wa-panel .wa-msg > * {
    overflow: visible;
  }

  .property-showcase__card {
    animation: none !important;
  }

  .lead-profile__reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .visit-calendar__reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .visit-calendar__float.is-visible {
    animation: none;
  }

  .reengage-chat__reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reengage-chat__float.is-visible {
    animation: none;
  }

  .leads-chart__reveal,
  .leads-chart__grow {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .platform-dashboard__reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.wa-panel {
  position: relative;
  height: 500px;
  max-height: 500px;
  overflow: hidden;
  border-radius: 22px;
  border: 2px solid #ff8114;
  background: #f7f2ea;
  box-shadow: 0 16px 40px rgba(30, 30, 30, 0.12);
  color: #1e1e1e;
  --wa-panel-header-h: 4.5rem;
  --wa-panel-footer-h: 3.625rem;
}

.wa-panel__header {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  height: var(--wa-panel-header-h);
  background: #ff8114;
  padding: 0 16px;
  color: #1e1e1e;
}

.wa-panel__avatar {
  height: 44px;
  width: 44px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  object-fit: cover;
  object-position: top center;
}

.wa-panel__name {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.wa-panel__status {
  margin: 2px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: rgba(30, 30, 30, 0.75);
}

.wa-panel .wa-chat {
  position: absolute;
  z-index: 1;
  top: var(--wa-panel-header-h);
  right: 0;
  bottom: var(--wa-panel-footer-h);
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: auto;
  padding: 16px 14px;
  background-image: url("../assets/whatsapp-bg-light.png");
  background-position: center;
  background-size: cover;
}

.wa-chat--auto-scroll-only {
  touch-action: none;
  overscroll-behavior: none;
  user-select: none;
  -webkit-user-select: none;
}

.wa-panel .wa-chat__inner {
  display: flex;
  width: 100%;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.wa-panel .wa-chat__inner::before {
  content: none;
  display: none;
}

.wa-panel .wa-msg {
  display: grid;
  grid-template-rows: 0fr;
  justify-items: start;
  width: 100%;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition:
    grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.wa-panel .wa-msg > * {
  min-height: 0;
  overflow: hidden;
}

.wa-panel .wa-msg:has(.wa-bubble--in) {
  justify-items: start;
  transform-origin: left bottom;
}

.wa-panel .wa-msg:has(.wa-bubble--out) {
  justify-items: end;
  transform-origin: right bottom;
}

.wa-panel .wa-msg.is-visible {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wa-panel .wa-bubble {
  width: fit-content;
  max-width: 82%;
  padding: 9px 11px 6px;
}

.wa-panel .wa-bubble p {
  font-size: 13px;
  line-height: 1.45;
  color: #1e1e1e;
}

.wa-panel .wa-bubble__meta {
  margin-top: 4px;
  font-size: 10px;
}

.wa-property-card {
  margin-top: 8px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}

.wa-property-card img {
  display: block;
  height: 128px;
  width: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.wa-property-card__body {
  padding: 10px 12px 12px;
}

.wa-property-card__title {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: #ff8114;
}

.wa-property-card__details {
  margin: 4px 0 0;
  font-size: 12px;
  color: #5f5952;
}

.wa-property-card__price {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 800;
  color: #1e1e1e;
}

.wa-panel .wa-footer {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--wa-panel-footer-h);
  box-sizing: border-box;
  align-items: center;
  padding: 0 12px;
}

.wa-panel .wa-footer__input {
  width: 100%;
  padding: 8px 12px;
}

.wa-panel .wa-footer__field {
  height: 18px;
}

.property-showcase {
  position: relative;
  width: min(100%, 420px);
  min-height: 300px;
  margin-inline: auto;
}

.property-showcase__card {
  position: absolute;
  width: min(78%, 280px);
  overflow: hidden;
  border-radius: 18px;
  background: #2a2a2a;
  box-shadow: 0 18px 40px rgba(30, 30, 30, 0.22);
}

.property-showcase__card > img {
  display: block;
  width: 100%;
  height: 132px;
  object-fit: cover;
}

.property-showcase__card--sale {
  top: 0;
  left: 0;
  z-index: 1;
  transform: rotate(-4deg);
  animation: property-showcase-bounce-sale 6s ease-in-out infinite;
}

.property-showcase__card--rent {
  right: 0;
  bottom: 0;
  z-index: 2;
  transform: rotate(3deg);
  animation: property-showcase-bounce-rent 8s ease-in-out 1.8s infinite;
}

@keyframes property-showcase-bounce-sale {
  0%,
  100% {
    transform: rotate(-4deg) translateY(0);
  }

  50% {
    transform: rotate(-4deg) translateY(-14px);
  }
}

@keyframes property-showcase-bounce-rent {
  0%,
  100% {
    transform: rotate(3deg) translateY(0);
  }

  50% {
    transform: rotate(3deg) translateY(-12px);
  }
}

.property-showcase__body {
  padding: 14px 16px 16px;
}

.property-showcase__type {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: #ff8114;
}

.property-showcase__price {
  margin: 6px 0 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}

.property-showcase__features {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.property-showcase__features li {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.property-showcase__icon {
  display: block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(56%) sepia(86%) saturate(2520%)
    hue-rotate(353deg) brightness(102%) contrast(101%);
}

.property-showcase__accent {
  width: 42px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: #ff8114;
}

@media (min-width: 640px) {
  .property-showcase {
    width: min(100%, 480px);
    min-height: 340px;
  }

  .property-showcase__card {
    width: min(72%, 300px);
  }

  .property-showcase__card > img {
    height: 148px;
  }

  .property-showcase__price {
    font-size: 24px;
  }
}

.phone-mockup__screen--dark {
  background: #141414;
}

.lead-profile {
  display: flex;
  width: min(100%, 280px);
  margin-inline: auto;
  align-items: center;
  justify-content: center;
}

.lead-profile__phone {
  width: 100%;
}

.lead-profile .phone-mockup__device {
  border-radius: 36px;
  padding: 8px;
}

.lead-profile .phone-mockup__island {
  top: 14px;
  height: 20px;
  width: 72px;
}

.lead-profile .phone-mockup__screen {
  border-radius: 28px;
}

.lead-profile__app {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 38px 16px 16px;
  color: #fff;
}

.lead-profile__menu {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  width: 22px;
  flex-direction: column;
  gap: 4px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: default;
}

.lead-profile__menu span {
  display: block;
  height: 2.5px;
  border-radius: 999px;
  background: #ff8114;
}

.lead-profile__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.lead-profile__avatar {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.lead-profile__name {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ff8114;
}

.lead-profile__status {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.lead-profile__field {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 6px;
}

.lead-profile__label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.lead-profile__value {
  display: block;
  border-radius: 999px;
  background: #fff;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  color: #1e1e1e;
}

.lead-profile__cta {
  width: 100%;
  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  background: #ff8114;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  cursor: default;
}

.lead-profile__reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.lead-profile__reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .lead-profile {
    width: min(100%, 252px);
  }

  .lead-profile__app {
    padding: 40px 18px 18px;
  }

  .lead-profile__name {
    font-size: 22px;
  }

  .lead-profile__value {
    font-size: 13px;
    padding: 10px 16px;
  }

  .lead-profile__cta {
    font-size: 13px;
    padding: 12px 20px;
  }
}

.visit-calendar {
  width: min(100%, 340px);
  margin-inline: auto;
}

.visit-calendar__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 24px;
  background: #1e1e1e;
  padding: 22px 20px 20px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.visit-calendar__header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.visit-calendar__icon {
  display: flex;
  flex-shrink: 0;
  color: #ff8114;
}

.visit-calendar__title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}

.visit-calendar__month {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ff8114;
}

.visit-calendar__dates {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.visit-calendar__date-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.visit-calendar__weekday {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
}

.visit-calendar__day {
  display: flex;
  width: 100%;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f7f2ea;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  color: #1e1e1e;
}

.visit-calendar__day--selected {
  background: #ff8114;
  color: #fff;
}

.visit-calendar__divider {
  height: 2px;
  border-radius: 999px;
  background: #ff8114;
}

.visit-calendar__times-label {
  margin: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.visit-calendar__times {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.visit-calendar__time {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f7f2ea;
  padding: 10px 4px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  color: #1e1e1e;
}

.visit-calendar__time--selected {
  background: #ff8114;
  color: #fff;
}

.visit-calendar__cta {
  width: 100%;
  margin-top: 4px;
  border: 0;
  border-radius: 12px;
  background: #ff8114;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  color: #1e1e1e;
  cursor: default;
}

.visit-calendar__reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.visit-calendar__reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes visit-calendar-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.visit-calendar__float.is-visible {
  animation: visit-calendar-float 4.5s ease-in-out 1.1s infinite;
}

.visit-calendar__float--icon.is-visible {
  animation-duration: 5.5s;
  animation-delay: 1.3s;
}

.visit-calendar__float--1.is-visible {
  animation-duration: 4.2s;
  animation-delay: 1.2s;
}

.visit-calendar__float--2.is-visible {
  animation-duration: 5s;
  animation-delay: 1.4s;
}

.visit-calendar__float--3.is-visible {
  animation-duration: 4.8s;
  animation-delay: 1.25s;
}

.visit-calendar__float--4.is-visible {
  animation-duration: 5.2s;
  animation-delay: 1.5s;
}

@media (min-width: 640px) {
  .visit-calendar {
    width: min(100%, 360px);
  }

  .visit-calendar__card {
    gap: 16px;
    padding: 24px 22px 22px;
  }

  .visit-calendar__title {
    font-size: 16px;
  }

  .visit-calendar__month {
    font-size: 32px;
  }

  .visit-calendar__day {
    font-size: 14px;
    border-radius: 11px;
  }

  .visit-calendar__time {
    font-size: 12px;
    padding: 11px 6px;
  }

  .visit-calendar__cta {
    font-size: 15px;
    padding: 14px 18px;
  }
}

.reengage-chat {
  width: min(100%, 340px);
  margin-inline: auto;
}

.reengage-chat__inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.reengage-chat__msg {
  display: flex;
  width: 100%;
}

.reengage-chat__msg--in {
  justify-content: flex-start;
}

.reengage-chat__msg--out {
  justify-content: flex-end;
}

.reengage-chat__bubble {
  max-width: 82%;
  border-radius: 12px;
  padding: 6px 9px 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.reengage-chat__bubble--in {
  border-top-left-radius: 3px;
  background: #fff;
}

.reengage-chat__bubble--out {
  border-top-right-radius: 3px;
  background: #dcf8c6;
}

.reengage-chat__bubble p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #1e1e1e;
}

.reengage-chat__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 2px;
  font-size: 9px;
  color: #8a8073;
}

.reengage-chat__meta svg {
  height: 11px;
  width: 11px;
  color: #53bdeb;
}

.reengage-chat__quote {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 4px;
  border-left: 3px solid #25a56a;
  border-radius: 6px;
  background: rgba(37, 165, 106, 0.12);
  padding: 4px 7px;
}

.reengage-chat__quote-name {
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  color: #25a56a;
}

.reengage-chat__quote-text {
  font-size: 10px;
  line-height: 1.3;
  color: #5f5952;
}

.reengage-chat__badge {
  display: inline-flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: min(100%, 260px);
  margin-block: 2px;
  border-radius: 24px;
  background: #ff8114;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  color: #1e1e1e;
}

.reengage-chat__badge svg,
.reengage-chat__badge-icon {
  flex-shrink: 0;
  width: 30px;
  height: auto;
}

.reengage-chat__badge svg {
  color: #1e1e1e;
}

.reengage-chat__reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reengage-chat__reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reengage-chat__float.is-visible {
  animation: reengage-chat-float 5s ease-in-out 1.1s infinite;
}

.reengage-chat__float--badge.is-visible {
  animation-duration: 4.8s;
  animation-delay: 1.3s;
}

@keyframes reengage-chat-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (min-width: 640px) {
  .reengage-chat {
    width: min(100%, 380px);
  }

  .reengage-chat__inner {
    gap: 6px;
  }

  .reengage-chat__bubble p {
    font-size: 13px;
  }

  .reengage-chat__badge {
    min-width: min(100%, 300px);
    padding: 16px 32px;
    font-size: 17px;
  }

  .reengage-chat__badge-icon {
    width: 34px;
  }
}

.section-12-whatsapp {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 10;
  width: 5rem;
  height: 5rem;
  transform: translate(-50%, -15%);
  filter: drop-shadow(0 12px 24px rgb(0 0 0 / 0.35));
  pointer-events: none;
}

@media (min-width: 640px) {
  .section-12-whatsapp {
    width: 6rem;
    height: 6rem;
  }
}

@media (min-width: 1024px) {
  .section-12-whatsapp {
    right: 3rem;
    left: auto;
    width: 6.5rem;
    height: 6.5rem;
    transform: translateY(-15%);
  }
}

/* ── Leads chart (Seção 08) ── */

.leads-chart {
  width: min(100%, 420px);
  margin-inline: auto;
  padding: 20px 16px 18px;
  color: #8a8a8a;
}

.leads-chart__title {
  margin: 0 0 14px;
  text-align: center;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #9a9a9a;
}

.leads-chart__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #ff8114;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: #1e1e1e;
}

.leads-chart__badge-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.leads-chart__badge-value {
  font-weight: 800;
}

.leads-chart__body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 10px;
  align-items: stretch;
}

.leads-chart__y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 180px;
  padding-bottom: 18px;
  font-size: 11px;
  line-height: 1;
  color: #7a7a7a;
}

.leads-chart__y-label {
  display: block;
  min-width: 1.25rem;
  text-align: right;
}

.leads-chart__plot {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 180px;
  border-left: 1px solid #e4e4e7;
}

.leads-chart__grid {
  position: absolute;
  inset: 0 0 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.leads-chart__grid-line {
  display: block;
  height: 1px;
  background: #e4e4e7;
}

.leads-chart__groups {
  position: absolute;
  inset: 0 0 18px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
}

.leads-chart__group {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 100%;
}

.leads-chart__bar-wrap {
  display: flex;
  align-items: flex-end;
  width: 100%;
  max-width: 18px;
  height: var(--h);
  opacity: 1;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 1200ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.leads-chart__bar {
  width: 100%;
  height: 100%;
}

.leads-chart__grow.is-visible {
  transform: scaleY(1);
}

.leads-chart__bar--orange {
  background: linear-gradient(
    to top,
    #a85f14 0%,
    #a85f14 62%,
    #ff9a2e 62%,
    #ff9a2e 100%
  );
}

.leads-chart__bar--teal {
  background: linear-gradient(
    to top,
    #0f7f8f 0%,
    #0f7f8f 62%,
    #2ec8dc 62%,
    #2ec8dc 100%
  );
}

.leads-chart__bar--green {
  background: linear-gradient(
    to top,
    #2a8f3a 0%,
    #2a8f3a 62%,
    #4cdc62 62%,
    #4cdc62 100%
  );
}

.leads-chart__x-axis {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  height: 18px;
  border-top: 1px solid #e4e4e7;
}

.leads-chart__x-axis span {
  position: relative;
}

.leads-chart__x-axis span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 6px;
  background: #d4d4d8;
  transform: translateX(-50%);
}

.leads-chart__reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 500ms ease-out,
    transform 500ms ease-out;
  will-change: opacity, transform;
}

.leads-chart__reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 640px) {
  .leads-chart {
    width: min(100%, 480px);
    padding: 24px 22px 20px;
  }

  .leads-chart__title {
    margin-bottom: 16px;
    font-size: 26px;
  }

  .leads-chart__badge {
    gap: 12px;
    margin-bottom: 26px;
    padding: 12px 24px;
    font-size: 14px;
  }

  .leads-chart__badge-icon {
    width: 24px;
    height: 24px;
  }

  .leads-chart__y-axis,
  .leads-chart__plot {
    height: 210px;
  }

  .leads-chart__groups {
    gap: 14px;
  }

  .leads-chart__group {
    gap: 4px;
  }

  .leads-chart__bar-wrap {
    max-width: 22px;
  }

  .leads-chart__x-axis {
    gap: 14px;
  }
}

/* ── Seção 07: Plataforma Maysa (notebook) ── */

.platform-dashboard {
  width: min(100%, 640px);
  margin-inline: auto;
}

.laptop-mockup {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.laptop-mockup--frame {
  position: relative;
  display: block;
  width: 100%;
  max-height: var(--stacking-visual-height, none);
  aspect-ratio: 1024 / 630;
  line-height: 0;
  --laptop-screen-top: 8.095%;
  --laptop-screen-right: 14.453%;
  --laptop-screen-bottom: 39.841%;
  --laptop-screen-left: 17.09%;
}

.laptop-mockup__frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  user-select: none;
  pointer-events: none;
}

.laptop-mockup__screen {
  position: absolute;
  top: var(--laptop-screen-top);
  right: var(--laptop-screen-right);
  bottom: var(--laptop-screen-bottom);
  left: var(--laptop-screen-left);
  z-index: 1;
  display: flex;
  overflow: hidden;
  border-radius: 1px;
  height: 69.9%;
}

.laptop-mockup__screen .platform-dashboard__app {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 100%;
  flex: 1 1 auto;
  align-items: stretch;
  overflow: hidden;
  background: #141414;
}

.laptop-mockup__screen .platform-dashboard__sidebar {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.laptop-mockup__screen .platform-dashboard__contacts {
  flex: 1 1 auto;
  min-height: 0;
}

.laptop-mockup__screen .platform-dashboard__sidebar-footer {
  margin-top: auto;
  flex-shrink: 0;
}

.laptop-mockup__screen .platform-dashboard__main {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
  min-width: 0;
  background: #e5ddd5;
}

.laptop-mockup__screen .platform-dashboard__header {
  flex-shrink: 0;
}

.laptop-mockup__screen .platform-dashboard__chat {
  flex: 1 1 auto;
  min-height: 0;
}

.laptop-mockup__screen .platform-dashboard__logo {
  padding: 6px 6px 4px;
}

.laptop-mockup__screen .platform-dashboard__logo img {
  max-width: 52px;
}

.laptop-mockup__screen .platform-dashboard__user {
  gap: 4px;
  padding: 2px 6px 6px;
  font-size: 6px;
}

.laptop-mockup__screen .platform-dashboard__user svg {
  width: 8px;
  height: 8px;
}

.laptop-mockup__screen .platform-dashboard__contacts {
  gap: 1px;
  padding: 0 4px;
}

.laptop-mockup__screen .platform-dashboard__contact {
  gap: 4px;
  padding: 3px 2px;
  grid-template-columns: 20px 1fr auto;
}

.laptop-mockup__screen .platform-dashboard__contact-avatar {
  width: 20px;
  height: 20px;
}

.laptop-mockup__screen .platform-dashboard__contact-avatar--placeholder {
  font-size: 6px;
}

.laptop-mockup__screen .platform-dashboard__contact-name {
  font-size: 6px;
}

.laptop-mockup__screen .platform-dashboard__contact-preview {
  font-size: 5px;
}

.laptop-mockup__screen .platform-dashboard__contact-time {
  font-size: 5px;
}

.laptop-mockup__screen .platform-dashboard__contact-badge {
  min-width: 10px;
  padding: 0 3px;
  font-size: 5px;
}

.laptop-mockup__screen .platform-dashboard__sidebar-footer {
  gap: 4px;
  padding: 4px 6px 6px;
}

.laptop-mockup__screen .platform-dashboard__options {
  gap: 3px;
  font-size: 6px;
}

.laptop-mockup__screen .platform-dashboard__options svg {
  width: 8px;
  height: 8px;
}

.laptop-mockup__screen .platform-dashboard__logout {
  padding: 4px 6px;
  font-size: 6px;
}

.laptop-mockup__screen .platform-dashboard__header {
  gap: 4px;
  padding: 4px 6px;
  font-size: 6px;
}

.laptop-mockup__screen .platform-dashboard__header svg {
  width: 8px;
  height: 8px;
}

.laptop-mockup__screen .platform-dashboard__chat {
  padding: 5px 6px 6px;
}

.laptop-mockup__screen .platform-dashboard__chat-inner {
  gap: 3px;
}

.laptop-mockup__screen .platform-dashboard__bubble {
  padding: 3px 5px 2px;
  border-radius: 7px;
}

.laptop-mockup__screen .platform-dashboard__bubble p {
  font-size: 6px;
  line-height: 1.3;
}

.laptop-mockup__screen .platform-dashboard__meta {
  gap: 2px;
  margin-top: 1px;
  font-size: 5px;
}

.laptop-mockup__screen .platform-dashboard__meta svg {
  width: 7px;
  height: 7px;
}

.laptop-mockup__screen .platform-dashboard__quote {
  margin-bottom: 2px;
  padding: 2px 4px;
}

.laptop-mockup__screen .platform-dashboard__quote-name,
.laptop-mockup__screen .platform-dashboard__quote-text {
  font-size: 5px;
}

.laptop-mockup__screen .platform-dashboard__property {
  gap: 4px;
  padding: 2px 3px;
  font-size: 5px;
}

.laptop-mockup__screen .platform-dashboard__property-meta {
  font-size: 4px;
}

.laptop-mockup__screen .platform-dashboard__property-meta svg {
  width: 6px;
  height: 6px;
}

.platform-dashboard__app {
  display: flex;
  min-height: 0;
  flex: 1;
  overflow: hidden;
  background: #f0f0f0;
}

.platform-dashboard__sidebar {
  display: flex;
  width: 30%;
  min-width: 0;
  flex-direction: column;
  background: #141414;
  color: #fff;
}

.platform-dashboard__logo {
  padding: 10px 10px 6px;
}

.platform-dashboard__logo img {
  display: block;
  width: 100%;
  max-width: 72px;
  height: auto;
}

.platform-dashboard__user {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 10px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  color: #ff8114;
}

.platform-dashboard__user svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.platform-dashboard__contacts {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  padding: 0 6px;
}

.platform-dashboard__contact {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 6px;
  border-radius: 6px;
  padding: 5px 4px;
}

.platform-dashboard__contact--active {
  background: rgba(255, 129, 20, 0.14);
}

.platform-dashboard__contact-avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
}

.platform-dashboard__contact-avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
}

.platform-dashboard__contact-avatar--raquel {
  background: #5b7c99;
}

.platform-dashboard__contact-avatar--marcos {
  background: #8b6b4f;
}

.platform-dashboard__contact-body {
  min-width: 0;
}

.platform-dashboard__contact-name {
  margin: 0;
  overflow: hidden;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-dashboard__contact-preview {
  margin: 1px 0 0;
  overflow: hidden;
  font-size: 7px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.55);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-dashboard__contact-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.platform-dashboard__contact-time {
  font-size: 6px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.45);
}

.platform-dashboard__contact-badge {
  display: inline-flex;
  min-width: 14px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ff8114;
  padding: 1px 4px;
  font-size: 6px;
  font-weight: 800;
  line-height: 1.2;
  color: #141414;
}

.platform-dashboard__sidebar-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 10px 10px;
}

.platform-dashboard__options {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.platform-dashboard__options svg {
  width: 11px;
  height: 11px;
}

.platform-dashboard__logout {
  width: 100%;
  border: 0;
  border-radius: 4px;
  background: #ff8114;
  padding: 7px 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #141414;
  cursor: default;
}

.platform-dashboard__main {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.platform-dashboard__header {
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #e0e0e0;
  background: #f7f7f7;
  padding: 8px 12px;
  font-size: 9px;
  font-weight: 700;
  color: #3a3a3a;
}

.platform-dashboard__header svg {
  width: 12px;
  height: 12px;
  color: #ff8114;
}

.platform-dashboard__chat {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background-color: #e5ddd5;
  background-image: url("../assets/whatsapp-bg-light.png");
  background-position: center;
  background-size: cover;
  padding: 10px 10px 12px;
}

.platform-dashboard__chat-inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.platform-dashboard__msg {
  display: flex;
  width: 100%;
}

.platform-dashboard__msg--in {
  justify-content: flex-start;
}

.platform-dashboard__msg--out {
  justify-content: flex-end;
}

.platform-dashboard__bubble {
  max-width: 88%;
  border-radius: 10px;
  padding: 5px 8px 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.platform-dashboard__bubble--in {
  border-top-left-radius: 3px;
  background: #fff;
}

.platform-dashboard__bubble--out {
  border-top-right-radius: 3px;
  background: #dcf8c6;
}

.platform-dashboard__bubble p {
  margin: 0;
  font-size: 9px;
  line-height: 1.35;
  color: #1e1e1e;
}

.platform-dashboard__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  margin-top: 2px;
  font-size: 7px;
  color: #8a8073;
}

.platform-dashboard__meta svg {
  width: 9px;
  height: 9px;
  color: #53bdeb;
}

.platform-dashboard__quote {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 4px;
  border-left: 2px solid #25a56a;
  border-radius: 4px;
  background: rgba(37, 165, 106, 0.12);
  padding: 3px 5px;
}

.platform-dashboard__quote-name {
  font-size: 7px;
  font-weight: 800;
  line-height: 1.2;
  color: #25a56a;
}

.platform-dashboard__quote-text {
  font-size: 7px;
  line-height: 1.25;
  color: #5f5952;
}

.platform-dashboard__properties {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 2px;
}

.platform-dashboard__property {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.55);
  padding: 3px 5px;
  font-size: 8px;
  line-height: 1.2;
  color: #1e1e1e;
}

.platform-dashboard__property-meta {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2px;
  font-size: 6px;
  color: #8a8073;
}

.platform-dashboard__property-meta svg {
  width: 8px;
  height: 8px;
  color: #53bdeb;
}

.platform-dashboard__reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.platform-dashboard__reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .platform-dashboard__user {
    font-size: 10px;
  }

  .platform-dashboard__contact {
    grid-template-columns: 32px 1fr auto;
    gap: 7px;
    padding: 6px 5px;
  }

  .platform-dashboard__contact-avatar {
    width: 32px;
    height: 32px;
  }

  .platform-dashboard__contact-name {
    font-size: 9px;
  }

  .platform-dashboard__contact-preview {
    font-size: 8px;
  }

  .platform-dashboard__contact-time {
    font-size: 7px;
  }

  .platform-dashboard__contact-badge {
    min-width: 16px;
    font-size: 7px;
  }

  .platform-dashboard__header {
    padding: 9px 14px;
    font-size: 10px;
  }

  .platform-dashboard__bubble p {
    font-size: 10px;
  }

  .platform-dashboard__property {
    font-size: 9px;
  }

  .platform-dashboard__logout {
    padding: 8px 10px;
    font-size: 10px;
  }
}
