:root {
  --bg: #04070d;
  --bg-2: #07111d;
  --panel: rgba(10, 18, 31, 0.88);
  --panel-2: rgba(12, 22, 38, 0.92);
  --line: rgba(120, 162, 220, 0.14);
  --line-strong: rgba(120, 162, 220, 0.28);
  --text: #f4f8ff;
  --muted: #94a8c6;
  --accent: #5c95d6;
  --accent-2: #7da8d8;
  --accent-soft: rgba(92, 149, 214, 0.14);
  --success: #39d27d;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1260px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(92, 149, 214, 0.12), transparent 28%),
    radial-gradient(circle at top left, rgba(125, 168, 216, 0.06), transparent 22%),
    linear-gradient(180deg, #03060b 0%, #050a12 32%, #04070d 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(3, 7, 13, 0.72);
  border-bottom: 1px solid rgba(130, 164, 214, 0.08);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-logo {
  width: 172px;
  height: auto;
  object-fit: contain;
  display: block;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
  color: #dbe5f6;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav a {
  transition: 0.25s ease;
}

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

.nav-login {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #07111d !important;
  background: linear-gradient(180deg, #ffffff 0%, #dceaff 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(92, 149, 214, 0.22);
  font-weight: 800;
}

.nav-login:hover {
  color: #07111d !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(92, 149, 214, 0.32);
}

.hero {
  padding: 0 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 30px;
  align-items: stretch;
}

.hero-copy {
  padding: 0 4px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: translateY(20px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(92, 149, 214, 0.08);
  color: var(--accent-2);
  border: 1px solid rgba(125, 168, 216, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.93;
  letter-spacing: -0.045em;
  max-width: 760px;
  margin-bottom: 22px;
}

.hero h1 .accent {
  color: #74a6de;
}

.hero p {
  max-width: 620px;
  font-size: 1.16rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 26px;
  letter-spacing: 0.015em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  letter-spacing: 0.01em;
}

.button-primary {
  color: white;
  background: linear-gradient(180deg, #6c9fd8 0%, #4d84c5 100%);
  box-shadow: 0 16px 30px rgba(76, 132, 197, 0.22);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(76, 132, 197, 0.32);
}

.button-secondary {
  border: 1px solid rgba(140, 174, 218, 0.22);
  color: #ecf3ff;
  background: rgba(10, 16, 27, 0.66);
}

.button-secondary:hover {
  border-color: rgba(140, 174, 218, 0.38);
  background: rgba(13, 21, 35, 0.92);
  transform: translateY(-2px);
}

.hero-actions .button-secondary {
  display: none !important;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(135, 170, 217, 0.14);
  background: url("capainicial.jpg") center/cover no-repeat;
  aspect-ratio: 1 / 1;
  min-height: unset;
  box-shadow: var(--shadow);
  transform: translateY(20px);
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

.hero-visual::before,
.hero-visual::after {
  display: none;
  content: none;
}

.hero-screen,
.screen-body {
  display: none;
}

.realtime-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  border-radius: 22px;
  background: rgba(6, 12, 21, 0.92);
  border: 1px solid rgba(137, 171, 218, 0.14);
  padding: 18px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.realtime-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.realtime-head strong {
  font-size: 1.15rem;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #74e295;
  font-size: 0.95rem;
}

.live-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4fe882;
  box-shadow: 0 0 0 0 rgba(79, 232, 130, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 232, 130, 0.65);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(79, 232, 130, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(79, 232, 130, 0);
  }
}

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

.metric {
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(154, 184, 228, 0.08);
}

.metric-value {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 0.88rem;
  color: var(--muted);
}

section {
  padding: 46px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 24px;
}

.overline {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-head h3 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.how-wrap {
  border: 1px solid rgba(132, 168, 220, 0.1);
  background: linear-gradient(180deg, rgba(7, 12, 20, 0.78), rgba(5, 10, 16, 0.9));
  border-radius: 28px;
  padding: 28px 22px 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.how-flow {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}

.flow-card {
  min-height: 190px;
  padding: 20px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(11, 19, 32, 0.96), rgba(8, 14, 24, 0.98));
  border: 1px solid rgba(131, 168, 222, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
}

.flow-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -50% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(92, 149, 214, 0.14), transparent 70%);
  pointer-events: none;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6ea3df;
  font-size: 1.7rem;
  font-weight: 700;
  opacity: 0.9;
}

.step-pill {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #6f9fd4 0%, #4d84c5 100%);
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: rgba(92, 149, 214, 0.08);
  border: 1px solid rgba(137, 171, 218, 0.14);
  color: #84b2e5;
  font-size: 1.7rem;
  font-weight: 700;
}

.step-icon svg {
  width: 42px;
  height: 42px;
  stroke: #6ea8ff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.step-desc {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.9rem;
}

.benefits-row {
  display: none !important;
}

#pontos {
  background: #ffffff;
  color: #07111d;
  padding-top: 70px;
  padding-bottom: 120px;
  overflow: hidden;
}

#pontos .container {
  width: 100%;
  max-width: none;
  padding: 0;
  overflow: hidden;
}

#pontos .section-head {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto 34px;
}

.titulo-pontos {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #07111d;
}

#pontos .section-head h3 {
  color: #07111d;
}

#pontos .section-head p {
  color: #52627a;
}

.locations-grid,
#gridAmbientes {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 24px;
  overflow-x: auto !important;
  overflow-y: visible !important;
  scroll-behavior: auto !important;
  padding: 34px 90px 54px !important;
  width: 100%;
  max-width: 100%;
}

