:root {
  --bg: #030711;
  --bg-2: #06101f;
  --card: rgba(8, 18, 36, 0.78);
  --card-2: rgba(10, 25, 50, 0.88);
  --blue: #0077ff;
  --blue-2: #00c3ff;
  --blue-3: #0044ff;
  --white: #ffffff;
  --text: #dbe8ff;
  --muted: #8ea5c7;
  --line: rgba(0, 195, 255, 0.28);
  --green: #30ff80;
  --shadow: 0 0 40px rgba(0, 119, 255, 0.35);
  --radius: 24px;
  --font-title: "Orbitron", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  width: 100%;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    radial-gradient(circle at top right, rgba(0, 119, 255, 0.32), transparent 35%),
    radial-gradient(circle at bottom left, rgba(0, 195, 255, 0.18), transparent 35%),
    linear-gradient(135deg, #02040a, #06101d 45%, #01040a);
}

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(rgba(0, 195, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 195, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  z-index: -3;
  pointer-events: none;
}

.glow-1 {
  top: 12%;
  right: -120px;
  background: var(--blue);
}

.glow-2 {
  bottom: 10%;
  left: -140px;
  background: var(--blue-2);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 18px 0;
  transition: 0.3s ease;
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(2, 7, 17, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-symbol {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(0, 119, 255, 0.08);
  border: 1px solid rgba(0, 195, 255, 0.25);
  box-shadow: 0 0 24px rgba(0, 119, 255, 0.35);
  flex: 0 0 auto;
}

.brand-symbol img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: var(--font-title);
  color: var(--white);
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.brand-text span {
  margin-top: 6px;
  color: var(--blue-2);
  font-size: 0.68rem;
  letter-spacing: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
  transition: 0.3s ease;
}

.nav a:hover {
  color: var(--blue-2);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white) !important;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 119, 255, 0.08);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  border-radius: 10px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--blue-2);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow span {
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-2), transparent);
}

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.98;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero h1 strong {
  display: block;
  color: var(--blue);
  text-shadow: 0 0 24px rgba(0, 119, 255, 0.7);
}

.hero p {
  max-width: 630px;
  margin-top: 28px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
  box-shadow: 0 0 30px rgba(0, 119, 255, 0.45);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--white);
  background: rgba(0, 119, 255, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.hero-stats div {
  padding: 18px;
  background: rgba(0, 119, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.laptop-card {
  position: absolute;
  right: 0;
  top: 70px;
  width: min(520px, 100%);
  background: linear-gradient(145deg, rgba(7, 18, 37, 0.96), rgba(2, 6, 14, 0.94));
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 18px;
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.65),
    0 0 60px rgba(0, 119, 255, 0.35);
  transform: perspective(900px) rotateY(-9deg) rotateX(4deg);
}

.screen-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.screen-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 195, 255, 0.55);
}

.screen-content {
  min-height: 390px;
  border-radius: 22px;
  padding: 28px;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 119, 255, 0.35), transparent 30%),
    linear-gradient(145deg, #061120, #02050b);
  border: 1px solid rgba(0, 195, 255, 0.18);
}

.mini-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.72rem;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.mini-logo img {
  width: 28px;
  height: 28px;
}

.screen-content h2 {
  max-width: 320px;
  font-family: var(--font-title);
  color: var(--white);
  line-height: 1.14;
  text-transform: uppercase;
}

.screen-content h2 strong {
  color: var(--blue-2);
  display: block;
}

.screen-content p {
  margin-top: 16px;
  max-width: 320px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.dashboard-grid div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(0, 119, 255, 0.08);
  border: 1px solid rgba(0, 195, 255, 0.15);
}

.dashboard-grid small,
.dashboard-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
}

.dashboard-grid strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--white);
  font-size: 0.9rem;
}

.dashboard-grid span {
  color: var(--green);
}

.chart {
  height: 90px;
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(0, 119, 255, 0.06);
  border: 1px solid rgba(0, 195, 255, 0.12);
}

.chart i {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(to top, var(--blue), var(--blue-2));
}

.phone-card {
  position: absolute;
  right: -20px;
  bottom: 35px;
  width: 210px;
  min-height: 360px;
  padding: 26px 18px 18px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(0, 119, 255, 0.28), transparent 35%),
    linear-gradient(160deg, #08111f, #02040a);
  border: 1px solid rgba(0, 195, 255, 0.3);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.7),
    0 0 34px rgba(0, 119, 255, 0.38);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 64px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.16);
}

.phone-card h3 {
  color: var(--white);
  margin: 12px 0 18px;
}

