:root {
  --bg: #03070d;
  --panel: #07111e;
  --panel-soft: #0b1725;
  --line: rgba(80, 172, 255, 0.22);
  --text: #f5f8ff;
  --muted: #aeb9c8;
  --blue: #0587ed;
  --blue-strong: #0066c7;
  --cyan: #2ac7ff;
  --white-soft: rgba(255, 255, 255, 0.86);
  --shadow: 0 24px 70px rgba(0, 71, 151, 0.28);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 50% 12%, rgba(16, 113, 220, 0.3), transparent 34rem),
    radial-gradient(circle at 78% 42%, rgba(0, 116, 217, 0.14), transparent 28rem),
    linear-gradient(180deg, #02050a 0%, #06101d 48%, #03070d 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 6, 12, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(0, 145, 255, 0.2));
}

.brand span {
  font-size: clamp(1rem, 2.4vw, 1.35rem);
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: var(--white-soft);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-action,
.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  box-shadow: 0 14px 32px rgba(0, 99, 199, 0.3);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.header-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 82px);
  padding: 28px 20px 58px;
  overflow: hidden;
  place-items: center;
}

.network-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.76;
  background:
    linear-gradient(115deg, transparent 0 19%, rgba(0, 140, 255, 0.2) 19.1% 19.35%, transparent 19.45% 100%),
    linear-gradient(28deg, transparent 0 34%, rgba(0, 140, 255, 0.16) 34.1% 34.28%, transparent 34.38% 100%),
    radial-gradient(circle at 10% 32%, var(--cyan) 0 2px, transparent 3px),
    radial-gradient(circle at 27% 48%, var(--blue) 0 2px, transparent 3px),
    radial-gradient(circle at 42% 28%, var(--cyan) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 42%, var(--blue) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 29%, var(--cyan) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 61%, var(--blue) 0 2px, transparent 3px);
}

.hero-content {
  width: min(920px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-logo {
  width: clamp(122px, 17vw, 176px);
  margin: 0 auto 8px;
  filter: drop-shadow(0 0 34px rgba(0, 137, 255, 0.34));
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2.35rem, 6vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-title {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 3vw, 2.55rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-copy {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--white-soft);
  font-size: clamp(1rem, 2.2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

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

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

.section-heading h2,
.trust-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.section-heading p:not(.eyebrow),
.trust-copy p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  appearance: none;
  display: block;
  width: 100%;
  min-height: 222px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: inherit;
  text-align: left;
  background: linear-gradient(180deg, rgba(13, 29, 47, 0.9), rgba(4, 12, 23, 0.92));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  font: inherit;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(42, 199, 255, 0.48);
  background: linear-gradient(180deg, rgba(15, 42, 70, 0.96), rgba(5, 16, 29, 0.96));
  outline: none;
  transform: translateY(-3px);
}

.service-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(42, 199, 255, 0.4);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(0, 114, 207, 0.12);
  box-shadow: inset 0 0 18px rgba(42, 199, 255, 0.08), 0 10px 24px rgba(0, 115, 220, 0.12);
  place-items: center;
}

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

.service-card h3,
.space-list h3 {
  margin: 18px 0 10px;
  font-size: 1.18rem;
}

.service-card p,
.space-list p,
.trust-points span {
  margin: 0;
  color: var(--muted);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-top: 20px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.trust-points {
  display: grid;
  gap: 14px;
}

.trust-points div {
  padding: 20px;
  border-left: 3px solid var(--blue);
  background: rgba(255, 255, 255, 0.05);
}

.trust-points strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

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

.space-list div {
  position: relative;
  min-height: 248px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(80, 172, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(13, 37, 63, 0.94), rgba(3, 10, 19, 0.94)),
    radial-gradient(circle at 18% 16%, rgba(42, 199, 255, 0.18), transparent 9rem);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.space-list div::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 32%, rgba(42, 199, 255, 0.12) 32.2% 32.45%, transparent 32.7% 100%),
    linear-gradient(22deg, transparent 0 56%, rgba(42, 199, 255, 0.1) 56.1% 56.3%, transparent 56.5% 100%);
  opacity: 0.58;
}

.space-list div::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 98px;
  height: 98px;
  border: 1px solid rgba(42, 199, 255, 0.26);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 28px rgba(42, 199, 255, 0.08);
}

.space-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(42, 199, 255, 0.42);
  border-radius: 8px;
  color: var(--cyan);
  background: linear-gradient(135deg, rgba(0, 118, 214, 0.28), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 0 18px rgba(42, 199, 255, 0.12), 0 12px 26px rgba(0, 107, 207, 0.18);
  place-items: center;
}

.space-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.space-list h3,
.space-list p,
.space-tag {
  position: relative;
  z-index: 1;
}

.space-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-top: 20px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--white-soft);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 28px;
  align-items: center;
  margin-bottom: 48px;
  padding: 42px;
  border: 1px solid rgba(42, 199, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(9, 31, 55, 0.96), rgba(2, 8, 16, 0.96));
  box-shadow: var(--shadow);
}

