/* ═══ base ═══ */
:root {
  --bg: #05070f;
  --panel: #0b101d;
  --panel-2: #0e1424;
  --ink: #eef2fb;
  --ink-soft: #aebbd6;
  --ink-mute: #94a3bf;
  --blue: #5b8cff;
  --cyan: #8bdcff;
  --violet: #a78bff;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(139, 220, 255, 0.22);
  --sel: rgba(91, 140, 255, 0.16);
  --sel-strong: rgba(91, 140, 255, 0.28);
  --navbar-h: 50px;
  --navbar-gap: 8px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: "Sora", system-ui, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg) url("public/wallpaper.jpeg") center / cover no-repeat fixed;
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Epilogue", sans-serif;
}

::selection {
  background: rgba(91, 140, 255, 0.35);
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

/* ═══ background glows ═══ */
@keyframes driftA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.12); }
}

@keyframes driftB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-70px, 50px) scale(1.18); }
}

@keyframes driftC {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 60px) scale(1.1); }
}

@keyframes gradFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.bg-glows {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 50%;
}

.glow-a {
  top: -12%;
  left: 8%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(56, 134, 248, 0.4), transparent 68%);
  filter: blur(36px);
  animation: driftA 18s ease-in-out infinite;
}

.glow-b {
  top: 34%;
  right: -8%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(124, 108, 240, 0.32), transparent 70%);
  filter: blur(44px);
  animation: driftB 22s ease-in-out infinite;
}

.glow-c {
  bottom: -14%;
  left: 34%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(90, 209, 255, 0.22), transparent 70%);
  filter: blur(40px);
  animation: driftC 26s ease-in-out infinite;
}

.grad {
  background: linear-gradient(110deg, #8bdcff, #5b8cff, #a78bff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradFlow 6s linear infinite;
}

/* ═══ menubar ═══ */
#menubar {
  position: fixed;
  top: var(--navbar-gap);
  left: var(--navbar-gap);
  right: var(--navbar-gap);
  height: var(--navbar-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: rgba(8, 11, 20, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: top 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    right 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

body.win-maximized #menubar {
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  box-shadow: none;
}

.menubar-left {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo-btn {
  display: flex;
  align-items: center;
  padding: 4px 10px 4px 4px;
  border-radius: 8px;
}

.logo-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

.logo-img {
  height: 20px;
  width: auto;
  display: block;
}

.menu-item {
  position: relative;
}

.menu-trigger {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 11px;
  border-radius: 7px;
}

.menu-item:hover .menu-trigger,
.menu-item.open .menu-trigger {
  background: var(--sel);
  color: var(--ink);
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: rgba(11, 16, 29, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.5);
  padding: 5px;
  flex-direction: column;
}

.menu-item.open .dropdown {
  display: flex;
}

.dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 11px;
  border-radius: 8px;
  white-space: nowrap;
}

.dropdown button:hover {
  background: var(--sel);
  color: var(--ink);
}

.dd-ico {
  width: 18px;
  text-align: center;
}

.dd-sep {
  height: 1px;
  background: var(--border);
  margin: 4px 6px;
}

.cta-btn {
  color: #05070f;
  font-weight: 700;
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: 8px;
  background: linear-gradient(120deg, #8bdcff, #4f7bf5);
  box-shadow: 0 8px 26px rgba(63, 118, 240, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 38px rgba(63, 118, 240, 0.55);
  filter: brightness(1.08);
}

/* ═══ desktop ═══ */
#desktop {
  position: fixed;
  inset: calc(var(--navbar-h) + var(--navbar-gap) * 2) 0 0 0;
  z-index: 10;
  transition: inset 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

body.win-maximized #desktop {
  inset: var(--navbar-h) 0 0 0;
}

.icon-col {
  position: absolute;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 10;
}

.icon-col-left {
  left: 14px;
}

.icon-col-right {
  right: 14px;
}

.desk-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100px;
  padding: 10px 4px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.desk-icon:hover {
  background: rgba(91, 140, 255, 0.1);
}

.desk-icon.active {
  background: rgba(91, 140, 255, 0.18);
  border-color: var(--border-strong);
}

.di-glyph {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 0;
  background: url("public/folder-icon.png") center / contain no-repeat;
  filter: drop-shadow(0 0 12px rgba(91, 140, 255, 0.45));
}

.di-label {
  font-size: 12.5px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* ═══ window ═══ */
@keyframes winPop {
  from {
    opacity: 0;
    scale: 0.98;
  }
}

.window {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, calc(100vw - 270px));
  height: calc(100% - 76px);
  display: flex;
  flex-direction: column;
  background: rgba(10, 14, 26, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  z-index: 20;
  animation: winPop 0.15s ease;
  transition: top 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.window.maximized {
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
}

.window.closed {
  display: none;
}

.window-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  flex-shrink: 0;
  padding: 0 8px 0 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
  user-select: none;
}

.window-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.window-controls {
  display: flex;
  gap: 2px;
}

.wc-btn {
  width: 34px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  font-size: 13px;
  color: var(--ink-mute);
}

.wc-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.wc-close:hover {
  background: #e81123;
  color: #fff;
}

/* toolbar */
.window-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  flex-shrink: 0;
  padding: 0 12px;
  border-bottom: 1px solid var(--border);
  user-select: none;
}

.tb-btn {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  font-size: 19px;
  line-height: 1;
  color: var(--ink-mute);
  padding-bottom: 3px;
}

.tb-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--ink-mute);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
}

.crumb-root {
  color: var(--ink-soft);
  font-weight: 600;
}

.crumb-sep {
  opacity: 0.5;
}

#crumb-section {
  color: var(--ink);
  font-weight: 500;
}