.locations-grid::-webkit-scrollbar,
#gridAmbientes::-webkit-scrollbar {
  display: none;
}

.locations-grid::before,
#gridAmbientes::before,
.locations-grid::after,
#gridAmbientes::after {
  content: "";
  flex: 0 0 40px;
}

.location-card,
#gridAmbientes .location-card {
  flex: 0 0 360px !important;
  min-width: 360px !important;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #ffffff;
  border: 1px solid rgba(7, 17, 29, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(7, 17, 29, 0.10);
  transform-origin: center center;
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  will-change: transform;
}

.location-card:hover {
  position: relative;
  z-index: 10;
  transform: translateY(-16px) scale(1.08);
  border-color: rgba(77, 132, 197, 0.34);
  box-shadow: 0 34px 82px rgba(7, 17, 29, 0.24);
}

.location-card img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(7, 17, 29, 0.08);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.location-card:hover img {
  transform: scale(1.045);
}

.location-body {
  padding: 18px 20px 22px;
}

.location-body strong {
  display: block;
  font-size: 1.28rem;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #07111d;
}

.location-body p {
  color: #52627a;
  line-height: 1.65;
  font-size: 1rem;
}

.location-flow {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(7, 17, 29, 0.10);
  color: #4d84c5;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
}

.location-flow::before {
  content: "👥";
  font-size: 1rem;
}

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

