:root {
  --ink: #101828;
  --muted: #667085;
  --line: #e6eaf0;
  --panel: #ffffff;
  --soft: #f7f9fc;
  --blue: #155eef;
  --cyan: #06aed4;
  --green: #20b486;
  --yellow: #ffbf47;
  --coral: #ff6b5f;
  --navy: #102a43;
  --shadow: 0 22px 70px rgba(16, 40, 67, 0.14);
}

:root {
  --brand-blue: #1f5a93;
  --orange: #e46e43;
  --orange-strong: #ff7a1a;
  --orange-pastel: #ffe1cf;
  --blue-pastel: #dff0ff;
  --lilac-pastel: #efdfff;
  --yellow-pastel: #fff4b8;
  --green-pastel: #e8fff2;
}

body {
  background: linear-gradient(180deg, #fffdf8 0%, #fff4e8 30%, #eef6ff 62%, #ffffff 100%);
}

.header-cta,
.primary-button {
  background: linear-gradient(135deg, var(--orange-strong), var(--orange));
  box-shadow: 0 14px 30px rgba(228, 110, 67, 0.25);
}

.secondary-button {
  color: var(--brand-blue);
  border-color: #cfe5f7;
}

.nav a:hover,
.eyebrow,
.kicker {
  color: var(--orange);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 38px rgba(16, 40, 67, 0.06);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 18px;
}

.hero-highlights span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 36px;
  color: #15314d;
  background: #cef8ea;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.hero-highlights span:nth-child(2) {
  background: var(--blue-pastel);
}

.hero-highlights span:nth-child(3) {
  background: var(--lilac-pastel);
}

.hero-highlights span:nth-child(4) {
  background: var(--yellow-pastel);
}

.hero-phone {
  position: absolute;
  right: -26px;
  bottom: -92px;
  z-index: 3;
  transform: rotate(2deg) scale(0.78);
  transform-origin: bottom right;
}

.stats-band,
.feature-groups,
.scroll-invite,
.benefits-section,
.faq-section {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0;
  margin: 34px auto 0;
}

.stats-band article {
  min-height: 148px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--orange-pastel);
  box-shadow: 0 16px 40px rgba(16, 40, 67, 0.08);
}

.stats-band article:nth-child(2) {
  background: var(--blue-pastel);
}

.stats-band article:nth-child(3) {
  background: var(--lilac-pastel);
}

.stats-band strong {
  display: block;
  color: var(--brand-blue);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
}

.stats-band span {
  display: block;
  margin-top: 12px;
  color: #5f738a;
  font-weight: 800;
  line-height: 1.45;
}

.feature-groups,
.scroll-invite,
.benefits-section,
.faq-section {
  border-top: 1px solid var(--line);
}

.scroll-invite {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 880px;
  padding: 58px 0 42px;
  text-align: center;
}

.scroll-invite p {
  max-width: 780px;
  margin: 0;
  color: #15314d;
  font-size: clamp(28px, 4.7vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.scroll-invite a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-strong), var(--orange));
  box-shadow: 0 16px 34px rgba(228, 110, 67, 0.24);
  font-size: 22px;
  font-weight: 900;
}

.section-heading.centered {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

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

.resource-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(16, 40, 67, 0.07);
}

.resource-grid article:nth-child(1),
.resource-grid article:nth-child(5) {
  background: #fff7e7;
}

.resource-grid article:nth-child(2),
.resource-grid article:nth-child(6) {
  background: #eef6ff;
}

.resource-grid article:nth-child(3) {
  background: #e8fff2;
}

.resource-grid article:nth-child(4) {
  background: #f4ecff;
}

.resource-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
}

.resource-grid article:nth-child(even) .resource-icon {
  background: var(--brand-blue);
}

.resource-grid p {
  font-size: 15px;
}

.pastel-orange,
.pastel-blue,
.pastel-green,
.pastel-lilac,
.pastel-yellow {
  position: relative;
}

.pastel-orange::before,
.pastel-blue::before,
.pastel-green::before,
.pastel-lilac::before,
.pastel-yellow::before {
  content: "";
  position: absolute;
  inset: 42px -32px;
  z-index: 0;
  border-radius: 34px;
  pointer-events: none;
}

.pastel-orange::before {
  background: linear-gradient(135deg, rgba(255, 225, 207, 0.54), rgba(255, 255, 255, 0));
}

.pastel-blue::before {
  background: linear-gradient(135deg, rgba(223, 240, 255, 0.62), rgba(255, 255, 255, 0));
}

.pastel-green::before {
  background: linear-gradient(135deg, rgba(232, 255, 242, 0.66), rgba(255, 255, 255, 0));
}

.pastel-lilac::before {
  background: linear-gradient(135deg, rgba(239, 223, 255, 0.52), rgba(255, 255, 255, 0));
}

.pastel-yellow::before {
  background: linear-gradient(135deg, rgba(255, 244, 184, 0.48), rgba(255, 255, 255, 0));
}

.pastel-orange > *,
.pastel-blue > *,
.pastel-green > *,
.pastel-lilac > *,
.pastel-yellow > * {
  position: relative;
  z-index: 1;
}

.flow div,
.feature-card,
.kpi-board article {
  background: rgba(255, 255, 255, 0.94);
}

.flow span {
  background: var(--brand-blue);
}

