:root{
  --bg:#0b1220;
  --panel:#0f172a;
  --text:#e5e7eb;
  --muted:#a3aab8;
  --brand:#f97316;
  --line:rgba(255,255,255,.10);
  --shadow:0 18px 60px rgba(0,0,0,.35);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  background:
    radial-gradient(1200px 500px at 20% 10%, rgba(249,115,22,.18), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(99,102,241,.10), transparent 55%),
    var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{color:inherit;text-decoration:none}
.wrap{width:min(1120px, 92%);margin:0 auto}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:12px; top:12px; width:auto; height:auto;
  padding:10px 12px; border-radius:12px;
  background:rgba(255,255,255,.10); border:1px solid var(--line);
}

.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

body.no-scroll{ overflow:hidden; }

.muted{color:var(--muted)}
.small{font-size:13px}
.h3{font-size:20px;margin:0}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--brand), #ffb26b);
  color:#111827;
  font-weight:800;
  border:0;
  cursor:pointer;
}
.btn--small{padding:10px 14px;border-radius:12px}
.btn--full{
  width:100%;
  justify-content:center;
  border-radius:18px;
  padding:14px 16px;
}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:20;
  background:rgba(11,18,32,.72);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex;gap:10px;align-items:center}
.brand__logo{
  width:38px;height:38px;border-radius:12px;
  background:linear-gradient(135deg, var(--brand), #ffb26b);
  color:#111827;font-weight:900;
  display:flex;align-items:center;justify-content:center;
}
.brand__name{font-weight:800;letter-spacing:.2px}

.menu{display:flex;gap:18px;align-items:center}
.menu a{opacity:.92}
.menu a:hover{opacity:1}

/* Hamburger */
.hamburger{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
}
.hamburger__icon{font-size:22px;line-height:1}

/* ===== MENU MOBILE (premium + 100% correto) ===== */
.overlay{
  position:fixed;
  top:0; left:0; right:0; bottom:0;
  z-index:9998;
  background:rgba(0,0,0,.75);
  backdrop-filter: blur(4px);
  opacity:0;
  transition: opacity .25s ease;
  pointer-events:none;
}
.overlay.is-open{
  opacity:1;
  pointer-events:auto;
}

.drawer{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:9999;

  width:100vw;
  height:100dvh;

  background:#0f172a;
  border-left:0;
  box-shadow:none;

  transform:translateX(105%);
  transition:transform .25s ease;

  padding:18px;
  display:flex;
  flex-direction:column;
  gap:16px;

  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
}
.drawer.is-open{transform:translateX(0)}

@supports not (height: 100dvh){
  .drawer{ height:100vh; }
}

@supports not (height: 100dvh){
  .drawer{ height:100vh; }
}

.drawer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 6px;
}
.drawer__title{font-weight:900}
.drawer__close{
  width:42px;height:42px;border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
  font-size:18px;
}

.drawer__nav{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:8px 6px;
}
.drawer__nav a{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  color:var(--text);
  font-weight:600;
  font-size:16px;
}
.drawer__nav a:not(.btn){
  padding:16px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
}
.drawer__nav a:not(.btn):hover{
  border-color:rgba(249,115,22,.45);
}

.drawer__foot{
  margin-top:auto;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  padding:10px 6px;
}
.drawer__small{color:var(--muted);font-size:13px}

/* Hero */
.hero{padding:64px 0 28px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:stretch;
}
.hero h1{font-size:44px;line-height:1.05;margin:0 0 12px}
.hero p{margin:0 0 18px;max-width:56ch}

.search{
  display:flex; gap:10px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius:16px;
  padding:10px;
  max-width:560px;
}
.search input{
  flex:1;
  background:transparent;border:0;outline:none;
  color:var(--text);
  font-size:15px;
}
.hero__badges{display:flex;gap:10px;flex-wrap:wrap}
.badge{
  display:inline-flex; align-items:center;
  padding:8px 10px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius:999px;
  font-size:13px;
}

.hero__card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.kicker{color:var(--muted);font-weight:700;margin:0 0 6px}
.hero__cardTop{margin-bottom:10px}