.benefit-card,
.cta-band {
  background: linear-gradient(180deg, rgba(10, 16, 27, 0.95), rgba(8, 13, 22, 0.98));
  border: 1px solid rgba(132, 168, 220, 0.1);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.benefit-card {
  padding: 26px;
  min-height: 190px;
  position: relative;
}

.benefit-card::before {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(92, 149, 214, 0.1);
  border: 1px solid rgba(137, 171, 218, 0.14);
  color: #7da8d8;
  font-size: 1.25rem;
}

.benefit-card:nth-child(1)::before {
  content: "📊";
}

.benefit-card:nth-child(2)::before {
  content: "✓";
  font-weight: 900;
  font-size: 1.4rem;
}

.benefit-card:nth-child(3)::before {
  content: "🎯";
}

.benefit-card h4 {
  font-size: 1.18rem;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.75;
}

.cta-band {
  margin-top: 22px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-band h4 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.cta-band p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-left: auto;
}

.clients-marquee-wrap,
.clients-marquee,
.client-box {
  display: none !important;
}

.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

#gridAmbientes .location-card:hover,
.locations-grid .location-card:hover {
  position: relative;
  z-index: 10;
  transform: translateY(-16px) scale(1.08);
  border-color: rgba(77, 132, 197, 0.34);
  box-shadow: 0 34px 82px rgba(7, 17, 29, 0.24);
}

.delay-1 {
  transition-delay: 0.04s;
}

.delay-2 {
  transition-delay: 0.08s;
}

.delay-3 {
  transition-delay: 0.12s;
}

.delay-4 {
  transition-delay: 0.16s;
}

.delay-5 {
  transition-delay: 0.2s;
}

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

  .hero-visual {
    min-height: 640px;
  }

  .metric-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .how-flow {
    grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
  }

  .flow-arrow {
    display: flex;
  }

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

  .location-card,
  #gridAmbientes .location-card {
    flex: 0 0 320px !important;
    min-width: 320px !important;
  }

  .location-card img {
    height: 250px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .site-header {
    background: rgba(3, 7, 13, 0.88);
  }

  .header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .brand-logo {
    width: 132px;
  }

  .nav {
    display: flex;
    margin-left: auto;
    gap: 0;
  }

  .nav a:not(.nav-login) {
    display: none;
  }

  .nav-login {
    min-height: 38px;
    padding: 0 17px;
    font-size: 0.9rem;
    display: inline-flex;
  }

  section {
    padding: 34px 0;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .overline {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
  }

  .section-head h3,
  .titulo-pontos {
    font-size: 1.16rem;
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .section-head p {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 26px;
    display: block;
  }

  .hero .container {
    display: block;
  }

  .hero-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .hero-copy {
    width: 100%;
    padding: 0;
    transform: none;
    align-items: center;
    text-align: left;
  }

  .eyebrow {
    display: none;
  }

  .hero h1 {
    width: fit-content;
    max-width: 350px;
    margin: 0 auto 18px;
    font-size: clamp(2.7rem, 11vw, 3.35rem);
    line-height: 0.9;
    letter-spacing: -0.065em;
    text-align: left;
  }

  .hero p {
    width: fit-content;
    max-width: 350px;
    margin: 0 auto;
    font-size: 0.78rem;
    line-height: 1.35;
    text-align: left;
    white-space: nowrap;
  }

  .hero-actions {
    display: none;
  }

  .hero-visual {
    margin-top: 6px;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    aspect-ratio: auto;
    min-height: auto;
    transform: none;
    overflow: visible;
  }

  .realtime-card {
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0;
    border-radius: 18px;
    padding: 12px;
    background: rgba(6, 12, 21, 0.92);
  }

  .realtime-head {
    margin-bottom: 10px;
  }

  .realtime-head strong {
    font-size: 0.92rem;
  }

  .live-dot {
    font-size: 0.72rem;
    gap: 6px;
  }

  .live-dot::before {
    width: 7px;
    height: 7px;
  }

  .metric-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

  .metric {
    border-radius: 12px;
    padding: 8px 6px;
    min-width: 0;
  }

  .metric-value {
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 4px;
  }

  .metric-label {
    font-size: 0.49rem;
    line-height: 1.15;
  }

  .how-wrap {
    padding: 18px 10px 20px;
    border-radius: 22px;
    overflow: hidden;
  }

  .how-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 12px minmax(0, 1fr) 12px minmax(0, 1fr) 12px minmax(0, 1fr);
    gap: 5px;
    align-items: stretch;
    margin-top: 18px;
  }

  .flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0.9;
  }

  .flow-card {
    min-height: 150px;
    padding: 9px 7px;
    border-radius: 14px;
  }

  .step-pill {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    font-size: 0.66rem;
    margin-bottom: 8px;
  }

  .step-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    margin-bottom: 8px;
  }

  .step-icon svg {
    width: 23px;
    height: 23px;
  }

  .step-title {
    font-size: 0.62rem;
    line-height: 1.15;
    margin-bottom: 6px;
  }

  .step-desc {
    font-size: 0.52rem;
    line-height: 1.35;
  }

  #pontos {
    padding-top: 42px;
    padding-bottom: 18px;
  }

  #pontos .section-head {
    width: min(var(--container), calc(100% - 24px));
    margin-bottom: 18px;
  }

  .locations-grid,
  #gridAmbientes {
    padding: 18px 18px 18px !important;
    gap: 16px;
  }

  .locations-grid::before,
  #gridAmbientes::before,
  .locations-grid::after,
  #gridAmbientes::after {
    flex: 0 0 0;
  }

  .location-card,
  #gridAmbientes .location-card {
    flex: 0 0 220px !important;
    min-width: 220px !important;
    min-height: 335px;
    border-radius: 18px;
  }

  .location-card img {
    height: 170px;
  }

  .location-body {
    padding: 13px;
  }

  .location-body strong {
    font-size: 0.9rem;
    margin-bottom: 7px;
  }

  .location-body p {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .location-flow {
    margin-top: 10px;
    padding-top: 10px;
    font-size: 0.68rem;
  }

  .diff-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .benefit-card {
    min-height: 150px;
    padding: 12px 10px;
    border-radius: 16px;
  }

  .benefit-card::before {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .benefit-card:nth-child(2)::before {
    font-size: 1rem;
  }

  .benefit-card h4 {
    font-size: 0.68rem;
    line-height: 1.15;
    margin-bottom: 8px;
  }

  .benefit-card p {
    font-size: 0.55rem;
    line-height: 1.38;
  }

  .cta-band {
    margin-top: 12px;
    padding: 16px 14px;
    border-radius: 18px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .cta-band h4 {
    font-size: 1.25rem;
    line-height: 1;
    margin-bottom: 6px;
  }

  .cta-band p {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .cta-actions {
    margin-left: auto;
    flex-shrink: 0;
  }

  .cta-actions .button-primary,
  .cta-actions .button-secondary {
    width: auto;
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.75rem;
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 122px;
  }

  .nav-login {
    min-height: 36px;
    padding: 0 15px;
    font-size: 0.84rem;
  }

  .header-inner {
    min-height: 70px;
  }

  .hero {
    padding: 26px 0 24px;
  }

  .hero h1 {
    max-width: 350px;
    font-size: 2.85rem;
    line-height: 0.9;
  }

  .hero p {
    max-width: 330px;
    font-size: 0.76rem;
  }

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

  .realtime-card {
    padding: 11px;
  }

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

  .metric {
    padding: 7px 5px;
    border-radius: 11px;
  }

  .metric-value {
    font-size: 0.92rem;
  }

  .metric-label {
    font-size: 0.46rem;
  }

  .section-head h3,
  .titulo-pontos {
    font-size: 1.08rem;
  }

  .section-head p {
    font-size: 0.68rem;
  }

  .how-wrap {
    padding: 16px 8px 18px;
  }

  .how-flow {
    grid-template-columns: minmax(0, 1fr) 10px minmax(0, 1fr) 10px minmax(0, 1fr) 10px minmax(0, 1fr);
    gap: 4px;
  }

  .flow-card {
    min-height: 142px;
    padding: 8px 6px;
  }

  .flow-arrow {
    font-size: 0.86rem;
  }

  .step-pill {
    width: 18px;
    height: 18px;
    font-size: 0.58rem;
  }

  .step-icon {
    width: 30px;
    height: 30px;
  }

  .step-icon svg {
    width: 20px;
    height: 20px;
  }

  .step-title {
    font-size: 0.56rem;
  }

  .step-desc {
    font-size: 0.48rem;
  }

  .location-card,
  #gridAmbientes .location-card {
    flex: 0 0 210px !important;
    min-width: 210px !important;
    min-height: 318px;
  }

  .location-card img {
    height: 158px;
  }

  .diff-grid {
    gap: 7px;
  }

  .benefit-card {
    min-height: 142px;
    padding: 10px 8px;
  }

  .benefit-card h4 {
    font-size: 0.62rem;
  }

  .benefit-card p {
    font-size: 0.5rem;
  }

  .cta-band {
    padding: 14px 12px;
  }

  .cta-band h4 {
    font-size: 1.08rem;
  }

  .cta-band p {
    font-size: 0.62rem;
  }

  .cta-actions .button-primary,
  .cta-actions .button-secondary {
    min-height: 36px;
    padding: 0 13px;
    font-size: 0.68rem;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(var(--container), calc(100% - 18px));
  }

  .brand-logo {
    width: 116px;
  }

  .nav-login {
    min-height: 34px;
    padding: 0 14px;
    font-size: 0.8rem;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 2.72rem;
  }

  .hero p {
    max-width: 340px;
    font-size: 0.72rem;
  }

  .realtime-card {
    border-radius: 16px;
  }

  .realtime-head strong {
    font-size: 0.84rem;
  }

  .metric-value {
    font-size: 0.86rem;
  }

  .metric-label {
    font-size: 0.43rem;
  }

  .section-head h3,
  .titulo-pontos {
    font-size: 1rem;
  }

  .locations-grid,
  #gridAmbientes {
    padding: 16px 14px 18px !important;
  }

  .location-card,
  #gridAmbientes .location-card {
    flex: 0 0 198px !important;
    min-width: 198px !important;
  }
}