.with-phone {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 44px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.with-phone .cards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.steps-panel {
  max-width: 360px;
  margin-left: auto;
  padding: 26px 18px 18px;
  border: 10px solid #15314d;
  border-radius: 34px;
  background: linear-gradient(180deg, #f4f8ff, #ffffff);
  box-shadow: 0 22px 56px rgba(16, 40, 67, 0.16);
}

.steps-panel div {
  background: rgba(255, 255, 255, 0.96);
}

.steps-panel span {
  color: var(--orange);
}

.kpi-board strong {
  color: var(--brand-blue);
}

.benefits-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.benefit-card {
  min-height: 520px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 46px rgba(16, 40, 67, 0.08);
}

.benefit-card.light {
  background: #fff;
}

.benefit-card.accent {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff8a5c);
}

.benefit-card.accent .eyebrow,
.benefit-card.accent h2 {
  color: #fff;
}

.benefit-card ul {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-card li {
  color: var(--muted);
  line-height: 1.65;
}

.benefit-card li strong {
  color: var(--ink);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.mini-grid span {
  min-height: 78px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.faq-section {
  max-width: 900px;
}

.faq-section details {
  margin-top: 14px;
  padding: 22px 24px;
  border: 1px solid #cfe5f7;
  border-radius: 18px;
  background: #f4f9ff;
  box-shadow: 0 12px 34px rgba(16, 40, 67, 0.05);
}

.faq-section details[open] {
  border-color: #9dccff;
  background: #dff0ff;
  box-shadow: 0 16px 42px rgba(31, 90, 147, 0.1);
}

.faq-section summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::after {
  content: "+";
  color: var(--orange);
  font-size: 26px;
  line-height: 1;
}

.faq-section details[open] summary::after {
  content: "-";
}

.faq-section p {
  margin: 12px 0 0;
  font-size: 15px;
}

.phone-mockup {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: 248px;
  min-height: 500px;
  padding: 18px 14px 16px;
  border: 2px solid #0b84ff;
  border-radius: 44px;
  background:
    linear-gradient(145deg, #2a5d8d 0%, #102f52 42%, #071d36 100%);
  box-shadow:
    inset 0 0 0 7px #143f68,
    inset 0 0 0 10px rgba(255, 255, 255, 0.05),
    0 30px 70px rgba(16, 40, 67, 0.28);
}

.phone-frame::before,
.phone-frame::after {
  content: "";
  position: absolute;
  z-index: 3;
  border-radius: 999px;
  background: #0d2745;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.phone-frame::before {
  left: -5px;
  top: 96px;
  width: 4px;
  height: 58px;
}

.phone-frame::after {
  right: -5px;
  top: 142px;
  width: 4px;
  height: 92px;
}

.phone-speaker {
  position: relative;
  z-index: 4;
  width: 86px;
  height: 13px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #0a223f;
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.12);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 448px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 32px;
  background: linear-gradient(180deg, #fff, #eef6ff);
  box-shadow:
    inset 0 0 0 1px rgba(16, 40, 67, 0.06),
    inset 0 -24px 50px rgba(21, 94, 239, 0.08);
}

.phone-screen::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -50%;
  width: 62%;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.phone-screen::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 82px;
  height: 4px;
  border-radius: 999px;
  background: rgba(16, 40, 67, 0.18);
  transform: translateX(-50%);
}

.phone-screen small {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.phone-screen strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #15314d;
  font-size: 25px;
  line-height: 1.1;
}

.phone-status,
.phone-alert,
.phone-button,
.phone-card,
.phone-row {
  position: relative;
  z-index: 1;
  border-radius: 16px;
}

.phone-status {
  margin-top: 18px;
  padding: 13px;
  color: var(--brand-blue);
  background: var(--blue-pastel);
  font-weight: 900;
}

.phone-status.success {
  color: #087443;
  background: #e8fff2;
}

.phone-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding: 13px;
  background: #fff;
  border: 1px solid var(--line);
}

.phone-row span,
.phone-card span {
  color: var(--muted);
  font-size: 12px;
}

.phone-row b,
.phone-card b {
  color: var(--ink);
  font-size: 13px;
}

.phone-card {
  display: grid;
  gap: 5px;
  margin-top: 14px;
  padding: 15px;
  border: 1px solid var(--line);
  background: #fff;
}

.phone-card.active {
  border-color: #bcebd5;
  background: #f2fff8;
}

.phone-alert {
  margin-top: 14px;
  padding: 13px;
  color: var(--orange);
  background: #fff1e8;
  font-weight: 900;
}

.phone-button {
  margin-top: 18px;
  padding: 14px 12px;
  color: #fff;
  background: var(--brand-blue);
  text-align: center;
  font-weight: 900;
}

.phone-button.green {
  background: var(--green);
}

.avatar-circle {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 20px 0;
  border: 5px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--orange));
  box-shadow: 0 12px 24px rgba(16, 40, 67, 0.16);
  font-weight: 900;
}

.cta-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 122, 26, 0.94), rgba(255, 122, 26, 0) 34%),
    linear-gradient(135deg, var(--orange-strong) 0%, var(--orange) 34%, var(--brand-blue) 100%);
}

.primary-button.light,
.footer strong {
  color: var(--brand-blue);
}

@media (max-width: 860px) {
  .with-phone,
  .benefits-section {
    grid-template-columns: 1fr;
  }

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

  .with-phone .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-phone {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: end;
    margin-top: -84px;
    margin-right: 8px;
    transform: scale(0.74);
    transform-origin: top right;
  }

  .steps-panel {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .stats-band,
  .feature-groups,
  .scroll-invite,
  .benefits-section,
  .faq-section {
    padding: 62px 0;
  }

  .hero-highlights,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    width: min(248px, 100%);
  }

  .monitor-frame {
    padding: 6px;
    border-radius: 16px;
  }

  .monitor-bar {
    min-height: 22px;
    border-radius: 10px 10px 0 0;
  }

  .monitor-neck {
    height: 22px;
  }

  .monitor-base {
    width: 148px;
    height: 13px;
  }

  .hero-phone {
    margin-top: -104px;
    margin-bottom: -86px;
    transform: scale(0.62);
  }

  .benefit-card {
    min-height: auto;
    padding: 24px;
  }
}

@media (max-width: 860px) {
  .hero-visual {
    padding-bottom: 190px;
  }

  .hero-phone {
    position: absolute;
    right: -10px;
    bottom: 78px;
    margin: 0;
    transform: scale(0.62);
    transform-origin: bottom right;
  }
}

@media (max-width: 640px) {
  .hero-visual {
    padding-bottom: 190px;
  }

  .hero-phone {
    position: absolute;
    right: -18px;
    bottom: 96px;
    margin: 0;
    transform: scale(0.58);
    transform-origin: bottom right;
  }
}

#cta.cta-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 122, 26, 0.94), rgba(255, 122, 26, 0) 34%),
    linear-gradient(135deg, var(--orange-strong) 0%, var(--orange) 34%, var(--brand-blue) 100%);
}

#operacao h2 {
  color: #1f5131;
}

#visitantes h2 {
  color: #1f3f60;
}

.pastel-lilac h2 {
  color: #5e437a;
}

.pastel-yellow h2 {
  color: #676242;
}