.phone-row {
  padding: 13px 0;
  border-bottom: 1px solid rgba(0, 195, 255, 0.12);
}

.phone-row span {
  color: var(--muted);
  font-size: 0.78rem;
}

.phone-row strong {
  display: block;
  color: var(--white);
  margin-top: 4px;
}

.phone-row .green {
  color: var(--green);
}

.phone-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  margin-top: 22px;
}

.phone-chart span {
  flex: 1;
  border-radius: 99px;
  background: linear-gradient(to top, var(--blue), var(--blue-2));
}

.phone-chart span:nth-child(1) { height: 45%; }
.phone-chart span:nth-child(2) { height: 65%; }
.phone-chart span:nth-child(3) { height: 38%; }
.phone-chart span:nth-child(4) { height: 80%; }
.phone-chart span:nth-child(5) { height: 58%; }

.section {
  padding: 110px 0;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-title span,
.section-label {
  display: inline-block;
  color: var(--blue-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
  font-size: 0.8rem;
}

.section-title h2,
.why-text h2,
.results-card h2,
.cta-box h2 {
  font-family: var(--font-title);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.12;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-title p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(8, 18, 36, 0.9), rgba(2, 7, 17, 0.88));
  border: 1px solid var(--line);
}

.service-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  margin-bottom: 24px;
  background: rgba(0, 119, 255, 0.1);
  border: 1px solid var(--line);
}

.service-icon svg {
  width: 42px;
  height: 42px;
  fill: var(--blue-2);
}

.service-card h3 {
  color: var(--white);
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

.service-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.service-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-2);
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: 64px;
}

.why-text h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.why-text p {
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.benefits div {
  padding: 22px;
  border-radius: 20px;
  background: rgba(0, 119, 255, 0.07);
  border: 1px solid var(--line);
}

.benefits strong {
  color: var(--blue-2);
  font-family: var(--font-title);
}

.benefits span {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-weight: 800;
}

.why-panel {
  padding: 30px;
  min-height: 500px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 35%, rgba(0, 195, 255, 0.3), transparent 28%),
    linear-gradient(145deg, rgba(8, 18, 36, 0.96), rgba(2, 7, 17, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.82rem;
  letter-spacing: 2px;
}

.panel-header span {
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
}

.security-shield {
  width: 230px;
  height: 230px;
  margin: 50px auto 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 119, 255, 0.07);
  border: 1px solid var(--line);
}

.security-shield img {
  width: 150px;
}

.panel-lines {
  display: grid;
  gap: 12px;
}

.panel-lines span {
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), rgba(0, 195, 255, 0.15));
}

.panel-status {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.panel-status div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(0, 119, 255, 0.08);
  border: 1px solid rgba(0, 195, 255, 0.16);
}

.panel-status small {
  color: var(--muted);
}

.panel-status strong {
  display: block;
  color: var(--green);
  margin-top: 6px;
  font-size: 1.2rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-card {
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(8, 18, 36, 0.78);
  border: 1px solid var(--line);
}

.process-card span {
  color: var(--blue-2);
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
}

.process-card h3 {
  margin: 22px 0 12px;
  color: var(--white);
  font-size: 1.35rem;
}

.process-card p {
  color: var(--muted);
  line-height: 1.65;
}

.results-content {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
}

.results-card,
.results-terminal {
  border-radius: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(8, 18, 36, 0.9), rgba(2, 7, 17, 0.92));
}

.results-card {
  padding: 42px;
}

.results-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.results-card p {
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.metrics {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.metrics div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(0, 119, 255, 0.07);
  border: 1px solid rgba(0, 195, 255, 0.14);
}

.metrics strong {
  display: block;
  color: var(--blue-2);
  margin-bottom: 6px;
}

.terminal-top {
  display: flex;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--line);
}

.terminal-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-2);
}

.results-terminal pre {
  padding: 32px;
  color: var(--text);
  line-height: 1.85;
  font-size: 1rem;
  white-space: pre-wrap;
  overflow-x: auto;
}

.blue {
  color: var(--blue-2);
}

.green {
  color: var(--green);
}

