/*
Theme Name: BMA Telecom
Theme URI: https://bmatelecom.com.br/
Author: BMA Telecom
Description: Tema institucional exclusivo para a BMA Telecom, com foco em fibra óptica, alta disponibilidade e conversão pelo WhatsApp.
Version: 3.0.1
Update URI: false
Requires at least: 6.0
Tested up to: 7.1
Requires PHP: 7.4
Text Domain: bma-telecom
*/

:root {
  --bma-navy: #07132f;
  --bma-navy-2: #0b1d46;
  --bma-blue: #1769e0;
  --bma-cyan: #20c8f7;
  --bma-cyan-soft: #9eeaff;
  --bma-violet: #313286;
  --bma-white: #ffffff;
  --bma-surface: #f4f8ff;
  --bma-text: #111a2e;
  --bma-muted: #66728c;
  --bma-border: #dce7f8;
  --bma-success: #21c76b;
  --bma-shadow: 0 24px 70px rgba(10, 35, 86, 0.14);
  --bma-radius: 24px;
  --bma-container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--bma-text);
  background: var(--bma-white);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .bma-header {
  top: 32px;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.bma-skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--bma-white);
  background: var(--bma-blue);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.bma-skip-link:focus {
  transform: translateY(0);
}

.bma-topbar {
  color: #dce9ff;
  background: var(--bma-navy);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.bma-topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bma-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bma-status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--bma-success);
  box-shadow: 0 0 0 5px rgba(33, 199, 107, 0.12);
}

.bma-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 231, 248, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.bma-header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.bma-brand img {
  width: auto;
  height: 70px;
}

.bma-nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.bma-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 700;
  color: #283451;
}

.bma-nav a {
  position: relative;
  padding: 12px 0;
}

.bma-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--bma-blue), var(--bma-cyan));
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.bma-nav a:hover::after,
.bma-nav a:focus-visible::after {
  transform: scaleX(1);
}

.bma-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--bma-navy);
  background: var(--bma-surface);
  border: 1px solid var(--bma-border);
  border-radius: 14px;
  cursor: pointer;
}

.bma-menu-toggle svg {
  width: 24px;
  height: 24px;
}

.bma-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bma-button:hover {
  transform: translateY(-2px);
}

.bma-button:focus-visible,
.bma-menu-toggle:focus-visible,
.bma-nav a:focus-visible {
  outline: 3px solid rgba(32, 200, 247, 0.45);
  outline-offset: 3px;
}

.bma-button-primary {
  color: var(--bma-white);
  background: linear-gradient(135deg, var(--bma-blue), #3158d4);
  box-shadow: 0 14px 32px rgba(23, 105, 224, 0.26);
}

.bma-button-primary:hover {
  box-shadow: 0 18px 38px rgba(23, 105, 224, 0.34);
}

.bma-button-whatsapp {
  color: #062714;
  background: #3be481;
  box-shadow: 0 14px 32px rgba(33, 199, 107, 0.24);
}

.bma-button-light {
  color: var(--bma-white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.bma-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.bma-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--bma-white);
  background: #030a1e;
}

.bma-hero > .bma-container,
.bma-page-hero > .bma-container {
  position: relative;
  z-index: 3;
}

.bma-future-layer {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(var(--bma-shift-x, 0), var(--bma-shift-y, 0), 0);
  transition: transform 0.7s ease-out;
}

.bma-future-grid {
  position: absolute;
  right: -12%;
  bottom: -34%;
  width: 72%;
  height: 92%;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(74, 211, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 211, 255, 0.2) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to top, #000 15%, transparent 78%);
  transform: perspective(520px) rotateX(63deg) rotateZ(-8deg);
  transform-origin: center bottom;
}

.bma-data-line {
  position: absolute;
  right: -15%;
  width: 64%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(66, 219, 255, 0.95), transparent);
  box-shadow: 0 0 18px rgba(32, 200, 247, 0.75);
  transform: rotate(-24deg);
}

.bma-data-line-one { top: 24%; }
.bma-data-line-two { top: 49%; width: 48%; }
.bma-data-line-three { top: 72%; width: 72%; }

.bma-future-node {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid #99ebff;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(32, 200, 247, 0.08), 0 0 24px #20c8f7;
}

.bma-future-node::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(126, 225, 255, 0.28);
  border-radius: 50%;
}