.pastel-orange h2 {
  color: #6a4125;
}

#relatorios h2 {
  color: #243f5b;
}

.app-screenshot-screen {
  padding: 0;
  background: #f2f6fb;
}

.app-screenshot-screen::before,
.app-screenshot-screen::after {
  display: none;
}

.app-screenshot-screen img {
  display: block;
  width: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
}

#fluxo .compact-phone .app-screenshot-screen {
  min-height: 386px;
  padding: 0;
}

#fluxo .compact-phone .app-screenshot-screen img {
  height: 386px;
}

main#topo .records-section {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: center;
}

main#topo .records-section .attachment-preview {
  max-width: 620px;
  margin-left: auto;
}

main#topo .records-section .records-guide {
  display: grid;
  gap: 14px;
}

main#topo .records-section .records-guide article {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 150px;
  padding: 14px;
  border: 1px solid #dce8ff;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(16, 40, 67, 0.09);
}

main#topo .records-section .records-guide article:nth-child(1) {
  transform: translateX(-10px);
}

main#topo .records-section .records-guide article:nth-child(2) {
  transform: translateX(14px);
}

main#topo .records-section .records-guide article:nth-child(3) {
  transform: translateX(-4px);
}

main#topo .records-section .record-window {
  position: relative;
  height: 118px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #cfe5f7;
  border-radius: 10px;
  background: #eff8ff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

main#topo .records-section .record-window img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

main#topo .records-section .record-window-alerts img {
  object-position: center top;
  transform: translateY(0);
}

main#topo .records-section .record-window-class img {
  object-position: center 55%;
  transform: translateY(-112px);
}

main#topo .records-section .record-window-notify img {
  object-position: center bottom;
  transform: translateY(-182px);
}

main#topo .records-section .records-guide strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

main#topo .records-section .records-guide p {
  grid-column: 2;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 860px) {
  main#topo .records-section {
    grid-template-columns: 1fr;
  }

  main#topo .records-section .attachment-preview {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  main#topo .records-section .records-guide article {
    grid-template-columns: 1fr;
    transform: none;
  }

  main#topo .records-section .record-window {
    height: 150px;
  }

  main#topo .records-section .records-guide p {
    grid-column: auto;
  }
}

main#topo .records-section {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: center;
}

main#topo .records-section .attachment-preview {
  max-width: 620px;
  margin-left: auto;
}

main#topo .records-section .records-guide {
  display: grid;
  gap: 14px;
}

main#topo .records-section .records-guide article {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 150px;
  padding: 14px;
  border: 1px solid #dce8ff;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(16, 40, 67, 0.09);
}

main#topo .records-section .records-guide article:nth-child(1) {
  transform: translateX(-10px);
}

main#topo .records-section .records-guide article:nth-child(2) {
  transform: translateX(14px);
}

main#topo .records-section .records-guide article:nth-child(3) {
  transform: translateX(-4px);
}

main#topo .records-section .record-window {
  position: relative;
  height: 118px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #cfe5f7;
  border-radius: 10px;
  background: #eff8ff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

main#topo .records-section .record-window img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

main#topo .records-section .record-window-alerts img {
  object-position: center top;
}

main#topo .records-section .record-window-class img {
  object-position: center 55%;
}

main#topo .records-section .record-window-notify img {
  object-position: center bottom;
}

main#topo .records-section .records-guide strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

main#topo .records-section .records-guide p {
  grid-column: 2;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 860px) {
  main#topo .records-section {
    grid-template-columns: 1fr;
  }

  main#topo .records-section .attachment-preview {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  main#topo .records-section .records-guide article {
    grid-template-columns: 1fr;
    transform: none;
  }

  main#topo .records-section .record-window {
    height: 150px;
  }

  main#topo .records-section .records-guide p {
    grid-column: auto;
  }
}

.records-section {
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: center;
}

.records-section .attachment-preview {
  max-width: 620px;
  margin-left: auto;
}

.records-section .records-guide {
  display: grid;
  gap: 14px;
}

.records-section .records-guide article {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 150px;
  padding: 14px;
  border: 1px solid #dce8ff;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(16, 40, 67, 0.09);
}

.records-section .records-guide article:nth-child(1) {
  transform: translateX(-10px);
}

.records-section .records-guide article:nth-child(2) {
  transform: translateX(14px);
}

.records-section .records-guide article:nth-child(3) {
  transform: translateX(-4px);
}

.records-section .record-window {
  position: relative;
  height: 118px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #cfe5f7;
  border-radius: 10px;
  background: #eff8ff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.records-section .record-window img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.records-section .record-window-alerts img {
  object-position: center top;
}

.records-section .record-window-class img {
  object-position: center 55%;
}

.records-section .record-window-notify img {
  object-position: center bottom;
}

.records-section .records-guide strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.records-section .records-guide p {
  grid-column: 2;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 860px) {
  .records-section {
    grid-template-columns: 1fr;
  }

  .records-section .attachment-preview {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .records-section .records-guide article {
    grid-template-columns: 1fr;
    transform: none;
  }

  .records-section .record-window {
    height: 150px;
  }

  .records-section .records-guide p {
    grid-column: auto;
  }
}

.records-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid #dce8ff;
  border-radius: 14px;
  background: #eff8ff;
  box-shadow: 0 18px 44px rgba(16, 40, 67, 0.08);
}

.records-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.records-guide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.records-guide article {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 150px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 40, 67, 0.05);
}

.record-window {
  position: relative;
  height: 154px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #dce8ff;
  border-radius: 8px;
  background: #eff8ff;
}

.record-window img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.record-window-alerts img {
  object-position: center top;
}

.record-window-class img {
  object-position: center 54%;
}

.record-window-notify img {
  object-position: center bottom;
}

.records-guide strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.records-guide p {
  grid-column: 2;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .records-guide article {
    grid-template-columns: 1fr;
  }

  .record-window {
    height: 150px;
  }

  .records-guide p {
    grid-column: auto;
  }
}

.steps-panel div {
  gap: 12px;
}

.steps-panel .step-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: var(--orange);
  background: #fff1e9;
}

.steps-panel .step-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#fluxo .organization-side {
  grid-template-columns: minmax(0, 1fr) 228px;
  gap: 22px;
  align-items: center;
}

#fluxo .organization-side .flow {
  order: 1;
  gap: 10px;
}