.tb-search {
  width: 170px;
  height: 28px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-family: inherit;
  font-size: 12.5px;
  outline: none;
}

.tb-search:focus {
  border-color: var(--border-strong);
}

.tb-search::placeholder {
  color: var(--ink-mute);
}

/* sidebar + body */
.window-main {
  flex: 1;
  display: flex;
  min-height: 0;
}

.sidebar {
  width: 192px;
  flex-shrink: 0;
  padding: 12px 8px;
  border-right: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sb-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 4px 10px 6px;
}

.sb-item {
  display: flex;
  align-items: center;
  gap: 9px;
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 10px;
  border-radius: 7px;
  white-space: nowrap;
}

.sb-ico {
  width: 18px;
  text-align: center;
  font-size: 14px;
}

.sb-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.sb-item.active {
  background: var(--sel-strong);
  color: var(--ink);
}

.window-body {
  flex: 1;
  overflow-y: auto;
  min-width: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(91, 140, 255, 0.35) transparent;
}

/* status bar */
.window-statusbar {
  height: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-top: 1px solid var(--border);
  font-size: 11.5px;
  color: var(--ink-mute);
  user-select: none;
}

/* ═══ content: shared ═══ */
.panel-pad {
  padding: 24px 28px;
  max-width: 860px;
}

.kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #6f9bff;
  margin-bottom: 8px;
}

.panel-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin: 0 0 12px;
}

.ui-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 10px;
  max-width: 640px;
}

