:root {
  color-scheme: dark;
  --bg: #05060b;
  --panel: #10121d;
  --panel-soft: #161827;
  --text: #f6f7fb;
  --muted: #b7bdcf;
  --line: rgba(255, 255, 255, 0.14);
  --cyan: #1d5fe8;
  --pink: #5f9dff;
  --lime: #b9ff4a;
  --gold: #ffd166;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 10%, rgba(11, 100, 246, 0.20), transparent 30%),
    radial-gradient(circle at 82% 8%, rgba(6, 63, 209, 0.16), transparent 28%),
    linear-gradient(180deg, #05060b 0%, #080917 48%, #05060b 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

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

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 11, 0.86);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-name {
  color: var(--text);
}

.brand-co {
  color: #39a9ff;
  text-shadow: 0 0 16px rgba(57, 169, 255, 0.46);
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #05060b;
  border-radius: 12px;
  background: linear-gradient(135deg, #063fd1 0%, #0b64f6 62%, #d9f4ff 100%);
  box-shadow: 0 0 26px rgba(11, 100, 246, 0.38);
  color: #ffffff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  content: "";
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(6px);
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.btn-primary {
  border-color: #05060b;
  background: linear-gradient(135deg, #063fd1 0%, #0b64f6 72%, #9dd8ff 100%);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(6, 63, 209, 0.32);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.btn-small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
}

.page-hero {
  padding: 64px 0 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
}

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

h1 {
  max-width: 900px;
  margin-top: 18px;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.page-hero p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

section {
  padding: 54px 0;
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.catalog-toolbar,
.quote-panel,
.form-panel,
.event-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 18px;
  padding: 16px;
}

.search-field,
.select-field,
.text-field,
.textarea-field {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(5, 6, 11, 0.5);
  color: var(--text);
  font: inherit;
  outline: none;
  padding: 0 14px;
}

.textarea-field {
  min-height: 120px;
  padding: 14px;
  resize: vertical;
}

.search-field:focus,
.select-field:focus,
.text-field:focus,
.textarea-field:focus {
  border-color: rgba(36, 217, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(36, 217, 255, 0.12);
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 9px 12px;
}

.chip.is-active {
  border-color: rgba(36, 217, 255, 0.58);
  background: rgba(36, 217, 255, 0.14);
  color: var(--text);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-card.is-selected {
  border-color: rgba(11, 100, 246, 0.88);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.16),
    0 0 0 2px rgba(6, 63, 209, 0.28);
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 11, 0.38);
  padding: 13px 16px 11px;
}

.product-media {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: #0b0d17;
}

.product-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(5, 6, 11, 0.02), rgba(5, 6, 11, 0.68));
  pointer-events: none;
}

.product-media img,
.product-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #05060b;
  cursor: zoom-in;
  object-fit: contain;
  padding: 10px;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  border-radius: 999px;
  background: rgba(5, 6, 11, 0.72);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 7px 10px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.product-body {
  padding: 18px;
}

.product-code {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-code strong {
  color: var(--cyan);
  letter-spacing: 0;
}

.selected-pill {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
}

.product-card.is-selected .selected-pill {
  border-color: rgba(11, 100, 246, 0.58);
  background: rgba(6, 63, 209, 0.22);
  color: #ffffff;
}

.product-body h2 {
  font-size: 23px;
  line-height: 1.15;
}

.product-body p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.product-stock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  border: 1px solid rgba(185, 255, 74, 0.22);
  border-radius: 15px;
  background: rgba(185, 255, 74, 0.08);
  color: var(--muted);
  padding: 10px 12px;
}

.product-stock strong {
  color: var(--lime);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.product-tags span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  padding: 6px 9px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.quote-panel {
  position: sticky;
  top: 92px;
  padding: 18px;
}

.quote-panel h2,
.form-panel h2,
.event-panel h2 {
  font-size: 24px;
}

.quote-panel p,
.form-panel p,
.event-panel p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.quote-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.quote-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(5, 6, 11, 0.32);
  padding: 12px;
}

.quote-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.quote-item strong {
  line-height: 1.25;
}

.quote-item label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.quote-item input {
  width: 72px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  padding: 0 9px;
}

.quote-item button {
  justify-self: end;
  border: 0;
  background: transparent;
  color: var(--pink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 0;
}

.empty-state {
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  color: var(--muted);
  line-height: 1.5;
  padding: 14px;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 6, 11, 0.82);
  padding: 18px;
  backdrop-filter: blur(16px);
}

.media-lightbox.is-open {
  display: flex;
}

.media-lightbox-card {
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: #080a14;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.55);
}

.media-lightbox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
}

.media-lightbox-title {
  font-size: 18px;
  font-weight: 900;
}

.media-lightbox-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.media-lightbox-body {
  display: grid;
  place-items: center;
  background: #05060b;
}

.media-lightbox-body img,
.media-lightbox-body video {
  width: 100%;
  max-height: calc(100vh - 126px);
  object-fit: contain;
}

.quote-actions {
  display: grid;
  gap: 10px;
}

.quote-clear {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 4px 0 0;
}

.floating-quote[hidden] {
  display: none;
}

.floating-quote {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: min(360px, calc(100% - 24px));
  pointer-events: none;
}

.floating-actions,
.floating-summary {
  pointer-events: auto;
}

.floating-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
  align-items: stretch;
}

.floating-whatsapp,
.floating-toggle {
  min-height: 58px;
  border: 2px solid #05060b;
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(6, 63, 209, 0.35);
}

.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #063fd1 0%, #0b64f6 72%, #9dd8ff 100%);
  padding: 0 17px;
}