#fluxo .organization-side .compact-phone {
  order: 2;
  justify-content: center;
}

#fluxo .flow div {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px 14px;
  min-height: 94px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fbfbfa;
}

#fluxo .flow span {
  width: 42px;
  height: 42px;
  font-size: 16px;
}

#fluxo .flow strong {
  font-size: 19px;
}

#fluxo .flow p {
  grid-column: 2;
  font-size: 14px;
  line-height: 1.45;
}

#fluxo .compact-phone .phone-frame {
  width: 210px;
  min-height: 420px;
}

#fluxo .compact-phone .phone-screen {
  min-height: 368px;
  padding: 16px;
}

@media (max-width: 760px) {
  #fluxo .organization-side {
    grid-template-columns: 1fr;
  }

  #fluxo .organization-side .compact-phone {
    order: 2;
  }

  #fluxo .organization-side .flow {
    order: 1;
  }
}

.visual-section h2 {
  color: #192f5d;
}

#operacao .feature-card {
  background: #ffffff;
}

#fluxo .flow div {
  background: #fbfbfa;
}

#fluxo .organization-side {
  grid-template-columns: minmax(0, 1fr) 230px;
  align-items: center;
}

#fluxo .organization-side .flow {
  order: 1;
}

#fluxo .compact-phone {
  order: 2;
}

#fluxo .flow div {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px 16px;
  min-height: 104px;
  padding: 16px 18px;
}

#fluxo .flow span {
  width: 40px;
  height: 40px;
}

#fluxo .flow strong {
  font-size: 20px;
}

#fluxo .flow p {
  grid-column: 2;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  #fluxo .organization-side {
    grid-template-columns: 1fr;
  }

  #fluxo .compact-phone {
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .hero-visual {
    padding-bottom: 190px;
  }

  .hero-phone {
    position: absolute;
    right: -10px;
    bottom: 78px;
    margin: 0;
    transform: scale(0.62);
    transform-origin: bottom right;
  }
}

@media (max-width: 640px) {
  .hero-visual {
    padding-bottom: 190px;
  }

  .hero-phone {
    position: absolute;
    right: -18px;
    bottom: 96px;
    margin: 0;
    transform: scale(0.58);
    transform-origin: bottom right;
  }
}

@media (max-width: 980px) {
  .hero-visual {
    padding-bottom: 190px;
  }

  .hero-phone {
    position: absolute;
    right: -10px;
    bottom: 14px;
    margin: 0;
    transform: scale(0.62);
    transform-origin: bottom right;
  }
}

@media (max-width: 640px) {
  .hero-visual {
    padding-bottom: 205px;
  }

  .hero-phone {
    right: -18px;
    bottom: 18px;
    transform: scale(0.58);
  }
}