.stateGrid{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
}
.state{
  display:flex;align-items:center;justify-content:center;
  padding:12px 0;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(11,21,48,.55);
  font-weight:900;
  letter-spacing:.8px;
}
.state:hover{border-color:rgba(249,115,22,.5)}
.linkMore{display:inline-block;margin-top:12px;color:#ffd3b0;font-weight:800}

/* Section cards */
.section{padding:42px 0}
.section__head h2{margin:0 0 8px;font-size:28px}
.section__head p{margin:0 0 18px}

.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}
.card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:var(--radius);
  padding:18px;
  transition:transform .15s ease, border-color .15s ease;
}
.card:hover{transform:translateY(-3px);border-color:rgba(249,115,22,.45)}
.icon{font-size:24px;margin-bottom:10px}
.card h3{margin:0 0 8px;font-size:18px}
.card p{margin:0 0 14px}
.card__link{color:#ffd3b0;font-weight:900}

/* Trust */
.trust{
  padding:44px 0 58px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.02);
}
.trust__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:center;
}
.list{margin:14px 0 18px}
.list li{margin:8px 0}

.trust__box{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  background:rgba(11,21,48,.55);
}
.trust__mini{display:flex;justify-content:space-between;gap:10px;margin-bottom:14px}
.miniTitle{font-weight:900}
.miniUrl{color:var(--muted);font-size:13px}
.trust__preview{padding:14px;border:1px solid var(--line);border-radius:16px;background:rgba(255,255,255,.03)}
.line{height:10px;border-radius:999px;background:rgba(255,255,255,.08);margin:10px 0}
.w80{width:80%}.w60{width:60%}.w90{width:90%}
.chips{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}
.chip{padding:8px 10px;border-radius:999px;border:1px solid var(--line);background:rgba(255,255,255,.04);font-size:13px}

/* Footer */
.footer{padding:34px 0 24px}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .7fr .7fr;
  gap:20px;
}
.footer__links{display:grid;gap:10px;margin-top:10px}
.footer__links a{color:var(--muted)}
.footer__links a:hover{color:var(--text)}
.footer__copy{
  margin-top:18px;color:var(--muted);font-size:13px;
  border-top:1px solid var(--line);padding-top:14px
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid, .trust__grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr 1fr}
  .hero h1{font-size:36px}
  .footer__grid{grid-template-columns:1fr}
}
@media (max-width: 768px){
  .menu--desktop{display:none}
  .hamburger{display:inline-flex;align-items:center;justify-content:center}
  .stateGrid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width: 560px){
  .cards{grid-template-columns:1fr}
  .hero h1{font-size:30px}
}

/* Desktop: garante que drawer não apareça */
@media (min-width: 769px){
  .overlay{ display:none !important; }
  .drawer{ display:none !important; }
  .hamburger{ display:none !important; }
  .menu--desktop{ display:flex !important; }
}
/* ===== FORCE FULLSCREEN DRAWER (ultima regra manda) ===== */
.drawer{
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  height: 100dvh !important;
  border-left: 0 !important;
  box-shadow: none !important;
}

@supports not (height: 100dvh){
  .drawer{ height: 100vh !important; }
}
/* ===== FIX DEFINITIVO: MENU MOBILE TELA CHEIA + SEM SCROLL HORIZONTAL ===== */

/* Mata qualquer scroll lateral no site */
html, body{
  overflow-x: hidden !important;
  width: 100% !important;
}

/* Overlay sempre cobre tudo */
.overlay{
  position: fixed !important;
  inset: 0 !important;
  z-index: 9998 !important;
}

/* Drawer vira TELA CHEIA de verdade */
.drawer{
  position: fixed !important;
  inset: 0 !important;              /* top/right/bottom/left = 0 */
  width: 100vw !important;
  max-width: 100vw !important;
  height: 100dvh !important;
  background: #0f172a !important;
  border: 0 !important;
  box-shadow: none !important;

  transform: translateX(100%) !important;
  transition: transform .25s ease !important;

  display: flex !important;
  flex-direction: column !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

.drawer.is-open{
  transform: translateX(0) !important;
}

/* Fallback para celulares antigos */
@supports not (height: 100dvh){
  .drawer{ height: 100vh !important; }
}
/* ===== BLOG ===== */
.blog__hero{padding:46px 0 14px}
.blog__heroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:20px;
  align-items:stretch;
}
.blog__featured .featuredCard{
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.blogGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.postCard{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:var(--radius);
  padding:18px;
}
.postCard h3{margin:0 0 8px}
.postMeta{display:flex;gap:10px;align-items:center}
.tag{
  display:inline-flex;align-items:center;
  padding:6px 10px;border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  font-size:12px;
}
.dot{opacity:.6}

/* ===== POST ===== */
.post__hero{
  padding:52px 0 18px;
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.02);
}
.post__heroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:20px;
  align-items:stretch;
}
.breadcrumbs{display:flex;gap:10px;align-items:center;color:var(--muted);font-size:13px;margin-bottom:10px}
.breadcrumbs__current{color:var(--text);opacity:.9}
.post__title{margin:0 0 10px;font-size:42px;line-height:1.05}
.post__subtitle{margin:0 0 14px;max-width:60ch}
.post__meta{display:flex;gap:10px;flex-wrap:wrap;align-items:center;color:var(--muted);font-size:13px}