.btn-grad {
  display: inline-block;
  color: #05070f;
  font-weight: 700;
  border-radius: 100px;
  background: linear-gradient(120deg, #8bdcff, #4f7bf5);
  box-shadow: 0 8px 26px rgba(63, 118, 240, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-sm {
  font-size: 13px;
  padding: 9px 20px;
}

.btn-grad:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 34px rgba(63, 118, 240, 0.5);
  filter: brightness(1.08);
}

.btn-ghost {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

/* list / details view */
.list {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.lhead {
  display: flex;
  gap: 14px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.lhead .col-name {
  width: 220px;
  flex-shrink: 0;
}

.lrow {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease, opacity 0.4s ease;
}

.lrow:last-child {
  border-bottom: none;
}

.lrow:hover {
  background: var(--sel);
}

.lrow.fading {
  opacity: 0;
}

.lrow strong {
  font-weight: 600;
  color: var(--ink);
}

.lrow .col-name {
  width: 220px;
  flex-shrink: 0;
}

.lrow .col-desc,
.lrow-main span {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-mute);
}

.lrow-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.lrow-num {
  font-family: "Epilogue", sans-serif;
  font-weight: 700;
  font-size: 15px;
  width: 26px;
  flex-shrink: 0;
  text-align: center;
}

.lrow-ico {
  flex-shrink: 0;
}

.icon-grad {
  width: 34px;
  aspect-ratio: 257 / 223;
  background: linear-gradient(110deg, #8bdcff, #5b8cff, #a78bff);
  background-size: 200% auto;
  animation: gradFlow 6s linear infinite;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

/* master-detail (casos, equipo) */
.md-wrap {
  display: flex;
  gap: 0;
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  min-height: 320px;
}

.md-list {
  width: 250px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  overflow-y: auto;
  max-height: 420px;
}

.mrow {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.mrow:last-child {
  border-bottom: none;
}

.mrow:hover {
  background: var(--sel);
}

.mrow.selected {
  background: var(--sel-strong);
}

.mrow strong {
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
}

.mrow-glyph {
  font-size: 18px;
  flex-shrink: 0;
}

.mrow-thumb {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.md-pane {
  flex: 1;
  padding: 22px 24px;
  min-width: 0;
}

.pane {
  display: none;
}

.pane.show {
  display: block;
}

/* casos preview */
.caso-logo {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(130deg, rgba(91, 140, 255, 0.28), rgba(124, 108, 240, 0.16));
  margin-bottom: 14px;
}

.caso-logo img {
  max-height: 56px;
  max-width: 60%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #bcd2ff;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(91, 140, 255, 0.14);
  border: 1px solid var(--border-strong);
  margin-bottom: 10px;
}

.caso-metric {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-weight: 600;
  font-size: 14px;
}

/* equipo contact card */
.contact-card.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.contact-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 10px;
}

.contact-card strong {
  font-size: 16px;
  color: #8adbfe;
}

.contact-card span {
  font-size: 13px;
  color: var(--ink-mute);
}

.contact-card .btn-sm {
  margin-top: 14px;
}

/* app grid (herramientas) */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 18px 10px;
  margin-top: 20px;
}

.app-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 4px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  text-align: center;
}

.app-tile:hover {
  background: var(--sel);
  border-color: var(--border-strong);
}

.app-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--c) 85%, #fff), var(--c) 70%);
  box-shadow: 0 0 18px color-mix(in srgb, var(--c) 55%, transparent);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* about panel (inicio) */
.about-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 32px;
  max-width: 620px;
  margin: 0 auto;
}

.about-logo {
  width: 84px;
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 24px rgba(91, 140, 255, 0.5));
}

.about-name {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
}

.about-tagline {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 22px;
  max-width: 440px;
}

.spec-rows {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  margin-bottom: 22px;
}

.spec {
  display: flex;
  gap: 14px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 12.5px;
  line-height: 1.5;
}

.spec:last-child {
  border-bottom: none;
}

.spec span {
  width: 84px;
  flex-shrink: 0;
  color: var(--ink-mute);
  font-weight: 600;
}

.spec b {
  font-weight: 500;
  color: var(--ink-soft);
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 30px;
  margin-top: 28px;
  opacity: 0.85;
}

.logos-row img {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* contacto dialog */
.dialog-wrap {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
}

.dialog-iso {
  position: absolute;
  top: 20px;
  right: -80px;
  height: 95%;
  width: auto;
  opacity: 0.35;
  pointer-events: none;
}

.dialog {
  position: relative;
  width: min(460px, 100%);
  padding: 30px 30px 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(14, 20, 36, 0.92);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.dialog-icon {
  width: 56px;
  height: auto;
  margin-bottom: 14px;
}

.dialog-title {
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.4px;
  margin: 0 0 10px;
}

.dialog .ui-text {
  margin: 0 auto 22px;
}

.dialog-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* trash */
.trash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.trash-head .panel-title {
  margin: 0;
}

.trash-empty {
  margin-top: 18px;
  padding: 36px;
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-mute);
  border: 1px dashed var(--border);
  border-radius: 10px;
}

/* ═══ tablet & mobile ═══ */
@media (max-width: 900px) {

  /* navbar: no menus — desktop icons are the nav. Logo + CTA only */
  .menu-item {
    display: none;
  }

  /* toolbar: drop search, keep back/fwd + section name with ellipsis */
  .tb-search {
    display: none;
  }

  .crumb-root,
  .crumb-sep {
    display: none;
  }

  #crumb-section {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* maximize is meaningless when window is forced fullscreen */
  #btn-max {
    display: none;
  }

  /* desktop icons: phone-style grid instead of side columns */
  #desktop {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 4px;
    padding: 16px 10px;
    overflow-y: auto;
  }

  .icon-col {
    display: contents;
  }

  .desk-icon {
    width: 88px;
  }

  /* window: always fullscreen under the navbar */
  .window {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
  }
}

@media (max-width: 760px) {
  .sidebar {
    display: none;
  }

  .lrow .col-name,
  .lhead .col-name {
    width: 130px;
  }

  .md-wrap {
    flex-direction: column;
  }

  .md-list {
    width: 100%;
    max-height: 180px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 400px) {
  .cta-btn {
    padding: 7px 12px;
    font-size: 12.5px;
  }

  .logo-img {
    height: 20px;
  }
}