.bma-future-node-one { top: 24%; right: 16%; }
.bma-future-node-two { top: 55%; right: 32%; }
.bma-future-node-three { right: 10%; bottom: 16%; }

.bma-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: url("assets/bma-fibra-hero.png");
  background-position: 62% center;
  background-size: cover;
  filter: saturate(1.2) contrast(1.05);
  transform: scale(1.04);
}

.bma-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 78% 44%, rgba(23, 105, 224, 0.2), transparent 31%),
    linear-gradient(90deg, rgba(3, 10, 30, 0.99) 0%, rgba(5, 18, 48, 0.94) 43%, rgba(5, 19, 50, 0.61) 72%, rgba(3, 10, 30, 0.58) 100%),
    linear-gradient(180deg, transparent 56%, rgba(3, 10, 30, 0.78));
}

.bma-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 64px;
  align-items: center;
}

.bma-hero-content {
  width: auto;
  padding: 108px 0 132px;
}

.bma-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--bma-cyan-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bma-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 99px;
  background: var(--bma-cyan);
}

.bma-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 5.7vw, 6.35rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.bma-gradient-text {
  color: #8ce6ff;
  background: linear-gradient(90deg, #ffffff 0%, #78dfff 48%, #7aa9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bma-hero-lead {
  max-width: 585px;
  margin: 28px 0 0;
  color: #d8e8ff;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.bma-hero-hud {
  position: relative;
  overflow: hidden;
  color: var(--bma-white);
  background:
    linear-gradient(145deg, rgba(10, 35, 82, 0.72), rgba(5, 16, 43, 0.88));
  border: 1px solid rgba(115, 219, 255, 0.28);
  border-radius: 30px;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 50px rgba(32, 200, 247, 0.09);
  backdrop-filter: blur(16px);
}

.bma-hero-hud::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(83, 204, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 204, 255, 0.12) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle, #000 25%, transparent 82%);
}

.bma-hud-header,
.bma-hud-footer,
.bma-hud-radar {
  position: relative;
  z-index: 2;
}

.bma-hud-header {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid rgba(126, 218, 255, 0.16);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bma-hud-header span { display: inline-flex; align-items: center; gap: 9px; color: #bdefff; }
.bma-hud-header i { width: 8px; height: 8px; background: #32e97e; border-radius: 50%; box-shadow: 0 0 15px #32e97e; }
.bma-hud-header small { color: #6d8dbb; font-size: 0.65rem; letter-spacing: 0.16em; }

.bma-hud-radar {
  width: 330px;
  height: 330px;
  margin: 22px auto 16px;
  overflow: hidden;
  border: 1px solid rgba(98, 210, 255, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 103, 224, 0.2), rgba(2, 12, 33, 0.38) 66%, transparent 67%);
  box-shadow: inset 0 0 60px rgba(32, 200, 247, 0.08), 0 0 40px rgba(32, 200, 247, 0.08);
}

.bma-hud-radar::before,
.bma-hud-radar::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6%;
  width: 88%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72, 200, 255, 0.28), transparent);
}

.bma-hud-radar::after { transform: rotate(90deg); }

.bma-hud-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(90, 213, 255, 0.26);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.bma-hud-ring-one { width: 88%; height: 88%; }
.bma-hud-ring-two { width: 62%; height: 62%; }
.bma-hud-ring-three { width: 34%; height: 34%; }

.bma-hud-scan {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45%;
  height: 45%;
  background: conic-gradient(from 0deg, rgba(32, 200, 247, 0.42), transparent 42deg);
  transform-origin: 0 0;
  border-radius: 0 100% 0 0;
}

.bma-hud-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 86px;
  display: grid;
  place-content: center;
  text-align: center;
  background: radial-gradient(circle at 35% 30%, #5ee5ff, #1769e0 55%, #182778);
  border: 6px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 38px rgba(32, 200, 247, 0.58);
  transform: translate(-50%, -50%);
}

.bma-hud-core b { font-size: 1.05rem; line-height: 1; }
.bma-hud-core small { margin-top: 4px; color: #b9ecff; font-size: 0.52rem; letter-spacing: 0.18em; }

.bma-hud-point {
  position: absolute;
  width: 9px;
  height: 9px;
  background: #69e5ff;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(32, 200, 247, 0.08), 0 0 18px #20c8f7;
}

.bma-hud-point-one { top: 19%; left: 31%; }
.bma-hud-point-two { top: 42%; right: 12%; }
.bma-hud-point-three { right: 31%; bottom: 12%; }

.bma-hud-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(126, 218, 255, 0.16);
}