.contact-panel {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.contact-panel span {
  color: var(--muted);
}

.contact-panel strong {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 26px max(112px, 4vw) 26px clamp(20px, 4vw, 54px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  background: #02060c;
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer div:last-child {
  text-align: right;
}

.site-footer span {
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.site-footer small {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer div:first-child span {
  color: var(--text);
  font-weight: 900;
}

.message-tester {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(1, 5, 10, 0.76);
  backdrop-filter: blur(12px);
}

.message-tester.is-open {
  display: flex;
}

.message-panel {
  position: relative;
  width: min(620px, 100%);
  padding: 28px;
  border: 1px solid rgba(42, 199, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(12, 31, 52, 0.98), rgba(3, 9, 18, 0.98)),
    radial-gradient(circle at 18% 8%, rgba(42, 199, 255, 0.18), transparent 14rem);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.message-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.05;
}

.message-panel label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 800;
}

.message-panel textarea {
  width: 100%;
  min-height: 148px;
  resize: vertical;
  padding: 16px;
  border: 1px solid rgba(80, 172, 255, 0.24);
  border-radius: 8px;
  color: var(--text);
  background: rgba(2, 8, 16, 0.78);
  font: inherit;
  line-height: 1.45;
}

.message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.message-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white-soft);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid rgba(42, 199, 255, 0.48);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #0b1d31, #05101d);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.42),
    0 0 0 5px rgba(42, 199, 255, 0.07),
    inset 0 0 18px rgba(5, 135, 237, 0.15);
  transition: width 220ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float svg {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  margin: 0 15px;
  color: #25d366;
  fill: currentColor;
  stroke: none;
}

.whatsapp-float span {
  padding-right: 20px;
  white-space: nowrap;
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.modal-open .whatsapp-float {
  opacity: 0;
  pointer-events: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  width: 164px;
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45), 0 0 0 6px rgba(42, 199, 255, 0.13);
}

.pc-builder {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  padding: 24px;
  overflow-y: auto;
  background: rgba(1, 5, 10, 0.9);
  backdrop-filter: blur(14px);
}

.pc-builder.is-open {
  display: block;
}

.builder-panel {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(42, 199, 255, 0.28);
  border-radius: 12px;
  background: linear-gradient(145deg, #0b1a2b, #030912 62%);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.62);
}

.builder-header {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: radial-gradient(circle at 14% 0, rgba(42, 199, 255, 0.15), transparent 28rem);
}

.builder-header h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
}

.builder-header p:last-child {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--muted);
}

.builder-close {
  align-self: flex-start;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.8fr);
}

.builder-options {
  padding: 30px 32px 36px;
  background: rgba(4, 13, 24, 0.34);
}

.use-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}

.use-selector legend {
  width: 100%;
  margin-bottom: 10px;
  color: #f7faff;
  font-size: 1rem;
  font-weight: 700;
}

.use-selector label {
  position: relative;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 650;
}

.use-selector label:has(input:checked) {
  border-color: var(--cyan);
  color: var(--text);
  background: rgba(0, 124, 224, 0.22);
}