@media (max-width: 860px) {
  .how-wrap .overline,
  .how-wrap .section-head p {
    display: none !important;
  }

  .step-pill {
    display: none !important;
  }

  .step-title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 2.3em !important;
  }

  .hero h1 {
    line-height: 1 !important;
  }
}

@media (max-width: 560px) {
  .step-title {
    font-size: 0.52rem !important;
    line-height: 1.08 !important;
    min-height: 2.16em !important;
  }

  .hero h1 {
    line-height: 1.02 !important;
  }
}

@media (max-width: 430px) {
  .step-title {
    font-size: 0.48rem !important;
    line-height: 1.05 !important;
    min-height: 2.1em !important;
  }

  .hero h1 {
    line-height: 1.04 !important;
  }
}

/* Botões menos arredondados - PC e mobile */
.nav-login,
.button-primary,
.button-secondary,
.cta-actions .button-primary,
.cta-actions .button-secondary {
  border-radius: 18px !important;
}

.nav-login {
  min-height: 46px !important;
  padding: 0 24px !important;
}

.button-primary,
.button-secondary {
  min-height: 56px !important;
  padding: 0 28px !important;
}

.cta-actions .button-primary,
.cta-actions .button-secondary {
  min-height: 48px !important;
  padding: 0 24px !important;
}

/* Menos espaço depois dos cards de pontos */
#pontos {
  padding-bottom: 34px !important;
}

.locations-grid,
#gridAmbientes {
  padding-bottom: 28px !important;
}

@media (max-width: 860px) {
  .nav-login,
  .button-primary,
  .button-secondary,
  .cta-actions .button-primary,
  .cta-actions .button-secondary {
    border-radius: 14px !important;
  }

  .nav-login {
    min-height: 36px !important;
    padding: 0 15px !important;
  }

  .button-primary,
  .button-secondary {
    min-height: 46px !important;
    padding: 0 18px !important;
  }

  .cta-actions .button-primary,
  .cta-actions .button-secondary {
    min-height: 38px !important;
    padding: 0 14px !important;
  }

  #pontos {
    padding-bottom: 18px !important;
  }

  .locations-grid,
  #gridAmbientes {
    padding-bottom: 18px !important;
  }
}