.bma-hud-footer > span { padding: 18px 12px; text-align: center; }
.bma-hud-footer > span + span { border-left: 1px solid rgba(126, 218, 255, 0.14); }
.bma-hud-footer small { display: block; color: #5f82b5; font-size: 0.51rem; font-weight: 900; letter-spacing: 0.12em; }
.bma-hud-footer strong { display: block; margin-top: 5px; color: #d9f4ff; font-size: 0.69rem; line-height: 1.25; }

.bma-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.bma-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 38px 0 0;
  padding: 0;
  color: #e8f3ff;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.bma-hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bma-check {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 20px;
  color: var(--bma-white);
  background: rgba(32, 200, 247, 0.2);
  border: 1px solid rgba(32, 200, 247, 0.5);
  border-radius: 99px;
  font-size: 0.7rem;
}

.bma-trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -48px;
}

.bma-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: var(--bma-white);
  border: 1px solid rgba(220, 231, 248, 0.9);
  border-radius: var(--bma-radius);
  box-shadow: var(--bma-shadow);
}

.bma-trust-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 28px 30px;
}

.bma-trust-item + .bma-trust-item {
  border-left: 1px solid var(--bma-border);
}

.bma-trust-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--bma-blue);
  background: linear-gradient(145deg, #eef6ff, #e1f7ff);
  border-radius: 15px;
}

.bma-trust-icon svg {
  width: 24px;
  height: 24px;
}

.bma-trust-item strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.bma-trust-item span {
  display: block;
  margin-top: 5px;
  color: var(--bma-muted);
  font-size: 0.83rem;
  line-height: 1.4;
}

.bma-section {
  padding: 110px 0;
}

.bma-section-soft {
  background:
    radial-gradient(circle at 8% 8%, rgba(32, 200, 247, 0.08), transparent 28%),
    var(--bma-surface);
}

.bma-section-heading {
  max-width: 690px;
  margin: 0 auto 54px;
  text-align: center;
}

.bma-section-heading .bma-eyebrow {
  justify-content: center;
  color: var(--bma-blue);
}

.bma-section-heading h2,
.bma-infra-copy h2,
.bma-cta-copy h2 {
  margin: 0;
  color: var(--bma-navy);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.bma-section-heading p {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--bma-muted);
  font-size: 1.05rem;
}

.bma-intro {
  padding-top: 120px;
}

.bma-intro-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 78px;
  align-items: start;
}

.bma-intro-copy {
  position: sticky;
  top: 150px;
}

.bma-intro-copy .bma-eyebrow,
.bma-editorial-grid .bma-eyebrow,
.bma-process-grid .bma-eyebrow,
.bma-faq-grid .bma-eyebrow {
  color: var(--bma-blue);
}

.bma-intro-copy h2,
.bma-editorial-grid h2,
.bma-process-grid h2,
.bma-faq-grid h2 {
  margin: 0;
  color: var(--bma-navy);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.bma-intro-copy > p:not(.bma-eyebrow),
.bma-process-grid > div > p:not(.bma-eyebrow),
.bma-faq-grid > div > p:not(.bma-eyebrow) {
  margin: 22px 0 0;
  color: var(--bma-muted);
}

.bma-paths-grid {
  display: grid;
  gap: 16px;
}

.bma-path-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 26px 28px;
  overflow: hidden;
  background: var(--bma-white);
  border: 1px solid var(--bma-border);
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(16, 46, 98, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.bma-path-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(var(--bma-cyan), var(--bma-blue));
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.bma-path-card:hover {
  transform: translateX(7px);
  border-color: rgba(23, 105, 224, 0.3);
  box-shadow: var(--bma-shadow);
}

.bma-path-card:hover::before { transform: scaleY(1); }

.bma-path-number {
  color: var(--bma-cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.bma-path-card strong {
  display: block;
  color: var(--bma-navy);
  font-size: 1.05rem;
}

.bma-path-card p {
  grid-column: 2 / 3;
  margin: -9px 0 0;
  color: var(--bma-muted);
  font-size: 0.9rem;
}

.bma-path-card .bma-text-link {
  grid-column: 3;
  grid-row: 1 / 3;
}

.bma-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bma-blue);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.bma-text-link span { transition: transform 0.2s ease; }
.bma-text-link:hover span { transform: translateX(4px); }
.bma-text-link-dark { margin-top: 28px; }

.bma-page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--bma-white);
  background:
    radial-gradient(circle at 82% 36%, rgba(32, 200, 247, 0.18), transparent 28%),
    linear-gradient(135deg, #050d22, #0a1f4e 68%, #102e70);
}

.bma-page-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 13, 34, 0.98), rgba(7, 24, 60, 0.72) 62%, rgba(7, 24, 60, 0.28));
}