.use-selector input {
  margin: 0 7px 0 0;
  accent-color: var(--cyan);
}

.component-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.component-grid label {
  position: relative;
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(80, 172, 255, 0.14);
  border-radius: 10px;
  color: #f7faff;
  background: rgba(8, 22, 38, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
  font-weight: 700;
}

.component-grid label.has-warning {
  border-color: rgba(255, 190, 74, 0.38);
}

.component-grid label.has-warning::after {
  position: absolute;
  top: 12px;
  right: 13px;
  content: "●";
  color: #e6ad4c;
  font-size: 0.65rem;
  line-height: 1;
}

.component-grid select {
  width: 100%;
  min-height: 50px;
  padding: 0 42px 0 14px;
  border: 1px solid rgba(92, 183, 255, 0.36);
  border-radius: 8px;
  color: var(--text);
  background: #0b1b2e;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
}

.component-grid select:hover:not(:disabled) {
  border-color: rgba(42, 199, 255, 0.65);
  background: #0d2137;
}

.component-grid select option {
  color: #f5f8ff;
  background: #0b1b2e;
  font-weight: 400;
}

.component-grid select:focus {
  border-color: var(--cyan);
  outline: 2px solid rgba(42, 199, 255, 0.16);
}

.component-grid select:disabled {
  cursor: not-allowed;
  color: #8290a3;
  background: #07111d;
  opacity: 0.68;
}

.component-grid small {
  min-height: 0;
  color: #9daabc;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.4;
}

.builder-summary {
  padding: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.2);
}

.builder-summary h3 {
  margin: 0 0 18px;
  font-size: 1.5rem;
}

.builder-summary ul {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.08);
}

.builder-summary li {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  background: #07111e;
}

.builder-summary li span {
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.builder-summary li strong {
  font-size: 0.9rem;
}

.compatibility-status {
  margin: 18px 0;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
  font-weight: 800;
}

.compatibility-status.is-ready {
  border-color: rgba(67, 213, 139, 0.44);
  color: #a9f4ce;
  background: rgba(25, 137, 83, 0.14);
}

.compatibility-status.has-error {
  border-color: rgba(255, 101, 101, 0.5);
  color: #ffc0c0;
  background: rgba(182, 48, 48, 0.14);
}

.compatibility-status.has-warning {
  border-color: rgba(255, 190, 74, 0.46);
  color: #ffdaa0;
  background: rgba(148, 94, 13, 0.15);
}

.builder-summary .button {
  width: 100%;
  margin-top: 10px;
}

.builder-whatsapp.is-disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.builder-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.77rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-action {
    display: none;
  }

  .site-header.menu-open .main-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 8px;
    padding: 12px 0 4px;
  }

  .site-header.menu-open .main-nav a {
    padding: 12px 0;
  }

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

  .trust,
  .contact {
    grid-template-columns: 1fr;
  }

  .space-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .builder-layout {
    grid-template-columns: 1fr;
  }

  .builder-summary {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  section[id] {
    scroll-margin-top: 78px;
  }

  .site-header {
    min-height: 70px;
    padding: 12px 16px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;
    padding: 32px 18px 40px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 48px 0;
  }

  .service-grid,
  .space-list {
    grid-template-columns: 1fr;
  }

  .contact {
    width: min(100% - 28px, 1180px);
    padding: 26px 20px;
  }

  .pc-builder {
    padding: 0;
  }

  .builder-panel {
    min-height: 100%;
    border: 0;
    border-radius: 0;
  }

  .builder-header,
  .builder-options,
  .builder-summary {
    padding: 22px 18px;
  }

  .builder-header {
    gap: 14px;
  }

  .builder-close {
    flex: 0 0 auto;
  }

  .component-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    flex-basis: 26px;
    width: 26px;
    height: 26px;
    margin: 0 13px;
  }

  .whatsapp-float:hover,
  .whatsapp-float:focus-visible {
    width: 52px;
  }

  .whatsapp-float span {
    display: none;
  }

  .site-footer {
    padding: 26px 20px 92px;
  }

  .site-footer div:last-child {
    text-align: left;
  }
}