.post__grid{
  padding:26px 0 54px;
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap:18px;
  align-items:start;
}
.post__content{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:var(--radius);
  padding:20px;
}
.post__content h2{margin-top:22px}
.post__content h3{margin-top:18px}
.lead{font-size:18px;line-height:1.6}
.note{
  margin-top:18px;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid rgba(249,115,22,.25);
  background:rgba(249,115,22,.08);
}
.codebox{
  margin:14px 0;
  padding:14px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.25);
}
.codebox code{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace}

.faq details{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:16px;
  padding:12px 14px;
  margin:10px 0;
}
.faq summary{cursor:pointer;font-weight:700}
.faq p{color:var(--muted)}

.post__sidebar{
  position:sticky;
  top:84px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.sideCard{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:var(--radius);
  padding:16px;
}
.toc{display:grid;gap:10px;margin-top:10px}
.related{display:grid;gap:10px;margin-top:10px}
.adBox{opacity:.9}

/* CTA box */
.ctaBox{
  border:1px solid rgba(249,115,22,.25);
  background:rgba(249,115,22,.08);
  border-radius:var(--radius);
  padding:18px;
}

/* Responsive */
@media (max-width: 980px){
  .blog__heroGrid, .post__heroGrid, .post__grid{grid-template-columns:1fr}
  .blogGrid{grid-template-columns:1fr 1fr}
  .post__title{font-size:34px}
  .post__sidebar{position:static}
}
@media (max-width: 560px){
  .blogGrid{grid-template-columns:1fr}
}
/* ===== BLOG IMAGES ===== */

/* Hero image do post */
.post__heroImage{
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.post__heroImage img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Card image no blog */
.postCard__image{
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
}
.postCard__image img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.postCard:hover .postCard__image img{
  transform: scale(1.05);
}
/* ===== POST: autor no banner ===== */
.post__author{
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.avatar{
  width:26px;height:26px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:12px;
  background:rgba(255,255,255,.08);
  border:1px solid var(--line);
}

/* ===== BLOG CARDS: tag + read time ===== */
.postCard__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.postCard__time{
  font-size:12px;
  color:var(--muted);
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}
.postCard__foot{
  display:flex;
  gap:10px;
  align-items:center;
  margin-top:12px;
}
.wrap--directory{
  width:min(1180px, 92%);
}

.directoryPage{
  padding:92px 0 56px;
}

.directoryBreadcrumb{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  margin:0 0 22px;
  color:var(--muted);
  font-size:14px;
}

.directoryBreadcrumb a{
  color:var(--muted);
  text-decoration:none;
}

.directoryBreadcrumb a:hover{
  color:var(--text);
}

.directoryHero{
  margin-bottom:34px;
}

.directoryKicker{
  margin:0 0 10px;
  color:#f4b25d;
  font-size:15px;
  font-weight:800;
}

.directoryHero h1{
  margin:0 0 14px;
  font-size:52px;
  line-height:1.02;
  color:#fff;
  letter-spacing:-0.02em;
}

.directoryLead{
  margin:0;
  max-width:760px;
  color:#b8c2d8;
  font-size:18px;
  line-height:1.75;
}

.directoryCards{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
}

.transportCard{
  display:flex;
  flex-direction:column;
  min-height:250px;
  padding:26px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.03));
  box-shadow:0 14px 40px rgba(0,0,0,.22);
  backdrop-filter:blur(8px);
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.transportCard:hover{
  transform:translateY(-4px);
  border-color:rgba(244,163,64,.35);
  box-shadow:0 18px 46px rgba(0,0,0,.28);
}

.transportCard__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin-bottom:16px;
}

.transportCard__city,
.transportCard__service{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
}

.transportCard__city{
  background:rgba(255,255,255,.06);
  color:#dbe3f3;
  border:1px solid rgba(255,255,255,.08);
}

.transportCard__service{
  background:rgba(244,163,64,.14);
  color:#f4b25d;
  border:1px solid rgba(244,163,64,.18);
}

.transportCard__title{
  margin:0 0 12px;
  font-size:30px;
  line-height:1.15;
  letter-spacing:-0.02em;
}

.transportCard__title a{
  color:#fff;
  text-decoration:none;
}

.transportCard__title a:hover{
  color:#f4a340;
}

.transportCard__desc{
  margin:0;
  color:#c6d0e2;
  font-size:16px;
  line-height:1.8;
}

.transportCard__foot{
  margin-top:auto;
  padding-top:18px;
}

.transportCard__link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#f4b25d;
  font-weight:800;
  text-decoration:none;
}