.cta-box {
  padding: 46px;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  background:
    radial-gradient(circle at right, rgba(0, 195, 255, 0.24), transparent 35%),
    linear-gradient(135deg, rgba(0, 119, 255, 0.22), rgba(2, 7, 17, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-box span {
  color: var(--blue-2);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
}

.cta-box h2 {
  margin-top: 12px;
  max-width: 760px;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: rgba(2, 7, 17, 0.9);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer strong {
  display: block;
  font-family: var(--font-title);
  color: var(--white);
  letter-spacing: 2px;
}

.footer span,
.footer p {
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.65);
}

.floating-whatsapp svg {
  width: 36px;
  height: 36px;
  fill: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* TABLET */
@media (max-width: 1024px) {
  .hero-content,
  .why-content,
  .results-content {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    min-height: 540px;
  }

  .laptop-card {
    left: 0;
    right: auto;
    width: 86%;
  }

  .phone-card {
    right: 10px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* MOBILE FINAL OTIMIZADO */
@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header {
    padding: 12px 0;
    background: rgba(2, 7, 17, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 195, 255, 0.18);
  }

  .header.scrolled {
    padding: 10px 0;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-symbol {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand-symbol img {
    width: 32px;
    height: 32px;
  }

  .brand-text strong {
    font-size: 0.95rem;
    letter-spacing: 1.4px;
    white-space: nowrap;
  }

  .brand-text span {
    font-size: 0.5rem;
    letter-spacing: 2.4px;
    white-space: nowrap;
  }

  .menu-btn {
    display: block;
    flex: 0 0 auto;
  }

  .nav {
    position: fixed;
    top: 74px;
    left: 14px;
    right: 14px;
    padding: 18px;
    display: grid;
    gap: 10px;
    border-radius: 22px;
    background: rgba(2, 7, 17, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition: 0.3s ease;
  }

  .nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    padding: 13px 14px;
    border-radius: 14px;
    background: rgba(0, 119, 255, 0.07);
  }

  .hero {
    min-height: auto;
    padding: 118px 0 64px;
    overflow: hidden;
  }

  .hero::before {
    display: none;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 42px;
  }

  .hero-text {
    width: 100%;
    text-align: left;
  }

  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 1.3px;
    margin-bottom: 18px;
  }

  .eyebrow span {
    width: 26px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.9rem);
    line-height: 1.02;
    letter-spacing: -1px;
  }

  .hero p {
    margin-top: 20px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    font-size: 0.82rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .hero-stats div {
    padding: 16px;
  }

  .hero-visual {
    width: 100%;
    min-height: auto;
    padding: 0;
    overflow: visible;
  }

  .laptop-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    padding: 12px;
    border-radius: 24px;
    transform: none;
  }

  .screen-content {
    min-height: auto;
    padding: 20px;
    border-radius: 18px;
  }

  .screen-content h2 {
    font-size: 1.1rem;
  }

  .screen-content p {
    font-size: 0.82rem;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .chart {
    height: 74px;
    padding: 12px;
  }

  .phone-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    margin-top: 18px;
    border-radius: 24px;
    transform: none;
  }

  .section {
    padding: 74px 0;
    overflow: hidden;
  }

  .section-title {
    margin-bottom: 36px;
    text-align: left;
  }

  .section-title span,
  .section-label {
    font-size: 0.68rem;
    letter-spacing: 2px;
  }

  .section-title h2,
  .why-text h2,
  .results-card h2,
  .cta-box h2 {
    font-size: clamp(1.7rem, 8vw, 2.45rem);
    line-height: 1.16;
  }

  .section-title p,
  .why-text p,
  .results-card p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .services-grid,
  .process-grid,
  .benefits,
  .panel-status {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-card,
  .results-card,
  .why-panel,
  .cta-box {
    padding: 22px;
    border-radius: 22px;
  }

  .service-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
  }

  .service-icon svg {
    width: 34px;
    height: 34px;
  }

  .service-card h3 {
    font-size: 1.22rem;
  }

  .why-content,
  .results-content {
    gap: 28px;
  }

  .security-shield {
    width: 180px;
    height: 180px;
    margin: 36px auto 24px;
  }

  .security-shield img {
    width: 120px;
  }

  .results-terminal pre {
    padding: 22px;
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .cta-box {
    align-items: stretch;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    right: 14px;
    bottom: 14px;
  }

  .floating-whatsapp svg {
    width: 32px;
    height: 32px;
  }
}

/* CELULAR PEQUENO */
@media (max-width: 420px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .brand-symbol {
    width: 40px;
    height: 40px;
  }

  .brand-symbol img {
    width: 29px;
    height: 29px;
  }

  .brand-text strong {
    font-size: 0.82rem;
    letter-spacing: 1px;
  }

  .brand-text span {
    font-size: 0.44rem;
    letter-spacing: 1.8px;
  }

  .menu-btn {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-top: 106px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero p {
    font-size: 0.92rem;
  }

  .screen-content {
    padding: 16px;
  }

  .mini-logo span {
    font-size: 0.62rem;
  }

  .phone-card {
    padding: 24px 16px 18px;
  }
}