:root {
  --navy: #061a33;
  --navy-2: #082642;
  --navy-3: #0d3458;
  --gold: #ffc400;
  --gold-2: #ffb000;
  --purple: #6d4cff;
  --text: #0d1b3d;
  --muted: #637087;
  --soft: #f4f7fb;
  --line: #e6ebf2;
  --white: #ffffff;
  --green: #13a86b;
  --shadow: 0 18px 45px rgba(9, 31, 63, .12);
  --radius: 18px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #071a32;
  padding: 15px 24px;
  box-shadow: 0 10px 20px rgba(255, 196, 0, .22);
}

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

.btn-dark {
  background: var(--navy);
  color: white;
  padding: 15px 24px;
}

.btn-outline {
  border: 2px solid #7d63ff;
  color: #653dff;
  background: white;
  padding: 10px 16px;
  width: 100%;
}

.topbar {
  background: #06182d;
  color: white;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
}

.brand-text small {
  display: block;
  letter-spacing: 5px;
  font-size: 9px;
  opacity: .85;
  margin-bottom: 2px;
}

.brand-text strong {
  display: block;
  font-size: 29px;
  line-height: .9;
  letter-spacing: 1px;
}

.brand-text span {
  display: block;
  font-size: 9px;
  letter-spacing: .8px;
  opacity: .8;
  margin-top: 4px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
  font-size: 15px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.search-mini {
  width: 245px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.08);
  color: white;
  border-radius: 999px;
  padding: 13px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: .95;
}

.login { font-weight: 700; }

.nav-user-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.nav-user-chip:hover {
  transform: scale(1.04);
  border-color: rgba(255, 196, 0, 0.85);
}
.nav-user-initials {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #061a33;
  background: linear-gradient(145deg, #ffc400, #f0b020);
}
.nav-user-photo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  display: block;
}

.hero {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(4, 21, 40, .97) 0%, rgba(4, 21, 40, .88) 40%, rgba(4,21,40,.20) 66%, rgba(4,21,40,.08) 100%),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80') center right / cover;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  min-height: 520px;
  padding: 54px 0 34px;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -2px;
  margin: 0 0 18px;
  max-width: 660px;
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-size: 19px;
  line-height: 1.5;
  max-width: 650px;
  margin: 0 0 24px;
  font-weight: 600;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 26px 0;
  max-width: 720px;
}

.benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.benefit .ico {
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.benefit strong { display: block; font-size: 14px; }
.benefit span { display: block; opacity: .88; font-size: 13px; margin-top: 3px; }

.hero-search {
  display: flex;
  max-width: 720px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-search-wrap {
  max-width: 720px;
  position: relative;
}

.hero-search-wrap .hero-search {
  max-width: none;
}

.hero-search input {
  flex: 1;
  padding: 19px 20px;
  border: none;
  font-size: 15px;
  outline: none;
}

.hero-search button { border-radius: 0; padding-inline: 28px; }

.search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 30px rgba(9,31,63,.14);
  z-index: 30;
  overflow: hidden;
}

.search-suggest-item {
  display: block;
  padding: 12px 14px;
  border-bottom: 1px solid #eff3f8;
}

.search-suggest-item:last-child { border-bottom: 0; }
.search-suggest-item:hover { background: #f8fbff; }
.search-suggest-item strong { display: block; font-size: 14px; color: #0d1b3d; }
.search-suggest-item span { display: block; font-size: 12px; color: #667085; margin-top: 2px; }

.tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  align-items: center;
  font-size: 13px;
}

.tag {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.08);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.stats-card {
  width: 300px;
  margin-left: auto;
  background: rgba(255,255,255,.92);
  color: var(--text);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.22);
}

.stat {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.stat .sico { color: #182d8a; font-size: 27px; }
.stat strong { display: block; font-size: 23px; }
.stat span { color: var(--muted); font-weight: 600; font-size: 13px; }

.stats-card .play {
  background: var(--navy-3);
  color: white;
  padding: 20px 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}

section { padding: 42px 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

h2 {
  font-size: 30px;
  letter-spacing: -.7px;
  margin: 0;
}

h2 span, .accent { color: var(--gold-2); }

.link-more {
  color: #5b3bff;
  font-weight: 800;
  font-size: 14px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.course-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.course-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.course-card-link .course-card {
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}

.course-card-link:hover .course-card {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.course-cover {
  height: 120px;
  position: relative;
  display: grid;
  place-items: center;
  color: white;
  font-size: 34px;
  font-weight: 900;
  overflow: hidden;
}

.c1 { background: linear-gradient(135deg, #8a48ff, #d564ff); }
.c2 { background: linear-gradient(135deg, #064a7a, #0c91d4); }
.c3 { background: linear-gradient(135deg, #026d3b, #0fbf6b); }
.c4 { background: linear-gradient(135deg, #ff7a21, #ffbf37); }
.c5 { background: linear-gradient(135deg, #01406e, #0e82d1); }

.free-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: white;
  color: var(--green);
  font-weight: 900;
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 6px;
}

.course-body { padding: 16px; }
.category { font-size: 12px; font-weight: 900; color: #643fff; text-transform: uppercase; }
.course-card h3 { font-size: 17px; margin: 8px 0 15px; line-height: 1.15; min-height: 42px; }
.meta { display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; margin-bottom: 14px; }

.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 26px;
  background: #f1f5fb;
  border-radius: 14px;
  padding: 22px;
}

.mini-feature { display: flex; align-items: center; gap: 16px; }
.circle-ico {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: white; color: #5f48ff; font-size: 25px;
}
.mini-feature strong { display: block; font-size: 16px; }
.mini-feature span { color: var(--muted); font-size: 14px; line-height: 1.35; }

.cta-bar {
  margin-top: 28px;
  background: linear-gradient(135deg, #07315b, #021e3d);
  color: white;
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-bar strong { font-size: 24px; display: block; }
.cta-bar span { opacity: .88; }

.trust-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding-top: 26px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #43516b;
  font-size: 13px;
  font-weight: 600;
}

.trust-item b { color: var(--navy); display: block; }

.success {
  background: linear-gradient(180deg, #fff, #f7f9fd);
}

.success-layout {
  display: grid;
  grid-template-columns: .8fr 1.6fr;
  gap: 40px;
  align-items: stretch;
}

.success-intro p { color: var(--muted); line-height: 1.55; font-size: 17px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(9,31,63,.08);
}

.avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dce8ff, #fff1c0);
  display: grid;
  place-items: center;
  font-size: 34px;
}

.testimonial .quote { color: #6c52ff; font-size: 26px; font-weight: 900; }
.testimonial p { color: #4d5870; font-size: 14px; line-height: 1.55; }
.pill { display: inline-block; background: #eee9ff; color: #613cff; border-radius: 999px; padding: 7px 13px; font-size: 12px; font-weight: 800; }
.role { display: block; margin-top: 12px; font-size: 12px; color: var(--muted); font-weight: 700; }

.latam-box, .cert-box {
  margin-top: 42px;
  background: linear-gradient(180deg, #f4f8ff, #eef4fb);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  text-align: center;
}

.flags {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 16px;
  align-items: center;
}

.flag {
  display: grid;
  place-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
}

.flag .bubble {
  width: 54px; height: 54px; border-radius: 50%;
  background: white;
  display: grid; place-items: center;
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 34px;
  text-align: center;
}

.step-ico {
  width: 82px; height: 82px; border-radius: 50%;
  background: white;
  margin: 0 auto 14px;
  display: grid; place-items: center;
  font-size: 34px;
  border: 2px solid #dfd7ff;
  color: #6b4bff;
}

.step-num {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #ece8ff;
  color: #6b4bff;
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 12px;
}

.step h3 { font-size: 15px; margin: 0 0 8px; }
.step p { color: var(--muted); font-size: 13px; line-height: 1.45; margin: 0; }

.cert-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
  background: #f5f8fc;
  padding: 18px;
  border-radius: 14px;
  text-align: left;
}

.area-blog {
  background: #fff;
}

.areas-layout {
  display: grid;
  grid-template-columns: .75fr 1.6fr;
  gap: 32px;
  align-items: center;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.area-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 12px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(9,31,63,.07);
  background: white;
}

.area-card .circle-ico { margin: 0 auto 12px; }
.area-card strong { font-size: 13px; display: block; line-height: 1.25; }
.area-card span { font-size: 12px; color: var(--muted); display: block; margin-top: 8px; font-weight: 800; }

.blog-news {
  display: grid;
  grid-template-columns: 1.5fr .7fr;
  gap: 28px;
  margin-top: 50px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(9,31,63,.08);
}

.blog-img { height: 110px; background: linear-gradient(135deg, #d8e5f6, #ead9bb); }
.blog-card div:last-child { padding: 15px; }
.blog-card h3 { font-size: 15px; line-height: 1.25; margin: 0 0 9px; }
.blog-card p { color: var(--muted); font-size: 13px; line-height: 1.4; }

.newsletter {
  background: linear-gradient(160deg, #061a33, #092e55);
  color: white;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
}

.newsletter h3 { font-size: 25px; margin: 0 0 12px; }
.newsletter p { opacity: .86; line-height: 1.45; }
.newsletter input { padding: 15px; border: none; border-radius: 8px; margin-bottom: 10px; }

.footer {
  background: #06182d;
  color: white;
  padding: 42px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
}

.footer p, .footer a { color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.7; }
.footer h4 { margin: 0 0 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 34px; padding-top: 18px; display: flex; justify-content: space-between; color: rgba(255,255,255,.58); font-size: 13px; }

@media (max-width: 1100px) {
  .menu { display: none; }
  .course-grid { grid-template-columns: repeat(3, 1fr); }
  .features-strip, .trust-line, .cert-benefits { grid-template-columns: repeat(2, 1fr); }
  .success-layout, .areas-layout, .blog-news { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .nav { height: auto; padding: 14px 0; flex-wrap: wrap; }
  .search-mini, .login { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .stats-card { margin: 0; width: 100%; }
  .hero-benefits, .course-grid, .features-strip, .testimonial-grid, .flags, .steps, .cert-benefits, .areas-grid, .blog-grid, .footer-grid, .trust-line { grid-template-columns: 1fr; }
  .hero-search { flex-direction: column; }
  .hero-search button { width: 100%; padding: 16px; }
  .cta-bar { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

/* Hub de cursos (/cursos) */
.courses-hub-page .hero {
  overflow: visible;
}

.courses-hub-page #courses-hub-search {
  position: relative;
  z-index: 25;
}

.courses-hub-page #courses-hub-search .search-suggest {
  z-index: 40;
}

.courses-hub-section {
  padding: 40px 0;
}

.courses-hub-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 16px;
}

.courses-hub-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 22px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(9, 31, 63, .06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.courses-hub-cat:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow);
}

.courses-hub-cat-ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 25px;
  background: linear-gradient(135deg, var(--purple), #9b7bff);
}

.courses-hub-cat-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
}

.courses-hub-cat-count {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.courses-hub-seo {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

@media (min-width: 900px) {
  .courses-hub-seo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.courses-hub-seo-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 8px 18px rgba(9, 31, 63, .05);
}

.courses-hub-seo-block h3 {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.courses-hub-seo-block h3 a {
  color: var(--navy);
  text-decoration: none;
}

.courses-hub-seo-block h3 a:hover {
  color: var(--purple);
}

.courses-hub-seo-block p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.courses-hub-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  align-items: center;
}

.courses-hub-filter-label {
  flex: 1;
  min-width: 200px;
}

.courses-hub-select {
  width: 100%;
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0 14px;
  color: #344054;
  font-weight: 600;
  font-size: 14px;
  outline: none;
}

.courses-hub-page .trust-line {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .courses-hub-page .trust-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .courses-hub-page .trust-line {
    grid-template-columns: 1fr;
  }
}

/* —— Menú móvil (☰) Volta: mismo corte que .menu oculto (1100px) —— */
.volta-mobile-nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.volta-mobile-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.volta-sandwich-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}

@media (max-width: 1100px) {
  .volta-mobile-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .volta-desktop-nav-actions {
    display: none !important;
  }
}

.volta-mobile-nav-root {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  visibility: hidden;
}

.volta-mobile-nav-root.is-open {
  pointer-events: auto;
  visibility: visible;
}

.volta-mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 21, 40, 0.55);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.volta-mobile-nav-root.is-open .volta-mobile-nav-backdrop {
  opacity: 1;
}

.volta-mobile-nav-panel {
  position: relative;
  width: min(360px, 94vw);
  height: 100%;
  background: #fff;
  color: var(--text);
  box-shadow: -12px 0 40px rgba(4, 21, 40, 0.25);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.volta-mobile-nav-root.is-open .volta-mobile-nav-panel {
  transform: translateX(0);
}

.volta-mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.volta-mobile-nav-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
}

.volta-mobile-nav-close {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: #f2f5f9;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
}

.volta-mobile-nav-links {
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.volta-mobile-nav-links > a {
  display: block;
  padding: 14px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
}

.volta-mobile-nav-links > a:hover {
  background: var(--soft);
}

a.volta-mobile-nav-cta {
  margin-top: 8px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #071a32;
}

.volta-mobile-nav-logout {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.volta-mobile-nav-logout-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: #f2f5f9;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  color: #b91c1c;
}

body.volta-mobile-nav-open {
  overflow: hidden;
}