.hero-support-section {
  width: min(1180px, calc(100% - 32px));
  margin: -22px auto 78px;
  padding: 28px;
  border: 1px solid rgba(230, 234, 240, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 60px rgba(16, 40, 67, 0.08);
  backdrop-filter: blur(14px);
}

.hero-support-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr;
  gap: 24px;
  align-items: start;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading.compact h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.hero-support-section .hero-stats {
  max-width: none;
}

.hero-support-section .hero-highlights {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: none;
  margin-top: 0;
}

@media (max-width: 980px) {
  .hero-support-section {
    margin: 0 auto 58px;
    padding: 20px;
  }

  .hero-support-inner {
    grid-template-columns: 1fr;
  }

  .hero-support-section .hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-support-section {
    width: calc(100% - 32px);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .section-heading.compact {
    padding: 0 2px;
  }

  .hero-support-section .hero-highlights {
    grid-template-columns: 1fr;
  }
}

.hero h1 {
  display: block;
}

.hero h1 span {
  display: block;
}

.hero-title-highlight {
  color: var(--orange);
  font-family: "Inter Variable", "Inter", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

@media (max-width: 640px) {
  .hero h1 {
    line-height: 0.98;
  }

  .hero-title-highlight {
    display: block;
    font-size: 1.08em;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 132px;
  height: auto;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
  color: #344054;
}

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

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.primary-button {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(21, 94, 239, 0.26);
}

.secondary-button {
  color: var(--blue);
  background: #fff;
  border: 1px solid #d7e3ff;
}

.section-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 54px;
  align-items: center;
  min-height: 720px;
  padding: 92px 0 74px;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.hero-copy {
  max-width: 680px;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 760px;
  margin: 0;
}

.hero-stats div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 16px;
  color: var(--brand-blue, #155eef);
  background: #dff0ff;
}

.hero-stats div:nth-child(2) .stat-icon {
  color: #087443;
  background: #e8fff2;
}

.hero-stats div:nth-child(3) .stat-icon {
  color: var(--orange, #e46e43);
  background: #ffe1cf;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-stats dt {
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
}

.product-shot {
  overflow: hidden;
  border: 1px solid rgba(21, 94, 239, 0.14);
  border-radius: 0 0 14px 14px;
  background: #fff;
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.monitor-mockup {
  position: relative;
  width: 100%;
  max-width: 650px;
  filter: drop-shadow(0 26px 56px rgba(16, 40, 67, 0.16));
}

.monitor-frame {
  overflow: hidden;
  padding: 10px;
  border: 2px solid rgba(31, 90, 147, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(145deg, #ffffff, #eef6ff);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.8),
    0 18px 52px rgba(16, 40, 67, 0.12);
}

.monitor-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 14px 14px 0 0;
  background: #15314d;
}

.monitor-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff6b5f;
}

.monitor-bar span:nth-child(2) {
  background: #ffbf47;
}

.monitor-bar span:nth-child(3) {
  background: #20b486;
}

.monitor-neck {
  width: 86px;
  height: 34px;
  margin: 0 auto;
  background: linear-gradient(180deg, #dce8f6, #b8c9da);
  border: 1px solid rgba(31, 90, 147, 0.18);
  border-top: 0;
}

.monitor-base {
  width: 210px;
  height: 18px;
  margin: 0 auto;
  border-radius: 999px 999px 18px 18px;
  background: linear-gradient(180deg, #dce8f6, #aebfd1);
  box-shadow: 0 14px 28px rgba(16, 40, 67, 0.12);
}

.note-card small,
.kpi-board small {
  display: block;
  margin-bottom: 5px;
  color: #667085;
  font-weight: 700;
}

.activity-card,
.note-card,
.kpi-board article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.page-shell {
  background: #fff;
}

.intro,
.feature-band,
.visual-section,
.content-grid,
.split-section,
.report-section,
.security-section,
.cta-section {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.intro {
  max-width: 900px;
}

.intro p {
  font-size: 20px;
}

.feature-band,
.visual-section,
.split-section,
.report-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.flow {
  display: grid;
  gap: 14px;
}

.organization-side {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.compact-phone .phone-frame {
  width: 218px;
  min-height: 440px;
}

.compact-phone .phone-screen {
  min-height: 388px;
  padding: 18px;
}

.compact-phone .phone-screen strong {
  font-size: 23px;
}

.compact-phone .phone-button {
  font-size: 13px;
}

.flow div {
  display: grid;
  grid-template-columns: 54px 150px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 8px;
  background: #f7f9fc;
  border: 1px solid var(--line);
}

.flow span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.flow strong {
  font-size: 22px;
}

.flow p {
  margin: 0;
  font-size: 15px;
}

.visual-section {
  border-top: 1px solid var(--line);
}

.wide-shot {
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.wide-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cards-grid.compact {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 40, 67, 0.06);
}

.feature-card p {
  font-size: 15px;
}

.split-section,
.report-section,
.security-section {
  border-top: 1px solid var(--line);
}

.steps-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 14px;
  background: #f4f8ff;
}

.steps-panel div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dce8ff;
  font-weight: 800;
}

.steps-panel span {
  color: var(--blue);
  font-weight: 900;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-list span {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #344054;
  background: #fff;
  font-weight: 800;
}

.attachment-preview {
  display: grid;
  gap: 16px;
}

.note-card {
  padding: 24px;
}

.note-card.large {
  min-height: 210px;
}

.note-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.thumb-grid span {
  display: block;
  aspect-ratio: 1 / 0.74;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(21, 94, 239, 0.22), rgba(6, 174, 212, 0.22)),
    linear-gradient(45deg, #f2f4f7 25%, #fff 25%, #fff 50%, #f2f4f7 50%, #f2f4f7 75%, #fff 75%);
  background-size: auto, 20px 20px;
  border: 1px solid var(--line);
}

.kpi-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.kpi-board article {
  padding: 22px;
}

.kpi-board strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.kpi-board span {
  color: var(--muted);
  font-size: 14px;
}

.security-section {
  max-width: 900px;
}

.security-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 48px;
  align-items: center;
  max-width: 1080px;
}

.security-visual {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 28px;
  border: 1px solid #dce8ff;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 18%, rgba(21, 94, 239, 0.14), rgba(21, 94, 239, 0) 38%),
    linear-gradient(180deg, #f4f8ff, #ffffff);
  box-shadow: 0 22px 56px rgba(16, 40, 67, 0.1);
}

.security-shield {
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  border-radius: 38px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), #155eef);
  box-shadow: 0 22px 42px rgba(31, 90, 147, 0.24);
}

.security-lock {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-top: -36px;
  border: 6px solid #fff;
  border-radius: 24px;
  color: var(--orange);
  background: #fff1e8;
  box-shadow: 0 16px 30px rgba(16, 40, 67, 0.14);
}

.security-shield svg,
.security-lock svg {
  width: 58%;
  height: 58%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.security-visual span {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #15314d;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.cta-section {
  width: 100%;
  margin: 0;
  padding: 88px max(16px, calc((100% - 1080px) / 2));
  color: #fff;
  background: linear-gradient(135deg, #155eef 0%, #0e9384 100%);
}

.cta-section .eyebrow,
.cta-section p,
.cta-section h2 {
  color: #fff;
}

.cta-section p {
  max-width: 740px;
}

.primary-button.light {
  color: var(--blue);
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0;
  color: var(--muted);
}

.footer strong {
  color: var(--blue);
  font-size: 20px;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero,
  .feature-band,
  .visual-section,
  .split-section,
  .report-section,
  .security-section {
    grid-template-columns: 1fr;
  }

  .organization-side {
    grid-template-columns: 1fr;
  }

  .compact-phone {
    justify-content: center;
    order: 2;
  }

  .organization-side .flow {
    order: 1;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  .hero-stats,
  .cards-grid,
  .cards-grid.compact,
  .kpi-board {
    grid-template-columns: 1fr;
  }

  .flow div {
    grid-template-columns: 44px 1fr;
  }

  .flow p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    gap: 10px;
    padding: 10px;
  }

  .brand img {
    width: 116px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy,
  .intro p {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .intro,
  .feature-band,
  .content-grid,
  .split-section,
  .report-section,
  .security-section {
    padding: 62px 0;
  }

  .thumb-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    flex-direction: column;
  }
}

body {
  background: linear-gradient(180deg, #fffdf8 0%, #fff4e8 30%, #eef6ff 62%, #ffffff 100%);
}

.header-cta,
.primary-button {
  background: linear-gradient(135deg, var(--orange-strong), var(--orange));
  box-shadow: 0 14px 30px rgba(228, 110, 67, 0.25);
}

.secondary-button {
  color: var(--brand-blue);
  border-color: #cfe5f7;
}

.nav a:hover,
.eyebrow,
.kicker {
  color: var(--orange);
}

.hero-stats div,
.flow div,
.feature-card,
.kpi-board article {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(16, 40, 67, 0.06);
}

.flow span {
  background: var(--brand-blue);
}

.with-phone {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 44px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.with-phone .cards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.steps-panel {
  max-width: 360px;
  margin-left: auto;
  padding: 26px 18px 18px;
  border: 10px solid #15314d;
  border-radius: 34px;
  background: linear-gradient(180deg, #f4f8ff, #ffffff);
  box-shadow: 0 22px 56px rgba(16, 40, 67, 0.16);
}

.steps-panel span {
  color: var(--orange);
}

.kpi-board strong {
  color: var(--brand-blue);
}

.cta-section {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--green) 100%);
}

.primary-button.light,
.footer strong {
  color: var(--brand-blue);
}

@media (max-width: 980px) {
  .with-phone,
  .benefits-section {
    grid-template-columns: 1fr;
  }

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

  .with-phone .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-phone {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 24px;
    transform: none;
  }

  .steps-panel {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .stats-band,
  .feature-groups,
  .benefits-section,
  .faq-section {
    padding: 62px 0;
  }

  .hero-highlights,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    width: min(248px, 100%);
  }

  .benefit-card {
    min-height: auto;
    padding: 24px;
  }
}
@media (max-width: 980px) {
  .hero-visual {
    padding-bottom: 190px;
  }

  .hero-phone {
    position: absolute;
    right: -10px;
    bottom: 78px;
    margin: 0;
    transform: scale(0.62);
    transform-origin: bottom right;
  }
}

@media (max-width: 640px) {
  .hero-visual {
    padding-bottom: 190px;
  }

  .hero-phone {
    position: absolute;
    right: -18px;
    bottom: 96px;
    margin: 0;
    transform: scale(0.58);
    transform-origin: bottom right;
  }
}

#operacao h2 {
  color: #1f5131;
}

#visitantes h2 {
  color: #1f3f60;
}

.pastel-lilac h2 {
  color: #5e437a;
}

.pastel-yellow h2 {
  color: #676242;
}

.pastel-orange h2 {
  color: #6a4125;
}

#relatorios h2 {
  color: #243f5b;
}

.app-screenshot-screen {
  padding: 0;
  background: #f2f6fb;
}

.app-screenshot-screen::before,
.app-screenshot-screen::after {
  display: none;
}

.app-screenshot-screen img {
  display: block;
  width: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
}

#fluxo .compact-phone .app-screenshot-screen {
  min-height: 386px;
  padding: 0;
}

#fluxo .compact-phone .app-screenshot-screen img {
  height: 386px;
}

.hero-phone .hero-app-screen,
.communication-phone .app-screenshot-screen {
  overflow: hidden;
  background: #eef6ff;
}

.hero-phone .hero-app-screen img,
.communication-phone .app-screenshot-screen img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  background: #eef6ff;
}

main#topo .records-section {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
  align-items: center;
}

main#topo .records-section .attachment-preview {
  max-width: 660px;
  margin-left: auto;
}

main#topo .records-section .records-guide {
  display: grid;
  gap: 16px;
}

main#topo .records-section .records-guide article {
  display: grid;
  grid-template-columns: minmax(220px, 250px) minmax(0, 1fr);
  gap: 18px 22px;
  align-items: center;
  min-height: 188px;
  padding: 16px;
  border: 1px solid #d8e7f6;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(16, 40, 67, 0.1);
}

main#topo .records-section .records-guide article:nth-child(1) {
  transform: translateX(-8px);
}

main#topo .records-section .records-guide article:nth-child(2) {
  transform: translateX(14px);
}