.bma-page-hero-copy {
  max-width: 830px;
  padding: 90px 0 100px;
}

.bma-page-hero h1 {
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 5.2rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.bma-page-hero h1 span {
  color: var(--bma-cyan-soft);
  background: linear-gradient(90deg, #fff, #65dcff, #88a9ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bma-page-hero-copy > p:not(.bma-eyebrow) {
  max-width: 720px;
  margin: 26px 0 0;
  color: #d7e7ff;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.bma-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.bma-editorial-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  align-items: start;
}

.bma-rich-copy {
  color: var(--bma-muted);
  font-size: 1.08rem;
}

.bma-rich-copy p { margin: 0 0 22px; }
.bma-rich-copy p:last-child { margin-bottom: 0; }

.bma-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.bma-info-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  overflow: hidden;
  background: var(--bma-white);
  border: 1px solid var(--bma-border);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(16, 46, 98, 0.06);
}

.bma-info-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -38px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(32, 200, 247, 0.16);
  border-radius: 50%;
}

.bma-info-card > span {
  color: var(--bma-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.bma-info-card h3,
.bma-tech-grid h3 {
  margin: 36px 0 10px;
  color: var(--bma-navy);
  font-size: 1.2rem;
}

.bma-info-card p,
.bma-tech-grid p {
  margin: 0;
  color: var(--bma-muted);
  font-size: 0.92rem;
}

.bma-section-dark {
  position: relative;
  overflow: hidden;
  color: var(--bma-white);
  background:
    radial-gradient(circle at 10% 15%, rgba(32, 200, 247, 0.16), transparent 27%),
    linear-gradient(145deg, #050d21, #0b2153);
}

.bma-section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(91, 203, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 203, 255, 0.12) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.bma-section-dark .bma-container { position: relative; }
.bma-heading-light h2 { color: var(--bma-white); }
.bma-heading-light p { color: #b9cae7; }

.bma-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.bma-tech-grid article {
  position: relative;
  min-height: 245px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(126, 213, 255, 0.18);
  border-radius: 22px;
  backdrop-filter: blur(10px);
}

.bma-tech-grid h3 { color: var(--bma-white); margin-top: 42px; }
.bma-tech-grid p { color: #bbcae4; }

.bma-tech-dot {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 10px;
  height: 10px;
  background: var(--bma-cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(32, 200, 247, 0.1), 0 0 18px var(--bma-cyan);
}

.bma-process-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  align-items: start;
}

.bma-process {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bma-process li {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 0 0 34px;
}

.bma-process li::before {
  content: "";
  position: absolute;
  top: 46px;
  bottom: 0;
  left: 23px;
  width: 1px;
  background: linear-gradient(var(--bma-cyan), var(--bma-border));
}

.bma-process li:last-child::before { display: none; }

.bma-process li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--bma-white);
  background: linear-gradient(145deg, var(--bma-blue), #24459e);
  border-radius: 15px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(23, 105, 224, 0.22);
}

.bma-process strong { color: var(--bma-navy); font-size: 1.08rem; }
.bma-process p { margin: 5px 0 0; color: var(--bma-muted); }

.bma-support-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
}

.bma-support-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 44px;
  overflow: hidden;
  background: var(--bma-white);
  border: 1px solid var(--bma-border);
  border-radius: 28px;
  box-shadow: var(--bma-shadow);
}

.bma-support-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -55px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(32, 200, 247, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(32, 200, 247, 0.08);
}

.bma-support-featured {
  color: var(--bma-white);
  background:
    radial-gradient(circle at 85% 12%, rgba(32, 200, 247, 0.28), transparent 34%),
    linear-gradient(145deg, var(--bma-navy), #163a88);
  border-color: rgba(32, 200, 247, 0.28);
}

.bma-support-label {
  margin-bottom: auto;
  color: var(--bma-blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bma-support-featured .bma-support-label { color: var(--bma-cyan-soft); }

.bma-support-card h2 {
  margin: 40px 0 14px;
  color: var(--bma-navy);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.bma-support-featured h2 { color: var(--bma-white); }
.bma-support-card p { margin: 0 0 28px; color: var(--bma-muted); }
.bma-support-featured p { color: #d4e3fb; }

.bma-faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  align-items: start;
}

.bma-faq {
  display: grid;
  gap: 12px;
}

.bma-faq details {
  padding: 0 24px;
  background: var(--bma-white);
  border: 1px solid var(--bma-border);
  border-radius: 16px;
}

.bma-faq summary {
  position: relative;
  padding: 21px 34px 21px 0;
  color: var(--bma-navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.bma-faq summary::-webkit-details-marker { display: none; }
.bma-faq summary::after { content: "+"; position: absolute; right: 0; color: var(--bma-blue); font-size: 1.35rem; }
.bma-faq details[open] summary::after { content: "–"; }
.bma-faq details p { margin: 0; padding: 0 0 22px; color: var(--bma-muted); }

.bma-reveal-pending {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.bma-reveal-pending.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.bma-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.bma-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: var(--bma-white);
  border: 1px solid var(--bma-border);
  border-radius: var(--bma-radius);
  box-shadow: 0 14px 38px rgba(16, 46, 98, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bma-plan:hover {
  transform: translateY(-7px);
  border-color: rgba(23, 105, 224, 0.32);
  box-shadow: var(--bma-shadow);
}

.bma-plan-featured {
  color: var(--bma-white);
  background:
    radial-gradient(circle at 85% 4%, rgba(32, 200, 247, 0.24), transparent 28%),
    linear-gradient(145deg, var(--bma-navy-2), #132e6e);
  border-color: rgba(32, 200, 247, 0.4);
  transform: translateY(-12px);
  box-shadow: 0 28px 64px rgba(7, 19, 47, 0.25);
}

.bma-plan-featured:hover {
  transform: translateY(-18px);
}

.bma-plan-badge {
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 7px 12px;
  color: var(--bma-blue);
  background: #e8f4ff;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bma-plan-featured .bma-plan-badge {
  color: var(--bma-navy);
  background: var(--bma-cyan);
}

.bma-plan-speed {
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.bma-plan-speed strong {
  color: var(--bma-navy);
  font-size: clamp(3.2rem, 5vw, 4.7rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.bma-plan-featured .bma-plan-speed strong {
  color: var(--bma-white);
}

.bma-plan-speed span {
  padding-bottom: 6px;
  color: var(--bma-blue);
  font-size: 1rem;
  font-weight: 900;
}

.bma-plan-featured .bma-plan-speed span {
  color: var(--bma-cyan-soft);
}

.bma-plan-name {
  margin: 14px 0 0;
  color: var(--bma-muted);
  font-size: 1rem;
}

.bma-plan-featured .bma-plan-name,
.bma-plan-featured .bma-plan-list {
  color: #dbe8ff;
}

.bma-plan-list {
  margin: 28px 0 32px;
  padding: 0;
  color: #40506d;
  list-style: none;
}

.bma-plan-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 9px 0;
}

.bma-plan .bma-button {
  width: 100%;
  margin-top: auto;
}

.bma-infra-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 80px;
  align-items: center;
}

.bma-network-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: linear-gradient(145deg, #07132f, #102d72);
  border-radius: 34px;
  box-shadow: 0 35px 80px rgba(7, 19, 47, 0.24);
}

.bma-network-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(99, 195, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 195, 255, 0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.bma-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(87, 201, 255, 0.34);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.bma-orbit-one { width: 360px; height: 360px; }
.bma-orbit-two { width: 250px; height: 250px; }
.bma-orbit-three { width: 145px; height: 145px; }

.bma-core-node {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  color: var(--bma-white);
  background: radial-gradient(circle at 35% 30%, #40dbff, #1769e0 52%, #152b72);
  border: 7px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 45px rgba(32, 200, 247, 0.5);
  transform: translate(-50%, -50%);
}

.bma-core-node svg {
  width: 48px;
  height: 48px;
}

.bma-satellite {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  color: #e8f4ff;
  background: rgba(9, 28, 67, 0.85);
  border: 1px solid rgba(95, 205, 255, 0.3);
  border-radius: 13px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 800;
}

.bma-satellite::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bma-cyan);
  box-shadow: 0 0 13px var(--bma-cyan);
}

.bma-satellite-one { top: 17%; left: 12%; }
.bma-satellite-two { top: 21%; right: 9%; }
.bma-satellite-three { bottom: 18%; left: 8%; }
.bma-satellite-four { right: 11%; bottom: 15%; }

.bma-visual-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  padding: 28px 30px;
  color: #dfeeff;
  background: linear-gradient(transparent, rgba(3, 11, 29, 0.92));
}

.bma-visual-label strong {
  display: block;
  color: var(--bma-white);
  font-size: 1.05rem;
}

.bma-infra-copy .bma-eyebrow {
  color: var(--bma-blue);
}

.bma-infra-copy > p {
  margin: 22px 0 0;
  color: var(--bma-muted);
  font-size: 1.05rem;
}

.bma-feature-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.bma-feature {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 17px;
  align-items: start;
}

.bma-feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--bma-blue);
  background: #ebf5ff;
  border-radius: 16px;
}

.bma-feature-icon svg {
  width: 25px;
  height: 25px;
}

.bma-feature strong {
  display: block;
  margin: 2px 0 4px;
  color: var(--bma-navy);
  font-size: 1.02rem;
}

.bma-feature p {
  margin: 0;
  color: var(--bma-muted);
  font-size: 0.94rem;
}

.bma-cta {
  padding: 0 0 110px;
}

.bma-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  overflow: hidden;
  padding: 58px 64px;
  color: var(--bma-white);
  background:
    radial-gradient(circle at 92% 12%, rgba(32, 200, 247, 0.28), transparent 32%),
    linear-gradient(135deg, var(--bma-navy), #143a88);
  border-radius: 32px;
  box-shadow: 0 30px 75px rgba(7, 19, 47, 0.22);
}

.bma-cta-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -70px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.bma-cta-copy h2 {
  color: var(--bma-white);
}

.bma-cta-copy p {
  max-width: 680px;
  margin: 16px 0 0;
  color: #d8e7ff;
}

.bma-footer {
  color: #c9d8f1;
  background: #050d21;
}

.bma-footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 70px;
  padding: 72px 0 50px;
}

.bma-footer-logo {
  width: auto;
  height: 76px;
  margin-bottom: 20px;
  filter: drop-shadow(0 8px 18px rgba(32, 200, 247, 0.16));
}

.bma-footer-about p {
  max-width: 420px;
  margin: 0;
  color: #aebdd7;
}

.bma-footer h3 {
  margin: 0 0 20px;
  color: var(--bma-white);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bma-footer-links {
  display: grid;
  gap: 12px;
}

.bma-footer-links a {
  color: #b7c7e1;
  transition: color 0.2s ease;
}

.bma-footer-links a:hover {
  color: var(--bma-cyan);
}

.bma-footer-bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8392ac;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.82rem;
}

.bma-developer-credit a {
  color: var(--bma-cyan-soft);
  font-weight: 800;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.bma-developer-credit a:hover {
  color: var(--bma-white);
  text-shadow: 0 0 16px rgba(32, 200, 247, 0.48);
}

.bma-floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #062714;
  background: #3be481;
  border: 3px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(4, 41, 20, 0.28);
  transition: transform 0.2s ease;
}

.bma-floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
}

.bma-floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

.bma-fallback {
  min-height: 70vh;
  padding: 100px 0;
}

.bma-fallback h1 {
  color: var(--bma-navy);
}

.bma-fallback article + article {
  margin-top: 54px;
}

@media (prefers-reduced-motion: no-preference) {
  .bma-status-dot {
    animation: bma-status 2.4s ease-in-out infinite;
  }

  .bma-core-node {
    animation: bma-pulse 3.4s ease-in-out infinite;
  }

  .bma-orbit-one {
    animation: bma-spin 30s linear infinite;
  }

  .bma-orbit-two {
    animation: bma-spin-reverse 22s linear infinite;
  }

  .bma-future-grid {
    animation: bma-grid-drift 9s ease-in-out infinite alternate;
  }

  .bma-data-line-one { animation: bma-data-flow 5.5s linear infinite; }
  .bma-data-line-two { animation: bma-data-flow 7s 1.1s linear infinite; }
  .bma-data-line-three { animation: bma-data-flow 6.2s 2.2s linear infinite; }
  .bma-future-node-one { animation: bma-node-float 4.8s ease-in-out infinite; }
  .bma-future-node-two { animation: bma-node-float 5.5s 0.8s ease-in-out infinite; }
  .bma-future-node-three { animation: bma-node-float 4.2s 1.4s ease-in-out infinite; }

  .bma-hud-scan { animation: bma-hud-scan 5.5s linear infinite; }
  .bma-hud-ring-one { animation: bma-hud-ring 3.6s ease-in-out infinite; }
  .bma-hud-point { animation: bma-hud-point 2.4s ease-in-out infinite; }

  .bma-tech-dot {
    animation: bma-tech-pulse 2.8s ease-in-out infinite;
  }
}

@keyframes bma-status {
  50% { box-shadow: 0 0 0 7px rgba(33, 199, 107, 0.04), 0 0 14px rgba(33, 199, 107, 0.55); }
}

@keyframes bma-pulse {
  0%, 100% { box-shadow: 0 0 34px rgba(32, 200, 247, 0.38); }
  50% { box-shadow: 0 0 62px rgba(32, 200, 247, 0.62); }
}

@keyframes bma-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes bma-spin-reverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes bma-grid-drift {
  from { transform: perspective(520px) rotateX(63deg) rotateZ(-8deg) translateY(0); }
  to { transform: perspective(520px) rotateX(63deg) rotateZ(-8deg) translateY(-22px); }
}

@keyframes bma-data-flow {
  0% { opacity: 0; transform: translateX(22%) rotate(-24deg); }
  20%, 75% { opacity: 0.72; }
  100% { opacity: 0; transform: translateX(-22%) rotate(-24deg); }
}

@keyframes bma-node-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -14px, 0) scale(1.08); }
}

@keyframes bma-tech-pulse {
  50% { box-shadow: 0 0 0 10px rgba(32, 200, 247, 0.04), 0 0 26px var(--bma-cyan); }
}

@keyframes bma-hud-scan {
  to { transform: rotate(360deg); }
}

@keyframes bma-hud-ring {
  50% { opacity: 0.55; transform: translate(-50%, -50%) scale(1.025); }
}

@keyframes bma-hud-point {
  50% { opacity: 0.62; transform: scale(1.35); }
}

@media (max-width: 1000px) {
  body.admin-bar .bma-header { top: 32px; }

  .bma-header-inner { min-height: 78px; }
  .bma-brand img { height: 56px; }

  .bma-menu-toggle { display: inline-flex; }

  .bma-nav-wrap {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--bma-border);
    box-shadow: 0 18px 35px rgba(7, 19, 47, 0.12);
  }

  .bma-nav-wrap.is-open {
    display: block;
  }

  .bma-nav {
    display: grid;
    gap: 4px;
  }

  .bma-nav a {
    padding: 12px 8px;
  }

  .bma-nav a::after { display: none; }
  .bma-nav-wrap > .bma-button { width: 100%; margin-top: 12px; }

  .bma-hero { min-height: 690px; }
  .bma-hero-layout { grid-template-columns: 1.12fr 0.88fr; gap: 30px; }
  .bma-hero-content { width: auto; }
  .bma-hero-hud { border-radius: 24px; }
  .bma-hud-radar { width: 270px; height: 270px; }
  .bma-hud-footer strong { font-size: 0.62rem; }

  .bma-trust-item { grid-template-columns: 42px 1fr; padding: 24px 20px; }
  .bma-trust-icon { width: 42px; height: 42px; }

  .bma-infra-grid { grid-template-columns: 1fr; gap: 50px; }
  .bma-network-visual { min-height: 460px; }

  .bma-intro-grid,
  .bma-editorial-grid,
  .bma-process-grid,
  .bma-faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .bma-intro-copy { position: static; }
  .bma-info-grid,
  .bma-tech-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 782px) {
  body.admin-bar .bma-header { top: 46px; }

  .bma-topbar-inner { justify-content: center; }
  .bma-topbar-item:last-child { display: none; }

  .bma-hero {
    min-height: auto;
  }

  .bma-hero-layout { grid-template-columns: 1fr; gap: 0; }

  .bma-hero::before {
    background-position: 68% center;
  }

  .bma-hero::after {
    background:
      linear-gradient(90deg, rgba(4, 13, 36, 0.97), rgba(5, 20, 51, 0.76)),
      linear-gradient(180deg, transparent 55%, rgba(4, 13, 36, 0.85));
  }

  .bma-hero-content {
    width: 100%;
    padding: 78px 0 42px;
  }

  .bma-hero-hud { width: min(100%, 500px); margin: 0 auto 104px; }
  .bma-hud-radar { width: 310px; height: 310px; }

  .bma-trust-grid,
  .bma-plans-grid,
  .bma-footer-main,
  .bma-cta-card,
  .bma-support-grid {
    grid-template-columns: 1fr;
  }

  .bma-trust-item + .bma-trust-item {
    border-top: 1px solid var(--bma-border);
    border-left: 0;
  }

  .bma-plans-grid { gap: 18px; }
  .bma-plan-featured,
  .bma-plan-featured:hover { transform: none; }

  .bma-section { padding: 84px 0; }
  .bma-section-heading { margin-bottom: 40px; }

  .bma-intro { padding-top: 100px; }
  .bma-page-hero { min-height: 470px; }
  .bma-page-hero-copy { padding: 76px 0 86px; }
  .bma-future-grid { right: -35%; width: 110%; opacity: 0.24; }
  .bma-info-grid,
  .bma-info-grid-three,
  .bma-tech-grid { grid-template-columns: 1fr; }
  .bma-info-card,
  .bma-tech-grid article { min-height: auto; }
  .bma-support-card { min-height: 320px; padding: 36px; }

  .bma-cta { padding-bottom: 84px; }
  .bma-cta-card { gap: 30px; padding: 42px 32px; }
  .bma-cta-card .bma-button { width: 100%; }

  .bma-footer-main { gap: 38px; padding: 58px 0 42px; }
}

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

  .bma-brand img { height: 49px; }
  .bma-header-inner { min-height: 72px; gap: 12px; }

  .bma-hero h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .bma-hero-lead { font-size: 1rem; }

  .bma-hero-actions { display: grid; }
  .bma-hero-actions .bma-button { width: 100%; }
  .bma-hero-points { display: grid; gap: 12px; }
  .bma-hud-radar { width: 245px; height: 245px; }
  .bma-hud-footer > span { padding: 15px 7px; }
  .bma-hud-footer small { font-size: 0.44rem; }
  .bma-hud-footer strong { font-size: 0.55rem; }

  .bma-page-hero h1 { font-size: clamp(2.45rem, 12vw, 3.6rem); }
  .bma-page-hero-actions { display: grid; }
  .bma-page-hero-actions .bma-button { width: 100%; }

  .bma-path-card {
    grid-template-columns: 40px 1fr;
    padding: 22px;
  }

  .bma-path-card p { grid-column: 2; }
  .bma-path-card .bma-text-link { grid-column: 2; grid-row: auto; margin-top: 4px; }
  .bma-editorial-grid,
  .bma-process-grid,
  .bma-faq-grid { gap: 36px; }
  .bma-support-card { min-height: 300px; padding: 30px 24px; }

  .bma-trust-strip { margin-top: -36px; }
  .bma-plan { padding: 28px 24px; }

  .bma-network-visual { min-height: 390px; border-radius: 24px; }
  .bma-orbit-one { width: 290px; height: 290px; }
  .bma-orbit-two { width: 210px; height: 210px; }
  .bma-satellite { padding: 9px 10px; font-size: 0.7rem; }
  .bma-satellite-one { top: 14%; left: 4%; }
  .bma-satellite-two { top: 22%; right: 3%; }
  .bma-satellite-three { bottom: 19%; left: 3%; }
  .bma-satellite-four { right: 3%; bottom: 13%; }

  .bma-cta-card { padding: 38px 24px; border-radius: 24px; }
  .bma-footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }

  .bma-floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media print {
  .bma-topbar,
  .bma-header,
  .bma-floating-whatsapp,
  .bma-hero-actions,
  .bma-cta {
    display: none !important;
  }
}