.transportCard__link:hover{
  color:#ffd19b;
}

.directoryPagination{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}

.directoryPagination__item{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:44px;
  height:44px;
  padding:0 14px;
  border-radius:12px;
  text-decoration:none;
  color:#d7def0;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-weight:700;
}

.directoryPagination__item:hover,
.directoryPagination__item.is-current{
  background:#f4a340;
  border-color:#f4a340;
  color:#111827;
}

.directoryTextBlock,
.directoryFaq{
  margin-top:36px;
  padding:26px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  background:rgba(255,255,255,.03);
}

.directoryTextBlock h2,
.directoryFaq h2{
  margin:0 0 16px;
  font-size:30px;
  color:#fff;
}

.directoryTextBlock p{
  margin:0 0 16px;
  color:#c7d0e0;
  line-height:1.85;
  font-size:16px;
}

.directoryTextBlock p:last-child{
  margin-bottom:0;
}

.directoryFaq details{
  border-top:1px solid rgba(255,255,255,.08);
  padding:16px 0;
}

.directoryFaq details:first-of-type{
  border-top:0;
  padding-top:0;
}

.directoryFaq summary{
  cursor:pointer;
  font-weight:800;
  color:#fff;
}

.directoryFaq p{
  margin:12px 0 0;
  color:#c7d0e0;
  line-height:1.8;
}

@media (max-width: 980px){
  .directoryCards{
    grid-template-columns:1fr;
  }

  .directoryHero h1{
    font-size:40px;
  }
}

@media (max-width: 560px){
  .directoryPage{
    padding:64px 0 44px;
  }

  .directoryHero{
    margin-bottom:26px;
  }

  .directoryHero h1{
    font-size:32px;
  }

  .directoryLead{
    font-size:16px;
  }

  .transportCard{
    min-height:auto;
    padding:20px;
  }

  .transportCard__title{
    font-size:24px;
  }

  .directoryTextBlock,
  .directoryFaq{
    padding:20px;
  }

  .directoryTextBlock h2,
  .directoryFaq h2{
    font-size:24px;
  }
}
.directoryPage--company{
  padding-top: 92px;
}

.companyShell{
  display:grid;
  grid-template-columns:minmax(0, 1.18fr) 360px;
  gap:24px;
  align-items:stretch;
  margin-bottom:28px;
}

.companyShell__main,
.companyShell__side{
  min-width:0;
}

.companyShell__main{
  padding:30px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025));
  box-shadow:0 18px 46px rgba(0,0,0,.24);
}

.companyShell__title{
  margin:0 0 14px;
  font-size:48px;
  line-height:1.04;
  letter-spacing:-0.03em;
  color:#fff;
}

.companyShell__lead{
  margin:0 0 20px;
  max-width:760px;
  color:#c7d0e0;
  font-size:18px;
  line-height:1.8;
}

.companyShell__tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.companyLayout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 320px;
  gap:24px;
  align-items:start;
  margin-bottom:28px;
}

.companyAside{
  display:grid;
  gap:20px;
}

.companyPanel{
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025));
  box-shadow:0 18px 46px rgba(0,0,0,.24);
}

.companyPanel--content{
  padding:30px;
}

.companyPanel--compact{
  padding:24px;
}

.companyPanel h2,
.companyPanel h3{
  margin:0 0 16px;
  color:#fff;
  font-size:1.45rem;
  letter-spacing:-0.02em;
}

.companyPanel p{
  margin:0 0 16px;
  color:#c7d0e0;
  line-height:1.85;
  font-size:16px;
}

.companyPanel p:last-child{
  margin-bottom:0;
}

.companyInfoList{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

.companyInfoList li{
  color:#cfd7e8;
  line-height:1.65;
  font-size:15px;
}

.companyInfoList strong{
  color:#fff;
}

.companySidebar__links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

.companySidebar__links li{
  margin:0;
}

.companySidebar__links a{
  color:#dbe3f3;
  text-decoration:none;
  line-height:1.55;
}

.companySidebar__links a:hover{
  color:#f4b25d;
}

@media (max-width: 980px){
  .companyShell,
  .companyLayout{
    grid-template-columns:1fr;
  }

  .companyShell__title{
    font-size:38px;
  }
}

@media (max-width: 560px){
  .companyShell__main,
  .companyPanel--content,
  .companyPanel--compact{
    padding:22px;
  }

  .companyShell__title{
    font-size:31px;
  }

  .companyShell__lead{
    font-size:16px;
  }
}