main#topo .records-section .records-guide article:nth-child(3) {
  transform: translateX(-2px);
}

main#topo .records-section .record-window {
  display: grid;
  place-items: center;
  width: 100%;
  height: 150px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #cfe5f7;
  border-radius: 10px;
  background: #f5faff;
}

main#topo .records-section .record-window img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  transform: none;
}

main#topo .records-section .records-guide strong {
  align-self: end;
  color: #101828;
  font-size: 18px;
  line-height: 1.2;
}

main#topo .records-section .records-guide p {
  grid-column: 2;
  align-self: start;
  max-width: 300px;
  color: #59677d;
  font-size: 14px;
  line-height: 1.35;
}

@media (max-width: 860px) {
  main#topo .records-section {
    grid-template-columns: 1fr;
  }

  main#topo .records-section .attachment-preview {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  main#topo .records-section .records-guide article {
    grid-template-columns: 1fr;
    min-height: 0;
    transform: none;
  }

  main#topo .records-section .record-window {
    height: 178px;
  }

  main#topo .records-section .records-guide p {
    grid-column: auto;
    max-width: none;
  }
}

main#topo .records-section {
  grid-template-columns: minmax(300px, 0.72fr) minmax(540px, 1.28fr);
  gap: 56px;
  align-items: center;
}

main#topo .records-section > div:first-child {
  align-self: center;
}

main#topo .records-section .attachment-preview {
  max-width: 720px;
  margin-left: auto;
}

main#topo .records-section .records-guide {
  display: grid;
  gap: 20px;
}

main#topo .records-section .records-guide article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  min-height: 0;
  padding: 18px;
  border: 1px solid #d7e6f5;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 20px 48px rgba(16, 40, 67, 0.12);
}

main#topo .records-section .records-guide article:nth-child(1) {
  transform: translateX(-10px);
}

main#topo .records-section .records-guide article:nth-child(2) {
  transform: translateX(14px);
}

main#topo .records-section .records-guide article:nth-child(3) {
  transform: translateX(-4px);
}

main#topo .records-section .record-window {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 10px;
  overflow: visible;
  border: 1px solid #cde3f6;
  border-radius: 14px;
  background: #f5fbff;
}

main#topo .records-section .record-window img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  transform: none;
  border-radius: 10px;
}

main#topo .records-section .records-guide strong {
  margin-top: 4px;
  color: #101828;
  font-size: 19px;
  line-height: 1.2;
}

main#topo .records-section .records-guide p {
  grid-column: auto;
  max-width: 520px;
  color: #59677d;
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  main#topo .records-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  main#topo .records-section .attachment-preview {
    max-width: none;
    margin-left: 0;
  }

  main#topo .records-section .records-guide article {
    transform: none;
  }
}

@media (max-width: 640px) {
  main#topo .records-section .records-guide article {
    padding: 14px;
  }

  main#topo .records-section .record-window {
    padding: 8px;
  }
}

@media (min-width: 861px) and (max-width: 1040px) {
  main#topo .records-section {
    grid-template-columns: minmax(260px, 0.7fr) minmax(500px, 1.3fr);
    gap: 36px;
  }

  main#topo .records-section .attachment-preview {
    max-width: 560px;
  }
}

main#topo .records-section {
  display: block;
  padding: 78px 56px;
}

main#topo .records-section > div:first-child {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

main#topo .records-section > div:first-child h2 {
  max-width: 680px;
  margin-inline: auto;
}

main#topo .records-section > div:first-child p:not(.eyebrow) {
  max-width: 720px;
  margin-inline: auto;
}

main#topo .records-section .attachment-preview {
  max-width: 980px;
  margin: 0 auto;
}