.floating-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 10px;
  min-width: 0;
  background: linear-gradient(135deg, #063fd1 0%, #0b64f6 72%, #9dd8ff 100%);
  padding: 8px 10px 8px 18px;
  text-align: left;
}

.floating-toggle span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floating-toggle small {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 850;
  grid-column: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floating-toggle strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  grid-row: 1 / span 2;
}

.floating-summary {
  display: none;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(8, 9, 18, 0.97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  padding: 14px;
}

.floating-quote.is-open .floating-summary {
  display: block;
}

.floating-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.floating-summary-head button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
}

.floating-summary-list {
  display: grid;
  gap: 8px;
  max-height: 260px;
  overflow: auto;
}

.floating-summary-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
}

.floating-summary-item span {
  display: block;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.floating-summary-item strong {
  display: block;
  margin-top: 4px;
  line-height: 1.25;
}

.floating-summary-more {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.quote-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 22px;
  align-items: start;
}

.form-panel,
.event-panel {
  padding: 22px;
}

.quote-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.quote-category-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.quote-category-tabs button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.quote-category-tabs button.is-active {
  border-color: #05060b;
  background: linear-gradient(135deg, #063fd1 0%, #0b64f6 72%, #9dd8ff 100%);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(6, 63, 209, 0.28);
}

.quote-category-panel[hidden] {
  display: none;
}

.quote-category-panel {
  margin-top: 18px;
}

.quote-category-panel .quote-form {
  margin-top: 0;
}

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

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.selected-services {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.product-options-wrap {
  display: grid;
  gap: 12px;
}

.product-options {
  display: grid;
  gap: 12px;
}

.product-option-group {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(5, 6, 11, 0.28);
  padding: 16px;
}

.product-option-group legend {
  padding: 0 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.product-option-group .form-row {
  margin-top: 4px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.product-select {
  cursor: pointer;
}

.product-select option {
  background: #10121d;
  color: var(--text);
}

.event-panel {
  position: sticky;
  top: 92px;
}

.quote-summary {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.quote-summary-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(5, 6, 11, 0.3);
  padding: 12px;
}

.quote-summary-item span {
  display: block;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.quote-summary-item strong {
  display: block;
  margin-top: 5px;
  line-height: 1.3;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  counter-reset: quote-step;
}

.step {
  counter-increment: quote-step;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
}

.step::before {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  border: 1px solid #05060b;
  background: linear-gradient(135deg, #063fd1 0%, #0b64f6 72%, #9dd8ff 100%);
  color: #ffffff;
  content: counter(quote-step);
  font-weight: 900;
}

.step strong {
  display: block;
}

.step span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 960px) {
  .catalog-layout,
  .quote-page-grid {
    grid-template-columns: 1fr;
  }

  .catalog-layout {
    gap: 30px;
    padding-bottom: 34px;
  }

  .quote-panel,
  .event-panel {
    position: static;
  }

  .catalog-layout > .quote-panel {
    margin-bottom: 34px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 104px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    background: rgba(5, 6, 11, 0.92);
  }

  .nav-inner {
    position: relative;
    gap: 10px;
    padding: 10px 0 12px;
  }

  .brand {
    gap: 9px;
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .nav .btn {
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
  }

  .nav.is-open .menu-toggle span {
    opacity: 0;
  }

  .nav.is-open .menu-toggle::before {
    transform: rotate(45deg);
  }

  .nav.is-open .menu-toggle::after {
    transform: rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(8, 9, 18, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    opacity: 0;
    padding: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 220ms ease,
      opacity 180ms ease,
      padding 180ms ease,
      transform 180ms ease;
  }

  .nav.is-open .nav-links {
    max-height: 420px;
    opacity: 1;
    padding: 10px;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    padding: 13px 14px;
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
  }

  .page-hero {
    padding: 42px 0 18px;
  }

  h1 {
    font-size: 40px;
    letter-spacing: -0.02em;
  }

  section {
    padding: 42px 0;
  }

  .catalog-toolbar,
  .catalog-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 330px;
  }

  .product-card-top {
    padding: 12px;
  }

  .selected-pill {
    max-width: 46%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .quote-item {
    grid-template-columns: 1fr;
  }

  .quote-item button {
    justify-self: start;
  }

  .footer-inner {
    display: block;
    line-height: 1.6;
  }

  footer {
    position: relative;
    z-index: 4;
  }

  .floating-quote {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
  }

  .floating-actions {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  }

  .floating-whatsapp,
  .floating-toggle {
    min-height: 56px;
  }

  .floating-whatsapp {
    padding: 0 12px;
  }
}

@media (max-width: 390px) {
  .brand {
    font-size: 13px;
  }

  .nav .btn {
    padding: 0 11px;
    font-size: 12px;
  }

  h1 {
    font-size: 36px;
  }
}