main#topo .records-section .records-guide {
  display: grid;
  gap: 22px;
}

main#topo .records-section .records-guide article {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  gap: 28px;
  align-items: center;
  min-height: 0;
  padding: 22px;
  border: 1px solid #d7e6f5;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(16, 40, 67, 0.1);
  transform: none;
}

main#topo .records-section .records-guide article:nth-child(1),
main#topo .records-section .records-guide article:nth-child(2),
main#topo .records-section .records-guide article:nth-child(3) {
  transform: none;
}

main#topo .records-section .record-window {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 12px;
  overflow: visible;
  border: 1px solid #cde3f6;
  border-radius: 14px;
  background: #f5fbff;
}

main#topo .records-section .record-window img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  transform: none;
  border-radius: 10px;
}

main#topo .records-section .records-guide strong {
  align-self: end;
  color: #101828;
  font-size: 22px;
  line-height: 1.16;
}

main#topo .records-section .records-guide p {
  grid-column: 2;
  align-self: start;
  max-width: 320px;
  color: #59677d;
  font-size: 16px;
  line-height: 1.45;
}

@media (max-width: 860px) {
  main#topo .records-section {
    padding: 62px 24px;
  }

  main#topo .records-section .records-guide article {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  main#topo .records-section .records-guide p {
    grid-column: auto;
    max-width: none;
  }
}

@media (min-width: 861px) {
  main#topo .records-section {
    padding: 78px 56px;
  }

  main#topo .records-section .attachment-preview {
    max-width: 980px;
  }

  main#topo .records-section .records-guide {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 22px;
    align-items: stretch;
  }

  main#topo .records-section .records-guide article {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
  }

  main#topo .records-section .records-guide article:first-child {
    grid-row: span 2;
    justify-content: center;
  }

  main#topo .records-section .records-guide article:first-child .record-window {
    padding: 14px;
  }

  main#topo .records-section .records-guide article:first-child .records-guide strong,
  main#topo .records-section .records-guide article:first-child strong {
    font-size: 22px;
  }

  main#topo .records-section .record-window {
    padding: 10px;
  }

  main#topo .records-section .record-window img {
    width: 100%;
    height: auto;
  }

  main#topo .records-section .records-guide strong {
    margin-top: 2px;
    font-size: 19px;
  }

  main#topo .records-section .records-guide p {
    max-width: none;
    font-size: 15px;
  }
}

main#topo .records-section {
  display: block;
  padding: 88px 24px 76px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 28%, rgba(21, 94, 239, 0.2), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(230, 105, 67, 0.2), transparent 30%),
    linear-gradient(180deg, #101828 0%, #132f4f 100%);
  color: #ffffff;
}

main#topo .records-section > div:first-child {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

main#topo .records-section > div:first-child .eyebrow {
  color: #ff8a5b;
}

main#topo .records-section > div:first-child h2 {
  max-width: 780px;
  margin-inline: auto;
  color: #ffffff;
}

main#topo .records-section > div:first-child p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.72);
}

main#topo .records-section .attachment-preview {
  max-width: 1080px;
  margin: 0 auto;
}

main#topo .records-section .records-guide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr) minmax(0, 1fr);
  gap: 18px;
  align-items: end;
}

main#topo .records-section .records-guide article {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  min-height: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.28);
  transform: none;
}

main#topo .records-section .records-guide article:nth-child(1) {
  margin-top: 86px;
}

main#topo .records-section .records-guide article:nth-child(2) {
  align-self: start;
}

main#topo .records-section .records-guide article:nth-child(3) {
  margin-top: 132px;
}

main#topo .records-section .record-window {
  display: grid;
  place-items: center;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(174, 215, 255, 0.26);
  border-radius: 18px;
  background: rgba(247, 249, 252, 0.96);
}

main#topo .records-section .record-window-alerts {
  aspect-ratio: 1.18;
}

main#topo .records-section .record-window-class {
  aspect-ratio: 1.02;
}

main#topo .records-section .record-window-notify {
  aspect-ratio: 1.34;
}

main#topo .records-section .record-window img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  transform: none;
  border-radius: 14px;
}

main#topo .records-section .records-guide strong {
  display: block;
  width: 100%;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.16;
  text-align: center;
}

main#topo .records-section .records-guide p {
  display: block;
  width: 100%;
  grid-column: auto;
  max-width: none;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}

main#topo .records-section {
  background:
    radial-gradient(circle at 18% 28%, rgba(21, 94, 239, 0.18), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(230, 105, 67, 0.22), transparent 30%),
    linear-gradient(180deg, #0e0335 0%, #132f4f 100%);
}

main#topo .content-grid.with-phone .cards-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

main#topo .content-grid.with-phone .cards-grid.compact .feature-card {
  min-height: 165px;
  padding: 18px;
}

main#topo .content-grid.with-phone .cards-grid.compact .feature-card h3 {
  font-size: 20px;
  line-height: 1.15;
}

main#topo .content-grid.with-phone .cards-grid.compact .feature-card p {
  font-size: 14px;
  line-height: 1.45;
}

.communication-phone .phone-frame {
  width: 270px;
  min-height: 528px;
}

.communication-phone .phone-screen {
  height: 472px;
  min-height: 472px;
  padding: 0;
}

.communication-phone .app-screenshot-screen img {
  display: block;
  width: 100%;
  height: 100% !important;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
  background: #eef6ff;
}

@media (max-width: 700px) {
  main#topo .content-grid.with-phone .cards-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  main#topo .content-grid.with-phone .cards-grid.compact .feature-card {
    min-height: 165px;
    padding: 14px;
  }

  main#topo .content-grid.with-phone .cards-grid.compact .feature-card h3 {
    font-size: 17px;
  }

  main#topo .content-grid.with-phone .cards-grid.compact .feature-card p {
    font-size: 13px;
  }
}

@media (max-width: 860px) {
  main#topo .records-section .records-guide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  main#topo .records-section .records-guide article:nth-child(1),
  main#topo .records-section .records-guide article:nth-child(2),
  main#topo .records-section .records-guide article:nth-child(3) {
    margin-top: 0;
    align-self: stretch;
  }

  main#topo .records-section .records-guide article:nth-child(2) {
    grid-row: span 2;
  }
}

@media (max-width: 640px) {
  main#topo .records-section {
    padding: 62px 20px;
    border-radius: 22px;
  }

  main#topo .records-section .records-guide {
    grid-template-columns: 1fr;
  }

  main#topo .records-section .records-guide article:nth-child(2) {
    grid-row: auto;
  }
}

body {
  padding-top: 94px;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 100;
  margin: 0;
  transform: translateX(-50%);
}

.header-cta,
.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, #20b486 0%, #159a72 100%);
  box-shadow: 0 16px 36px rgba(32, 180, 134, 0.32);
}

.header-cta:hover,
.primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(32, 180, 134, 0.4);
}

.primary-button.light.final-signup-cta {
  min-height: 58px;
  padding: 0 32px;
  color: #ffffff;
  background: linear-gradient(135deg, #20b486 0%, #0f8f68 100%);
  box-shadow: 0 18px 44px rgba(32, 180, 134, 0.42);
  animation: ctaPulse 1.8s ease-in-out infinite;
}

.primary-button.light.final-signup-cta:hover {
  color: #ffffff;
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 18px 44px rgba(32, 180, 134, 0.42);
  }

  50% {
    transform: scale(1.035);
    box-shadow: 0 22px 58px rgba(32, 180, 134, 0.62);
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 86px;
  }

  .site-header {
    top: 10px;
  }

  .primary-button.light.final-signup-cta {
    width: 100%;
    padding: 0 22px;
    white-space: normal;
    text-align: center;
  }
}

.video-button {
  gap: 10px;
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.button-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 3, 53, 0.76);
  backdrop-filter: blur(8px);
}

.video-modal-dialog {
  position: relative;
  width: min(920px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: #101828;
  box-shadow: 0 28px 90px rgba(16, 40, 67, 0.38);
}

.video-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #20b486, #159a72);
  box-shadow: 0 14px 32px rgba(16, 40, 67, 0.28);
  font: 800 28px/1 "Inter", Arial, sans-serif;
  cursor: pointer;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

body.video-open {
  overflow: hidden;
}

main#topo .benefit-card.light {
  background:
    radial-gradient(circle at 12% 8%, rgba(32, 180, 134, 0.1), transparent 32%),
    #ffffff;
}

main#topo .benefit-card.light h2 {
  max-width: 620px;
}

main#topo .benefit-card.light .benefit-list {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

main#topo .benefit-card.light .benefit-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(21, 94, 239, 0.14);
  color: #5b6b83;
  line-height: 1.5;
}

main#topo .benefit-card.light .benefit-list li:first-child {
  border-top: 0;
}

main#topo .benefit-card.light .benefit-list strong {
  display: block;
  margin-bottom: 4px;
  color: #101828;
  font-size: 18px;
  line-height: 1.2;
}

main#topo .benefit-card.light .benefit-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: #159a72;
  background: #e7fff3;
  box-shadow: inset 0 0 0 1px rgba(32, 180, 134, 0.14);
}

main#topo .benefit-card.light .benefit-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 640px) {
  main#topo .benefit-card.light .benefit-list li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 0;
  }

  main#topo .benefit-card.light .benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

main#topo .benefit-card.light .benefit-list strong {
    font-size: 17px;
  }
}

main#topo .hero-title-highlight {
  font-family: "Inter Variable", "Inter", Arial, sans-serif;
  font-weight: 900;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.footer-logo img {
  display: block;
  width: 124px;
  height: auto;
}

.motion-ready .motion-item {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 260ms ease;
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .motion-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready .phone-mockup.motion-item,
.motion-ready .phone-mockup.motion-item.is-visible {
  transform: none;
  transition: opacity 720ms ease;
  transition-delay: var(--motion-delay, 0ms);
}

.motion-ready .phone-mockup.is-visible .phone-frame {
  animation: phonePulse 5.6s ease-in-out 720ms infinite;
}

.motion-ready .feature-card.is-visible,
.motion-ready .resource-grid article.is-visible,
.motion-ready .records-guide article.is-visible,
.motion-ready .benefit-card.is-visible,
.motion-ready .security-visual.is-visible {
  animation: blockFloat 7s ease-in-out 900ms infinite;
}

.feature-card:hover,
.resource-grid article:hover,
.records-guide article:hover,
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(16, 40, 67, 0.12);
}

@keyframes phonePulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    filter: drop-shadow(0 0 0 rgba(32, 180, 134, 0));
  }

  50% {
    transform: translate3d(0, -6px, 0) scale(1.012);
    filter: drop-shadow(0 18px 24px rgba(32, 180, 134, 0.12));
  }
}

@keyframes blockFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -4px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .motion-item,
  .motion-ready .motion-item.is-visible,
  .motion-ready .phone-mockup.is-visible .phone-frame,
  .motion-ready .feature-card.is-visible,
  .motion-ready .resource-grid article.is-visible,
  .motion-ready .records-guide article.is-visible,
  .motion-ready .benefit-card.is-visible,
  .motion-ready .security-visual.is-visible {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 640px) {
  .footer-logo img {
    width: 112px;
  }
}

/* Override: reduzir tamanho do mockup de celular no primeiro .hero.section-band em mobile */
@media (max-width: 860px) {
  .hero.section-band .hero-visual {
    padding-bottom: 160px; /* reduzir espaço vertical extra */
  }

  .hero.section-band .hero-phone {
    position: absolute;
    right: -6px;
    bottom: 36px;
    margin: 0;
    transform: scale(0.56) rotate(0deg);
    transform-origin: bottom right;
  }

  .hero.section-band .hero-phone .phone-frame {
    width: 180px;
    min-height: 360px;
    padding: 12px 10px 12px;
  }

  .hero.section-band .hero-phone .phone-screen {
    min-height: 300px;
    padding: 12px;
  }
}

@media (max-width: 640px) {
  .hero.section-band .hero-visual {
    padding-bottom: 140px;
  }

  .hero.section-band .hero-phone {
    right: -8px;
    bottom: 18px;
    transform: scale(0.48) rotate(0deg);
    transform-origin: bottom right;
  }

  .hero.section-band .hero-phone .phone-frame {
    width: 156px;
    min-height: 320px;
    padding: 10px 8px 10px;
  }

  .hero.section-band .hero-phone .phone-screen {
    min-height: 260px;
    padding: 8px;
  }
}
