:root{
  --red:#d91b12;
  --dark:#111;
  --text:#222;
  --muted:#666;
  --light:#f5f5f5;
  --border:#e5e5e5;
  --shadow:0 10px 30px rgba(0,0,0,.10);
  --radius:10px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#f3f3f3;
}

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

.topbar{
  background:#111;
  color:#fff;
  font-size:14px;
}

.topbar-inner{
  height:38px;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:28px;
}

.main-header{
  background:#fff;
  box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.header-inner{
  height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand img{
  height:64px;
  width:auto;
}

.menu{
  list-style:none;
  display:flex;
  gap:34px;
  margin:0;
  padding:0;
}

.menu a{
  color:#111;
  text-decoration:none;
  text-transform:uppercase;
  font-weight:700;
  font-size:13px;
}

.menu a:hover{
  color:var(--red);
}

.btn-whatsapp,
.btn-primary{
  background:var(--red);
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  font-weight:700;
  border-radius:6px;
  padding:13px 22px;
  display:inline-block;
}

.hero{
  position:relative;
  min-height:430px;
  background:var(--hero-image) center/cover no-repeat;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.45), rgba(0,0,0,.05));
}

.hero-content{
  position:relative;
  color:#fff;
  max-width:1180px;
}

.hero h1{
  max-width:520px;
  font-size:46px;
  line-height:1.1;
  margin:0 0 18px;
}

.hero p{
  max-width:520px;
  font-size:18px;
  line-height:1.55;
  margin:0 0 30px;
}

.main-content{
  margin-top:24px;
}

.search-grid{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:24px;
  margin-bottom:28px;
}

.search-box,
.categories-box,
.benefits{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}

.search-box h2,
.categories-box h2,
.featured h2{
  margin:0 0 18px;
  text-transform:uppercase;
  font-size:18px;
}

.search-box input,
.search-box select{
  width:100%;
  height:44px;
  border:1px solid #ddd;
  border-radius:5px;
  padding:0 12px;
  margin-bottom:14px;
}

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

.search-box button{
  width:100%;
  height:46px;
  border:0;
  border-radius:6px;
  background:var(--red);
  color:#fff;
  font-weight:700;
  text-transform:uppercase;
  cursor:pointer;
}

.categories-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  border:1px solid var(--border);
  border-radius:8px;
  overflow:hidden;
}

.categories-grid a{
  display:flex;
  align-items:center;
  gap:12px;
  padding:15px;
  color:#111;
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  border-bottom:1px solid var(--border);
  border-right:1px solid var(--border);
  text-transform:uppercase;
}

.categories-grid a:hover{
  background:#fff5f4;
  color:var(--red);
}

.featured{
  margin-top:16px;
}

.featured > h2{
  text-align:center;
  position:relative;
}

.featured > h2:after{
  content:"";
  display:block;
  width:44px;
  height:3px;
  background:var(--red);
  margin:8px auto 0;
}

.vehicle-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.vehicle-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 8px 22px rgba(0,0,0,.08);
  transition:.2s ease;
}

.vehicle-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 32px rgba(0,0,0,.15);
}

.vehicle-card a{
  color:inherit;
  text-decoration:none;
}

.vehicle-image{
  height:180px;
  background:#ddd;
  overflow:hidden;
}

.vehicle-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.vehicle-info{
  padding:15px;
}

.badge{
  display:inline-block;
  background:var(--red);
  color:#fff;
  padding:5px 9px;
  border-radius:4px;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  margin-bottom:10px;
}

.vehicle-info h3{
  margin:0 0 8px;
  font-size:15px;
  line-height:1.35;
  text-transform:uppercase;
}

.vehicle-info p{
  margin:0 0 14px;
  color:var(--muted);
  font-size:13px;
  line-height:1.4;
}

.vehicle-info strong{
  color:var(--red);
  font-size:18px;
}

.benefits{
  margin:28px 0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.benefits div{
  font-size:14px;
  line-height:1.45;
}

.footer{
  background:#111;
  color:#fff;
  padding:36px 0;
  margin-top:20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1.5fr;
  gap:40px;
}

.footer img{
  width:160px;
  background:#fff;
  padding:6px;
  border-radius:4px;
}

.footer a{
  display:block;
  color:#ddd;
  text-decoration:none;
  margin:8px 0;
}

.footer p{
  color:#ddd;
}

@media(max-width:900px){
  .topbar-inner{justify-content:center; flex-wrap:wrap; height:auto; padding:10px 0}
  .header-inner{height:auto; padding:16px 0}
  .menu{display:none}
  .btn-whatsapp{display:none}
  .hero{min-height:360px}
  .hero h1{font-size:32px}
  .search-grid{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr 1fr}
  .vehicle-grid{grid-template-columns:1fr 1fr}
  .benefits{grid-template-columns:1fr 1fr}
}

@media(max-width:560px){
  .container{width:min(100% - 22px, 1180px)}
  .brand img{height:54px}
  .hero{min-height:320px}
  .hero h1{font-size:26px}
  .hero p{font-size:15px}
  .form-grid{grid-template-columns:1fr}
  .categories-grid{grid-template-columns:1fr 1fr}
  .categories-grid a{font-size:11px; padding:12px}
  .vehicle-grid{grid-template-columns:1fr}
  .benefits{grid-template-columns:1fr 1fr; text-align:center}
  .footer-grid{grid-template-columns:1fr}
}

/* Header Moderno */
.mo-topbar{
  background:#111;
  color:#fff;
  font-size:13px;
}

.mo-topbar-inner{
  min-height:38px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.mo-contact{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
}

.mo-social{
  color:#ddd;
}

.mo-header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 4px 18px rgba(0,0,0,.08);
}

.mo-header-inner{
  height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.mo-brand img{
  height:62px;
  width:auto;
  display:block;
}

.mo-menu{
  display:flex;
  align-items:center;
  gap:30px;
  list-style:none;
  padding:0;
  margin:0;
}

.mo-menu a{
  color:#111;
  text-decoration:none;
  text-transform:uppercase;
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em;
}

.mo-menu a:hover{
  color:var(--red);
}

.mo-whatsapp{
  background:var(--red);
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  font-size:13px;
  font-weight:800;
  padding:13px 20px;
  border-radius:7px;
  box-shadow:0 8px 20px rgba(217,27,18,.25);
}

.mo-menu-toggle{
  display:none;
  width:42px;
  height:42px;
  border:1px solid #ddd;
  background:#fff;
  border-radius:6px;
  cursor:pointer;
}

.mo-menu-toggle span{
  display:block;
  height:2px;
  width:20px;
  background:#111;
  margin:5px auto;
}

/* Mobile Header */
@media(max-width:900px){
  .mo-topbar-inner{
    justify-content:center;
    text-align:center;
    padding:8px 0;
  }

  .mo-social{
    display:none;
  }

  .mo-header-inner{
    height:74px;
  }

  .mo-brand img{
    height:52px;
  }

  .mo-menu-toggle{
    display:block;
    margin-left:auto;
  }

  .mo-menu{
    display:none;
    position:absolute;
    top:74px;
    left:0;
    right:0;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:18px 24px;
    box-shadow:0 18px 30px rgba(0,0,0,.12);
  }

  .mo-menu.is-open{
    display:flex;
  }

  .mo-menu li{
    width:100%;
  }

  .mo-menu a{
    display:block;
    padding:12px 0;
    width:100%;
    border-bottom:1px solid #eee;
  }

  .mo-whatsapp{
    display:none;
  }
}

@media(max-width:560px){
  .mo-contact{
    justify-content:center;
    gap:8px;
  }

  .mo-contact span{
    width:100%;
  }
}

/* Hero Premium */
.mo-hero{
  position:relative;
  min-height:460px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#111;
}

.mo-hero-bg{
  position:absolute;
  inset:0;
  background:var(--hero-image) center/cover no-repeat;
  transform:scale(1.02);
}

.mo-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.62) 42%, rgba(0,0,0,.16) 100%),
    linear-gradient(0deg, rgba(0,0,0,.28), rgba(0,0,0,.08));
}

.mo-hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  padding:70px 0;
}

.mo-hero-label{
  display:inline-block;
  background:rgba(217,27,18,.95);
  color:#fff;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  padding:8px 12px;
  border-radius:999px;
  margin-bottom:18px;
}

.mo-hero h1{
  max-width:560px;
  font-size:52px;
  line-height:1.05;
  margin:0 0 18px;
  font-weight:900;
}

.mo-hero p{
  max-width:540px;
  font-size:18px;
  line-height:1.6;
  color:rgba(255,255,255,.92);
  margin:0 0 28px;
}

.mo-hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn-outline{
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  font-weight:800;
  border:1px solid rgba(255,255,255,.5);
  border-radius:6px;
  padding:13px 22px;
  display:inline-block;
  background:rgba(255,255,255,.06);
}

.btn-outline:hover{
  background:#fff;
  color:#111;
}

@media(max-width:900px){
  .mo-hero{
    min-height:390px;
  }

  .mo-hero h1{
    font-size:38px;
  }

  .mo-hero p{
    font-size:16px;
  }
}

@media(max-width:560px){
  .mo-hero{
    min-height:420px;
  }

  .mo-hero-content{
    padding:48px 0;
  }

  .mo-hero h1{
    font-size:30px;
  }

  .mo-hero p{
    font-size:15px;
  }

  .mo-hero-actions a{
    width:100%;
    text-align:center;
  }
}

/* Featured Premium */
.mo-featured{
  padding:42px 0 34px;
}

.mo-section-head{
  text-align:center;
  margin-bottom:28px;
}

.mo-section-head span{
  display:inline-block;
  color:var(--red);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:8px;
}

.mo-section-head h2{
  margin:0;
  font-size:32px;
  color:#111;
  text-transform:uppercase;
}

.mo-section-head p{
  margin:10px auto 0;
  max-width:520px;
  color:var(--muted);
  font-size:15px;
  line-height:1.5;
}

.mo-vehicle-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.mo-vehicle-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(0,0,0,.08);
  transition:.25s ease;
}

.mo-vehicle-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 40px rgba(0,0,0,.16);
}

.mo-vehicle-card a{
  color:inherit;
  text-decoration:none;
}

.mo-vehicle-photo{
  position:relative;
  height:205px;
  background:#ddd;
  overflow:hidden;
}

.mo-vehicle-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.3s ease;
}

.mo-vehicle-card:hover .mo-vehicle-photo img{
  transform:scale(1.05);
}

.mo-no-photo{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#777;
  font-weight:bold;
}

.mo-vehicle-badge{
  position:absolute;
  left:14px;
  top:14px;
  background:var(--red);
  color:#fff;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  padding:7px 10px;
  border-radius:999px;
  box-shadow:0 8px 18px rgba(0,0,0,.18);
}

.mo-vehicle-body{
  padding:17px;
}

.mo-vehicle-body h3{
  margin:0 0 8px;
  font-size:16px;
  line-height:1.35;
  color:#111;
  text-transform:uppercase;
}

.mo-vehicle-body p{
  margin:0 0 14px;
  font-size:13px;
  color:var(--muted);
  line-height:1.4;
}

.mo-vehicle-meta{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:12px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  margin-bottom:14px;
}

.mo-vehicle-meta span{
  font-size:12px;
  color:#555;
  font-weight:700;
}

.mo-vehicle-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.mo-vehicle-footer strong{
  color:var(--red);
  font-size:18px;
}

.mo-vehicle-footer span{
  background:#111;
  color:#fff;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  padding:9px 11px;
  border-radius:6px;
}

@media(max-width:1000px){
  .mo-vehicle-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:560px){
  .mo-section-head h2{
    font-size:25px;
  }

  .mo-vehicle-grid{
    grid-template-columns:1fr;
  }

  .mo-vehicle-photo{
    height:230px;
  }
}

/* Categorias Premium */
.mo-categories{
  padding:38px 0 22px;
}

.mo-categories-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.mo-category-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:20px;
  display:flex;
  align-items:center;
  gap:15px;
  color:#111;
  text-decoration:none;
  box-shadow:0 8px 22px rgba(0,0,0,.07);
  transition:.22s ease;
}

.mo-category-card:hover{
  transform:translateY(-4px);
  border-color:rgba(217,27,18,.35);
  box-shadow:0 14px 32px rgba(0,0,0,.13);
}

.mo-category-icon{
  width:48px;
  height:48px;
  border-radius:12px;
  background:#fff3f2;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  flex:0 0 48px;
}

.mo-category-card h3{
  margin:0 0 5px;
  font-size:14px;
  text-transform:uppercase;
  line-height:1.3;
}

.mo-category-card p{
  margin:0;
  color:var(--muted);
  font-size:13px;
}

@media(max-width:1000px){
  .mo-categories-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:560px){
  .mo-categories-grid{
    grid-template-columns:1fr;
  }
}

/* Indicadores */
.mo-stats{
  margin-top:-44px;
  position:relative;
  z-index:5;
  padding-bottom:20px;
}

.mo-stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.mo-stat-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:22px;
  text-align:center;
  box-shadow:0 14px 32px rgba(0,0,0,.12);
}

.mo-stat-card strong{
  display:block;
  color:var(--red);
  font-size:34px;
  line-height:1;
  margin-bottom:7px;
}

.mo-stat-card span{
  color:#333;
  font-weight:800;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.04em;
}

@media(max-width:900px){
  .mo-stats{
    margin-top:0;
    padding-top:22px;
  }

  .mo-stats-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:520px){
  .mo-stats-grid{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .mo-stat-card{
    padding:18px 12px;
  }

  .mo-stat-card strong{
    font-size:28px;
  }
}

/* Busca Premium */
.mo-search-section{
  padding:28px 0 18px;
}

.mo-search-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:0 12px 32px rgba(0,0,0,.10);
  padding:24px;
}

.mo-search-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
}

.mo-search-title span{
  display:block;
  color:var(--red);
  font-weight:900;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:6px;
}

.mo-search-title h2{
  margin:0;
  color:#111;
  font-size:26px;
  text-transform:uppercase;
}

.mo-search-form{
  display:grid;
  grid-template-columns:2fr repeat(5,1fr) 1.2fr;
  gap:12px;
}

.mo-search-form input,
.mo-search-form select{
  width:100%;
  height:46px;
  border:1px solid #ddd;
  border-radius:8px;
  padding:0 12px;
  color:#333;
  background:#fff;
  font-size:13px;
}

.mo-search-form button{
  border:0;
  border-radius:8px;
  background:var(--red);
  color:#fff;
  text-transform:uppercase;
  font-weight:900;
  font-size:13px;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(217,27,18,.22);
}

.mo-search-form button:hover{
  filter:brightness(.95);
}

@media(max-width:1100px){
  .mo-search-form{
    grid-template-columns:1fr 1fr 1fr;
  }

  .mo-search-form input{
    grid-column:span 3;
  }
}

@media(max-width:640px){
  .mo-search-title{
    display:block;
  }

  .mo-search-title h2{
    font-size:22px;
  }

  .mo-search-form{
    grid-template-columns:1fr;
  }

  .mo-search-form input{
    grid-column:auto;
  }

  .mo-search-form button{
    height:48px;
  }
}

/* Benefícios Premium */
.mo-benefits{
  padding:36px 0;
}

.mo-benefits-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.mo-benefit-card{
  background:#111;
  color:#fff;
  border-radius:14px;
  padding:24px 20px;
  min-height:180px;
  box-shadow:0 12px 28px rgba(0,0,0,.14);
}

.mo-benefit-card span{
  display:block;
  font-size:30px;
  margin-bottom:14px;
}

.mo-benefit-card h3{
  margin:0 0 10px;
  font-size:16px;
  text-transform:uppercase;
}

.mo-benefit-card p{
  margin:0;
  color:#ddd;
  font-size:14px;
  line-height:1.5;
}

@media(max-width:900px){
  .mo-benefits-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:560px){
  .mo-benefits-grid{
    grid-template-columns:1fr;
  }
}

/* Por que escolher */
.mo-why{
  padding:42px 0;
}

.mo-why-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
}

.mo-why-image{
  height:390px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 16px 38px rgba(0,0,0,.16);
}

.mo-why-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.mo-why-content{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:34px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.mo-why-content > span{
  color:var(--red);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.mo-why-content h2{
  margin:10px 0 14px;
  font-size:32px;
  line-height:1.15;
  color:#111;
  text-transform:uppercase;
}

.mo-why-content p{
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
  margin:0 0 18px;
}

.mo-why-content ul{
  padding:0;
  margin:0 0 24px;
  list-style:none;
}

.mo-why-content li{
  padding:9px 0 9px 30px;
  position:relative;
  font-weight:700;
  color:#333;
  border-bottom:1px solid #eee;
}

.mo-why-content li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:8px;
  width:20px;
  height:20px;
  border-radius:50%;
  background:#fff3f2;
  color:var(--red);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:900;
}

@media(max-width:900px){
  .mo-why-grid{
    grid-template-columns:1fr;
  }

  .mo-why-image{
    height:300px;
  }
}

@media(max-width:560px){
  .mo-why-content{
    padding:24px;
  }

  .mo-why-content h2{
    font-size:24px;
  }
}

/* CTA Premium */
.mo-cta{
  padding:34px 0 50px;
}

.mo-cta-inner{
  background:linear-gradient(135deg, #111 0%, #2a2a2a 100%);
  color:#fff;
  border-radius:20px;
  padding:38px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  box-shadow:0 18px 42px rgba(0,0,0,.18);
}

.mo-cta span{
  color:#ffb3ad;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.mo-cta h2{
  margin:10px 0 10px;
  font-size:32px;
  line-height:1.15;
  text-transform:uppercase;
}

.mo-cta p{
  margin:0;
  max-width:620px;
  color:#ddd;
  font-size:15px;
  line-height:1.6;
}

.mo-cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.btn-outline-dark{
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  font-weight:900;
  border:1px solid rgba(255,255,255,.45);
  border-radius:7px;
  padding:13px 20px;
  display:inline-block;
}

.btn-outline-dark:hover{
  background:#fff;
  color:#111;
}

@media(max-width:800px){
  .mo-cta-inner{
    display:block;
    padding:28px;
  }

  .mo-cta h2{
    font-size:25px;
  }

  .mo-cta-actions{
    justify-content:flex-start;
    margin-top:22px;
  }
}

@media(max-width:520px){
  .mo-cta-actions a{
    width:100%;
    text-align:center;
  }
}

/* Footer Premium */
.mo-footer{
  background:#111;
  color:#fff;
  margin-top:30px;
}

.mo-footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.4fr;
  gap:34px;
  padding:44px 0;
}

.mo-footer-brand img{
  width:170px;
  background:#fff;
  padding:7px;
  border-radius:7px;
  margin-bottom:16px;
}

.mo-footer-brand p{
  color:#d6d6d6;
  font-size:14px;
  line-height:1.6;
  margin:0;
  max-width:360px;
}

.mo-footer-col h4{
  margin:0 0 15px;
  color:#fff;
  text-transform:uppercase;
  font-size:14px;
}

.mo-footer-col a,
.mo-footer-col p{
  display:block;
  color:#d6d6d6;
  text-decoration:none;
  font-size:14px;
  margin:0 0 9px;
  line-height:1.45;
}

.mo-footer-col a:hover{
  color:#fff;
}

.mo-footer-whatsapp{
  display:inline-block !important;
  background:var(--red);
  color:#fff !important;
  padding:11px 14px;
  border-radius:7px;
  font-weight:900;
  text-transform:uppercase;
  margin-top:8px !important;
  font-size:12px !important;
}

.mo-footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding:16px 0;
}

.mo-footer-bottom p{
  margin:0;
  color:#aaa;
  font-size:13px;
  text-align:center;
}

@media(max-width:900px){
  .mo-footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:560px){
  .mo-footer-grid{
    grid-template-columns:1fr;
    padding:34px 0;
  }
}

/* ==============================
   UI POLISH — Home Premium
   ============================== */

:root{
  --red:#d51f08;
  --red-dark:#b91c1c;
  --dark:#111827;
  --dark-soft:#1f2937;
  --text:#1f2937;
  --muted:#6b7280;
  --bg:#f8fafc;
  --white:#ffffff;
  --border:#e5e7eb;
  --radius-sm:8px;
  --radius-md:12px;
  --radius-lg:18px;
  --shadow-sm:0 8px 22px rgba(15,23,42,.07);
  --shadow-md:0 14px 34px rgba(15,23,42,.11);
  --shadow-lg:0 24px 60px rgba(15,23,42,.18);
}

body{
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

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

/* Header Refinado */
.mo-topbar{
  background:var(--dark);
}

.mo-header{
  backdrop-filter:saturate(180%) blur(10px);
}

.mo-menu a{
  position:relative;
}

.mo-menu a:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:var(--red);
  transition:.25s ease;
}

.mo-menu a:hover:after{
  width:100%;
}

.mo-whatsapp,
.btn-primary{
  background:linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow:0 10px 24px rgba(213,31,8,.28);
}

.mo-whatsapp:hover,
.btn-primary:hover{
  filter:brightness(.96);
  transform:translateY(-1px);
}

/* Hero Refinado */
.mo-hero{
  min-height:500px;
}

.mo-hero-bg{
  filter:saturate(1.08) contrast(1.04);
}

.mo-hero h1{
  letter-spacing:-.04em;
}

.mo-hero-label{
  box-shadow:0 10px 24px rgba(213,31,8,.28);
}

/* Section Header */
.mo-section-head{
  margin-bottom:34px;
}

.mo-section-head h2{
  letter-spacing:-.03em;
}

.mo-section-head p{
  font-size:16px;
}

/* Busca Premium Refinada */
.mo-search-box{
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md);
}

.mo-search-form input,
.mo-search-form select{
  border-radius:var(--radius-sm);
  transition:.18s ease;
}

.mo-search-form input:focus,
.mo-search-form select:focus{
  outline:none;
  border-color:rgba(213,31,8,.55);
  box-shadow:0 0 0 4px rgba(213,31,8,.08);
}

.mo-search-form button{
  transition:.18s ease;
}

.mo-search-form button:hover{
  transform:translateY(-1px);
}

/* Indicadores */
.mo-stat-card{
  border-radius:var(--radius-lg);
  transition:.2s ease;
}

.mo-stat-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-lg);
}

/* Categorias */
.mo-category-card{
  border-radius:var(--radius-lg);
}

.mo-category-icon{
  background:linear-gradient(135deg, #fff3f2, #ffe1dd);
}

/* Cards dos ônibus */
.mo-vehicle-card{
  border-radius:var(--radius-lg);
}

.mo-vehicle-footer span{
  transition:.2s ease;
}

.mo-vehicle-card:hover .mo-vehicle-footer span{
  background:var(--red);
}

/* Why */
.mo-why-content,
.mo-why-image{
  border-radius:var(--radius-lg);
}

/* Benefícios */
.mo-benefit-card{
  background:linear-gradient(135deg, #111827, #1f2937);
  border:1px solid rgba(255,255,255,.08);
  transition:.22s ease;
}

.mo-benefit-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
}

/* CTA */
.mo-cta-inner{
  background:
    radial-gradient(circle at top right, rgba(213,31,8,.28), transparent 35%),
    linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

/* Footer */
.mo-footer{
  background:#0b0f19;
}

.mo-footer-col a{
  transition:.18s ease;
}

.mo-footer-col a:hover{
  color:#fff;
  padding-left:4px;
}

/* Microinterações */
a,
button{
  transition:.2s ease;
}

/* Responsividade refinada */
@media(max-width:900px){
  .mo-hero{
    min-height:430px;
  }

  .mo-stats{
    margin-top:0;
  }
}

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

  .mo-hero{
    min-height:440px;
  }

  .mo-hero h1{
    font-size:32px;
  }

  .mo-section-head{
    margin-bottom:24px;
  }

  .mo-section-head h2{
    font-size:25px;
  }

  .mo-search-box{
    padding:20px;
  }

  .mo-cta-inner{
    border-radius:16px;
  }
}

/* ==============================
   Ajuste Busca + Categorias 2 Colunas
   ============================== */

.mo-search-categories{
  padding:34px 0 22px;
}

.mo-search-categories-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
  align-items:stretch;
}

.mo-search-categories .mo-search-section,
.mo-search-categories .mo-categories{
  padding:0;
}

.mo-search-categories .mo-search-box,
.mo-search-categories .mo-categories .container{
  height:100%;
}

.mo-search-categories .mo-categories > .container{
  width:100%;
}

.mo-search-categories .mo-section-head{
  text-align:left;
  margin-bottom:18px;
}

.mo-search-categories .mo-section-head h2{
  font-size:24px;
}

.mo-search-categories .mo-section-head p{
  margin-left:0;
}

.mo-search-categories .mo-search-form{
  grid-template-columns:1fr 1fr;
}

.mo-search-categories .mo-search-form input{
  grid-column:1 / -1;
}

.mo-search-categories .mo-search-form button{
  grid-column:1 / -1;
  height:48px;
}

.mo-search-categories .mo-categories-grid{
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.mo-search-categories .mo-category-card{
  padding:14px;
  min-height:82px;
}

.mo-search-categories .mo-category-icon{
  width:42px;
  height:42px;
  flex-basis:42px;
  font-size:21px;
}

.mo-search-categories .mo-category-card h3{
  font-size:12px;
  margin-bottom:3px;
}

.mo-search-categories .mo-category-card p{
  font-size:12px;
}

@media(max-width:980px){
  .mo-search-categories-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:560px){
  .mo-search-categories .mo-search-form{
    grid-template-columns:1fr;
  }

  .mo-search-categories .mo-categories-grid{
    grid-template-columns:1fr;
  }
}

/* Ícones SVG das categorias */
.mo-category-icon svg{
  width:24px;
  height:24px;
  fill:var(--red);
  display:block;
}

.mo-category-card:hover .mo-category-icon{
  background:linear-gradient(135deg, var(--red), var(--red-dark));
}

.mo-category-card:hover .mo-category-icon svg{
  fill:#fff;
}

/* FIX — Busca + Categorias Premium */
.mo-search-categories{
  padding:42px 0 24px;
  background:#f8fafc;
}

.mo-search-categories-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:stretch;
}

.mo-search-categories .mo-search-section,
.mo-search-categories .mo-categories{
  padding:0;
}

.mo-search-categories .mo-search-section > .container,
.mo-search-categories .mo-categories > .container{
  width:100%;
  margin:0;
}

.mo-search-box,
.mo-search-categories .mo-categories{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  box-shadow:0 14px 34px rgba(15,23,42,.08);
  padding:24px;
  height:100%;
}

.mo-search-categories .mo-section-head{
  text-align:left;
  margin-bottom:18px;
}

.mo-search-title{
  display:block;
  margin-bottom:18px;
}

.mo-search-title span,
.mo-search-categories .mo-section-head span{
  color:var(--red);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
}

.mo-search-title h2,
.mo-search-categories .mo-section-head h2{
  margin:8px 0 0;
  font-size:24px;
  line-height:1.15;
  letter-spacing:-.03em;
}

.mo-search-categories .mo-section-head p{
  display:none;
}

.mo-search-form{
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.mo-search-form input{
  grid-column:1 / -1;
}

.mo-search-form button{
  grid-column:1 / -1;
  height:50px;
}

.mo-categories-grid{
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.mo-category-card{
  min-height:78px;
  padding:12px 14px;
  border-radius:14px;
  box-shadow:none;
}

.mo-category-icon{
  width:42px;
  height:42px;
  flex:0 0 42px;
  border-radius:12px;
}

.mo-category-icon svg{
  width:23px;
  height:23px;
}

.mo-category-card h3{
  font-size:12px;
  line-height:1.25;
  margin-bottom:4px;
}

.mo-category-card p{
  font-size:12px;
}

/* FIX — Indicadores abaixo, sem sobrepor */
.mo-stats{
  margin-top:0 !important;
  padding:18px 0 34px;
}

.mo-stats-grid{
  gap:18px;
}

.mo-stat-card{
  min-height:112px;
}

/* Responsivo */
@media(max-width:980px){
  .mo-search-categories-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:560px){
  .mo-search-box,
  .mo-search-categories .mo-categories{
    padding:20px;
  }

  .mo-search-form{
    grid-template-columns:1fr;
  }

  .mo-categories-grid{
    grid-template-columns:1fr 1fr;
  }
}

/* FIX — Ícones monocromáticos por categoria */
.mo-category-icon{
  position:relative;
  background:#fff1ef !important;
}

.mo-category-icon span,
.mo-category-icon:before,
.mo-category-icon:after{
  content:"";
  position:absolute;
  display:block;
  box-sizing:border-box;
}

.mo-category-icon span{
  left:8px;
  top:13px;
  width:26px;
  height:15px;
  border:3px solid var(--red);
  border-radius:4px;
}

.mo-category-icon span:before,
.mo-category-icon span:after{
  content:"";
  position:absolute;
  bottom:-8px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--red);
}

.mo-category-icon span:before{ left:2px; }
.mo-category-icon span:after{ right:2px; }

.mo-category-icon:before{
  left:13px;
  top:18px;
  width:16px;
  height:4px;
  background:var(--red);
}

.mo-category-icon:after{
  left:11px;
  top:8px;
  width:20px;
  height:5px;
  border-radius:3px 3px 0 0;
  background:var(--red);
}

/* Escolar: ônibus pequeno lateral */
.mo-icon-school span{
  width:28px;
  height:14px;
  top:15px;
}

/* Micro rodoviário: lateral alongado */
.mo-icon-micro-road span{
  width:30px;
  height:12px;
  top:16px;
  border-radius:8px 3px 3px 8px;
}

.mo-icon-micro-road:after{
  width:24px;
}

/* Micro urbano: frontal compacto */
.mo-icon-micro-city span,
.mo-icon-road-front span,
.mo-icon-city-back span{
  left:11px;
  top:10px;
  width:20px;
  height:25px;
  border-radius:5px;
}

.mo-icon-micro-city:before,
.mo-icon-road-front:before,
.mo-icon-city-back:before{
  left:15px;
  top:17px;
  width:12px;
}

.mo-icon-micro-city:after,
.mo-icon-road-front:after,
.mo-icon-city-back:after{
  left:14px;
  top:5px;
  width:14px;
  height:5px;
}

/* Rodoviário traseiro: lateral longo */
.mo-icon-road-back span{
  left:6px;
  top:15px;
  width:31px;
  height:14px;
  border-radius:3px 8px 8px 3px;
}

.mo-icon-road-back:after{
  left:8px;
  width:26px;
}

/* Urbano dianteiro: lateral com janelas */
.mo-icon-city-front span{
  left:7px;
  top:12px;
  width:29px;
  height:20px;
  border-radius:3px;
}

.mo-icon-city-front:before{
  left:12px;
  top:17px;
  width:20px;
  height:3px;
}

/* Van */
.mo-icon-van span{
  left:7px;
  top:16px;
  width:30px;
  height:13px;
  border-radius:3px 8px 3px 3px;
}

.mo-icon-van:after{
  left:24px;
  top:9px;
  width:10px;
  height:8px;
  border-radius:8px 8px 0 0;
}

.mo-category-card:hover .mo-category-icon{
  background:linear-gradient(135deg, var(--red), var(--red-dark)) !important;
}

.mo-category-card:hover .mo-category-icon span,
.mo-category-card:hover .mo-category-icon:before,
.mo-category-card:hover .mo-category-icon:after{
  border-color:#fff;
  background:#fff;
}

.mo-category-card:hover .mo-category-icon span:before,
.mo-category-card:hover .mo-category-icon span:after{
  background:#fff;
}

/* ==============================
   SPRINT 5.2 — HERO PREMIUM
   ============================== */

.mo-hero-premium{
  min-height:560px;
  background:#0b0f19;
  position:relative;
}

.mo-hero-premium .mo-hero-bg{
  background:var(--hero-image) center right/cover no-repeat;
  filter:saturate(1.05) contrast(1.04);
  transform:scale(1);
}

.mo-hero-premium .mo-hero-overlay{
  background:
    linear-gradient(90deg, rgba(5,8,15,.92) 0%, rgba(5,8,15,.75) 34%, rgba(5,8,15,.28) 68%, rgba(5,8,15,.08) 100%),
    linear-gradient(0deg, rgba(5,8,15,.25), rgba(5,8,15,.10));
}

.mo-hero-premium .mo-hero-content{
  padding:92px 0 96px;
}

.mo-hero-premium .mo-hero-label{
  background:linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius:999px;
  padding:10px 16px;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:24px;
}

.mo-hero-premium h1{
  max-width:620px;
  font-size:58px;
  line-height:1.02;
  letter-spacing:-.055em;
  margin-bottom:20px;
  text-shadow:0 8px 24px rgba(0,0,0,.28);
}

.mo-hero-premium p{
  max-width:560px;
  font-size:19px;
  line-height:1.65;
  color:rgba(255,255,255,.92);
  margin-bottom:22px;
}

.mo-hero-line{
  width:62px;
  height:4px;
  background:var(--red);
  border-radius:999px;
  margin:0 0 30px;
  box-shadow:0 8px 18px rgba(213,31,8,.35);
}

.mo-hero-premium .mo-hero-actions{
  gap:16px;
}

.mo-hero-premium .btn-primary,
.mo-hero-premium .btn-outline{
  min-width:220px;
  text-align:center;
  padding:16px 22px;
  border-radius:8px;
  font-size:13px;
  letter-spacing:.02em;
}

.mo-hero-premium .btn-outline{
  border:1px solid rgba(255,255,255,.42);
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(8px);
}

.mo-hero-premium .btn-outline:hover{
  background:#fff;
  color:#111;
}

@media(max-width:900px){
  .mo-hero-premium{
    min-height:500px;
  }

  .mo-hero-premium .mo-hero-content{
    padding:70px 0;
  }

  .mo-hero-premium h1{
    font-size:42px;
    max-width:520px;
  }

  .mo-hero-premium p{
    font-size:16px;
  }
}

@media(max-width:560px){
  .mo-hero-premium{
    min-height:520px;
  }

  .mo-hero-premium .mo-hero-bg{
    background-position:center;
  }

  .mo-hero-premium .mo-hero-overlay{
    background:
      linear-gradient(90deg, rgba(5,8,15,.92), rgba(5,8,15,.68)),
      linear-gradient(0deg, rgba(5,8,15,.28), rgba(5,8,15,.12));
  }

  .mo-hero-premium .mo-hero-content{
    padding:58px 0;
  }

  .mo-hero-premium h1{
    font-size:34px;
  }

  .mo-hero-premium .btn-primary,
  .mo-hero-premium .btn-outline{
    width:100%;
    min-width:0;
  }
}

/* ==============================
   SPRINT 5.2 — HEADER PREMIUM
   ============================== */

.mo-header-premium{
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(229,231,235,.9);
}

.mo-header-premium .mo-header-inner{
  height:96px;
}

.mo-header-premium .mo-brand{
  display:flex;
  align-items:center;
  padding:6px 0;
}

.mo-header-premium .mo-brand img{
  height:74px;
  width:auto;
  object-fit:contain;
}

.mo-header-premium .mo-menu{
  background:#f8fafc;
  border:1px solid #e5e7eb;
  padding:8px;
  border-radius:999px;
  gap:4px;
}

.mo-header-premium .mo-menu a{
  display:block;
  padding:10px 14px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.06em;
}

.mo-header-premium .mo-menu a:after{
  display:none;
}

.mo-header-premium .mo-menu a:hover{
  background:#fff;
  color:var(--red);
  box-shadow:0 6px 16px rgba(15,23,42,.08);
}

.mo-header-premium .mo-whatsapp{
  border-radius:999px;
  padding:14px 22px;
}

@media(max-width:900px){
  .mo-header-premium .mo-header-inner{
    height:78px;
  }

  .mo-header-premium .mo-brand img{
    height:58px;
  }

  .mo-header-premium .mo-menu{
    border-radius:0;
    padding:18px 24px;
    gap:0;
  }

  .mo-header-premium .mo-menu a{
    border-radius:0;
  }
}

/* ==============================
   SPRINT 5.3 — CARDS PREMIUM
   ============================== */

.mo-vehicle-card-premium{
  border-radius:20px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(229,231,235,.95);
  box-shadow:0 12px 30px rgba(15,23,42,.08);
}

.mo-vehicle-card-premium:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 52px rgba(15,23,42,.16);
}

.mo-vehicle-card-premium .mo-vehicle-photo{
  height:auto;
  aspect-ratio:16/10;
  border-bottom:1px solid var(--border);
}

.mo-vehicle-top{
  position:absolute;
  left:14px;
  right:14px;
  top:14px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
  z-index:3;
}

.mo-vehicle-card-premium .mo-vehicle-badge{
  position:static;
  max-width:72%;
  box-shadow:0 10px 22px rgba(0,0,0,.18);
}

.mo-vehicle-year{
  background:rgba(17,24,39,.92);
  color:#fff;
  font-size:11px;
  font-weight:900;
  padding:7px 10px;
  border-radius:999px;
  box-shadow:0 10px 22px rgba(0,0,0,.18);
}

.mo-vehicle-card-premium .mo-vehicle-body{
  padding:18px;
}

.mo-vehicle-card-premium .mo-vehicle-body h3{
  min-height:44px;
  font-size:15px;
  letter-spacing:-.01em;
}

.mo-vehicle-subtitle{
  min-height:36px;
}

.mo-vehicle-features{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  min-height:34px;
  margin:4px 0 16px;
}

.mo-vehicle-features span{
  background:#f8fafc;
  border:1px solid var(--border);
  color:#374151;
  font-size:11px;
  font-weight:800;
  padding:6px 8px;
  border-radius:999px;
}

.mo-vehicle-card-premium .mo-vehicle-footer{
  align-items:flex-end;
  border-top:1px solid var(--border);
  padding-top:14px;
}

.mo-vehicle-footer small{
  display:block;
  color:var(--muted);
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:4px;
}

.mo-vehicle-card-premium .mo-vehicle-footer strong{
  display:block;
  font-size:20px;
  line-height:1;
}

.mo-vehicle-card-premium .mo-vehicle-footer > span{
  background:linear-gradient(135deg, var(--red), var(--red-dark));
  padding:10px 12px;
  border-radius:8px;
  box-shadow:0 8px 18px rgba(213,31,8,.22);
}

@media(max-width:560px){
  .mo-vehicle-card-premium .mo-vehicle-photo{
    aspect-ratio:16/11;
  }

  .mo-vehicle-card-premium .mo-vehicle-body h3,
  .mo-vehicle-subtitle{
    min-height:auto;
  }
}

/* ==============================
   RELEASE 2.0 — Catálogo Premium
   ============================== */

.mo-list-hero{
  background:linear-gradient(135deg,#111827,#1f2937);
  color:#fff;
  padding:58px 0;
}

.mo-list-hero span{
  color:#ffb3ad;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
}

.mo-list-hero h1{
  margin:10px 0;
  font-size:42px;
  line-height:1.1;
  text-transform:uppercase;
}

.mo-list-hero p{
  margin:0;
  color:#ddd;
  font-size:16px;
}

.mo-list-page{
  padding:36px 0 54px;
  background:#f8fafc;
}

.mo-list-layout{
  display:grid;
  grid-template-columns:290px 1fr;
  gap:28px;
  align-items:start;
}

.mo-filter-card,
.mo-list-toolbar,
.mo-empty-state{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:0 12px 30px rgba(15,23,42,.08);
}

.mo-filter-card{
  padding:22px;
  position:sticky;
  top:110px;
}

.mo-filter-head span{
  color:var(--red);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.mo-filter-head h2{
  margin:8px 0 20px;
  font-size:22px;
  line-height:1.15;
}

.mo-filter-form label{
  display:block;
  margin:14px 0 7px;
  font-size:12px;
  font-weight:900;
  color:#374151;
  text-transform:uppercase;
}

.mo-filter-form input,
.mo-filter-form select{
  width:100%;
  height:44px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  padding:0 12px;
  background:#fff;
}

.mo-filter-form button{
  width:100%;
  height:46px;
  margin-top:20px;
  border:0;
  border-radius:10px;
  background:linear-gradient(135deg,var(--red),var(--red-dark));
  color:#fff;
  font-weight:900;
  text-transform:uppercase;
  cursor:pointer;
}

.mo-filter-clear{
  display:block;
  text-align:center;
  margin-top:14px;
  color:#6b7280;
  font-weight:800;
  font-size:13px;
  text-decoration:none;
}

.mo-list-toolbar{
  padding:20px 22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-bottom:24px;
}

.mo-list-toolbar span{
  color:var(--red);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.mo-list-toolbar h2{
  margin:6px 0 0;
  font-size:24px;
}

.mo-list-order{
  display:flex;
  align-items:center;
  gap:10px;
}

.mo-list-order select{
  height:40px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  padding:0 10px;
}

.mo-list-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.mo-list-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(15,23,42,.08);
  transition:.22s ease;
}

.mo-list-card:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 48px rgba(15,23,42,.16);
}

.mo-list-card a{
  color:inherit;
  text-decoration:none;
}

.mo-list-card-photo{
  height:auto;
  aspect-ratio:16/10;
  position:relative;
  background:#ddd;
  overflow:hidden;
}

.mo-list-card-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.25s ease;
}

.mo-list-card:hover img{
  transform:scale(1.05);
}

.mo-list-card-photo span{
  position:absolute;
  top:14px;
  left:14px;
  background:linear-gradient(135deg,var(--red),var(--red-dark));
  color:#fff;
  padding:7px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
}

.mo-list-card-body{
  padding:17px;
}

.mo-list-card-body h3{
  margin:0 0 8px;
  min-height:42px;
  font-size:15px;
  text-transform:uppercase;
  line-height:1.35;
}

.mo-list-card-body p{
  margin:0 0 14px;
  color:#6b7280;
  font-size:13px;
  min-height:34px;
}

.mo-list-card-meta{
  display:flex;
  justify-content:space-between;
  border-top:1px solid #e5e7eb;
  border-bottom:1px solid #e5e7eb;
  padding:11px 0;
  margin-bottom:14px;
}

.mo-list-card-meta span{
  font-size:12px;
  font-weight:800;
  color:#374151;
}

.mo-list-card-footer{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
}

.mo-list-card-footer strong{
  color:var(--red);
  font-size:19px;
}

.mo-list-card-footer em{
  font-style:normal;
  background:#111827;
  color:#fff;
  border-radius:8px;
  padding:9px 11px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.mo-empty-state{
  padding:40px;
  text-align:center;
}

.mo-empty-state h2{
  margin:0 0 10px;
  font-size:26px;
}

.mo-empty-state p{
  color:#6b7280;
  margin-bottom:24px;
}

.mo-pagination{
  margin-top:28px;
  display:flex;
  justify-content:center;
  gap:10px;
}

.mo-pagination a,
.mo-pagination span{
  min-width:40px;
  height:40px;
  border-radius:10px;
  background:#fff;
  border:1px solid #e5e7eb;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#111827;
  font-weight:900;
}

.mo-pagination span{
  background:var(--red);
  color:#fff;
  border-color:var(--red);
}

@media(max-width:1100px){
  .mo-list-layout{
    grid-template-columns:1fr;
  }

  .mo-filter-card{
    position:static;
  }

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

@media(max-width:640px){
  .mo-list-hero h1{
    font-size:30px;
  }

  .mo-list-toolbar{
    display:block;
  }

  .mo-list-order{
    margin-top:14px;
  }

  .mo-list-grid{
    grid-template-columns:1fr;
  }
}

/* =========================================================
   Hotfix 2.2.1A.1 — Home Premium Polish
   Visual QA refinements for production-ready public home
   ========================================================= */
:root{
  --mo-polish-red:#d91b12;
  --mo-polish-red-dark:#b51610;
  --mo-polish-ink:#0f172a;
  --mo-polish-ink-2:#1e293b;
  --mo-polish-muted:#64748b;
  --mo-polish-bg:#f6f8fb;
  --mo-polish-card:#ffffff;
  --mo-polish-border:#e2e8f0;
  --mo-polish-shadow-sm:0 10px 28px rgba(15,23,42,.08);
  --mo-polish-shadow-md:0 18px 46px rgba(15,23,42,.12);
  --mo-polish-shadow-lg:0 28px 70px rgba(15,23,42,.18);
  --mo-polish-radius:22px;
}

html{scroll-behavior:smooth;}
body{background:radial-gradient(circle at 50% -12%, rgba(217,27,18,.045), transparent 34%), var(--mo-polish-bg);}
.container{width:min(1160px, calc(100% - 40px));}

/* Header: more institutional, less floating */
.mo-topbar{background:#0b1220;border-bottom:1px solid rgba(255,255,255,.08);}
.mo-topbar-inner{min-height:34px;font-size:12px;}
.mo-header{box-shadow:0 8px 28px rgba(15,23,42,.08);border-bottom:1px solid rgba(226,232,240,.85);}
.mo-header-inner{height:78px;}
.mo-brand img{height:58px;}
.mo-menu{background:#fff;border:1px solid var(--mo-polish-border);border-radius:999px;padding:0 18px;gap:0;box-shadow:0 10px 30px rgba(15,23,42,.05);}
.mo-menu li{display:flex;}
.mo-menu a{padding:15px 14px;font-size:12px;letter-spacing:.065em;color:#0f172a;}
.mo-menu a:after{display:none;}
.mo-menu a.is-active,
.mo-menu a[aria-current="page"],
.mo-menu a:hover{color:var(--mo-polish-red);}
.mo-whatsapp{border-radius:999px;padding:14px 26px;box-shadow:0 14px 30px rgba(217,27,18,.22);}

/* Hero: premium gradient and clearer commercial focus */
.mo-hero{min-height:515px;margin-bottom:0;}
.mo-hero-bg{transform:scale(1.015);filter:saturate(1.08) contrast(1.05) brightness(1.03);background-position:center center;}
.mo-hero-overlay{background:
  linear-gradient(90deg, rgba(8,15,28,.90) 0%, rgba(8,15,28,.70) 38%, rgba(8,15,28,.30) 72%, rgba(8,15,28,.12) 100%),
  radial-gradient(circle at 28% 45%, rgba(217,27,18,.22), transparent 38%);
}
.mo-hero-content{padding:84px 0 94px;}
.mo-hero-label{padding:10px 16px;margin-bottom:22px;letter-spacing:.12em;background:linear-gradient(135deg,var(--mo-polish-red),var(--mo-polish-red-dark));}
.mo-hero h1{max-width:650px;font-size:56px;line-height:1.02;letter-spacing:-.055em;margin-bottom:22px;text-wrap:balance;}
.mo-hero p{max-width:585px;font-size:18px;line-height:1.72;color:rgba(255,255,255,.91);}
.mo-hero-line{width:58px;height:4px;border-radius:999px;background:var(--mo-polish-red);margin:0 0 28px;box-shadow:0 10px 22px rgba(217,27,18,.35);}
.mo-hero-actions{gap:16px;}
.mo-hero-actions .btn-primary,
.mo-hero-actions .btn-outline{border-radius:10px;padding:15px 24px;min-width:178px;text-align:center;}

/* Search + categories: product-level cards */
.mo-search-categories{padding:46px 0 18px;}
.mo-search-categories-grid{grid-template-columns:1.02fr 1fr;gap:28px;align-items:stretch;}
.mo-search-box,
.mo-search-categories .mo-categories .container{border-radius:var(--mo-polish-radius);box-shadow:var(--mo-polish-shadow-md);border:1px solid rgba(226,232,240,.95);background:rgba(255,255,255,.96);}
.mo-search-box{padding:30px;position:relative;overflow:hidden;}
.mo-search-box:before{content:"";position:absolute;inset:0 0 auto;height:4px;background:linear-gradient(90deg,var(--mo-polish-red),rgba(217,27,18,.16));}
.mo-search-title{align-items:flex-start;margin-bottom:22px;}
.mo-search-title h2,.mo-search-categories .mo-section-head h2{font-size:25px;letter-spacing:-.035em;}
.mo-search-form{gap:14px;}
.mo-search-form input,.mo-search-form select{height:48px;border-radius:10px;border-color:#d9e1ea;background:#fff;color:#334155;}
.mo-search-form button{height:52px;border-radius:10px;background:linear-gradient(135deg,var(--mo-polish-red),var(--mo-polish-red-dark));box-shadow:0 16px 34px rgba(217,27,18,.20);}
.mo-search-categories .mo-categories .container{padding:30px;}
.mo-search-categories .mo-section-head{margin-bottom:20px;}
.mo-search-categories .mo-section-head p{font-size:14px;max-width:440px;}
.mo-search-categories .mo-categories-grid{gap:14px;}
.mo-search-categories .mo-category-card{padding:17px 16px;min-height:86px;border-radius:16px;box-shadow:none;border-color:#dfe7f0;background:linear-gradient(180deg,#fff,#fbfcfe);}
.mo-search-categories .mo-category-card:hover{box-shadow:0 16px 34px rgba(15,23,42,.10);}
.mo-search-categories .mo-category-icon{width:48px;height:48px;flex-basis:48px;border-radius:15px;}
.mo-search-categories .mo-category-card h3{font-size:12px;line-height:1.25;}
.mo-search-categories .mo-category-card p{font-size:11.5px;color:#64748b;}

/* Stats: unified premium strip */
.mo-stats{margin-top:18px;padding:22px 0 34px;}
.mo-stats-grid{gap:0;background:#fff;border:1px solid var(--mo-polish-border);border-radius:22px;box-shadow:var(--mo-polish-shadow-sm);overflow:hidden;}
.mo-stat-card{border:0;border-radius:0;box-shadow:none;padding:26px 18px;position:relative;background:transparent;}
.mo-stat-card:not(:last-child):after{content:"";position:absolute;right:0;top:24%;bottom:24%;width:1px;background:#e2e8f0;}
.mo-stat-card:hover{transform:none;box-shadow:none;background:#fffafa;}
.mo-stat-card strong{font-size:34px;color:var(--mo-polish-red);letter-spacing:-.045em;}
.mo-stat-card span{font-size:11.5px;color:#334155;}

/* Featured cards: stronger marketplace perception */
.mo-featured{padding:48px 0 42px;}
.mo-section-head span{letter-spacing:.16em;}
.mo-section-head h2{font-size:34px;color:#111827;}
.mo-vehicle-grid{gap:26px;}
.mo-vehicle-card{border-radius:18px;border-color:#dfe7f0;box-shadow:0 14px 36px rgba(15,23,42,.09);}
.mo-vehicle-card:hover{transform:translateY(-7px);box-shadow:var(--mo-polish-shadow-lg);}
.mo-vehicle-photo{height:214px;}
.mo-vehicle-photo:after{content:"";position:absolute;left:0;right:0;bottom:0;height:38%;background:linear-gradient(0deg,rgba(15,23,42,.48),transparent);pointer-events:none;}
.mo-vehicle-badge{z-index:2;top:15px;left:15px;background:linear-gradient(135deg,var(--mo-polish-red),var(--mo-polish-red-dark));}
.mo-vehicle-year{position:absolute;right:15px;top:15px;z-index:2;background:#111827;color:#fff;border-radius:999px;padding:8px 10px;font-size:11px;font-weight:900;box-shadow:0 8px 18px rgba(15,23,42,.22);}
.mo-vehicle-body{padding:20px 19px 18px;}
.mo-vehicle-body h3{font-size:16.5px;min-height:44px;margin-bottom:10px;}
.mo-vehicle-subtitle{min-height:36px;}
.mo-vehicle-features{display:flex;gap:8px;flex-wrap:wrap;margin:0 0 16px;min-height:30px;}
.mo-vehicle-features span{font-size:11.5px;font-weight:800;color:#334155;background:#f8fafc;border:1px solid #dfe7f0;border-radius:999px;padding:7px 9px;}
.mo-vehicle-footer{border-top:1px solid #e2e8f0;padding-top:15px;align-items:flex-end;}
.mo-vehicle-footer small{display:block;color:#64748b;text-transform:uppercase;font-size:11px;font-weight:900;letter-spacing:.05em;margin-bottom:4px;}
.mo-vehicle-footer strong{font-size:20px;line-height:1.05;color:var(--mo-polish-red);}
.mo-vehicle-footer span{border-radius:10px;padding:11px 14px;background:linear-gradient(135deg,var(--mo-polish-red),var(--mo-polish-red-dark));box-shadow:0 12px 26px rgba(217,27,18,.20);}

/* Why section */
.mo-why{padding:58px 0 46px;}
.mo-why-grid{gap:38px;}
.mo-why-image{height:430px;border-radius:22px;box-shadow:var(--mo-polish-shadow-lg);}
.mo-why-content{padding:42px;border-radius:22px;box-shadow:var(--mo-polish-shadow-md);}
.mo-why-content h2{font-size:34px;letter-spacing:-.04em;}
.mo-why-content li{padding:12px 0 12px 34px;}

/* Benefits */
.mo-benefits{padding:40px 0 24px;}
.mo-benefits-grid{gap:22px;}
.mo-benefit-card{border-radius:18px;padding:30px 25px;min-height:190px;}
.mo-benefit-card span{font-size:34px;margin-bottom:18px;}
.mo-benefit-card h3{line-height:1.35;}

/* CTA: more commercial and emotional */
.mo-cta{padding:44px 0 56px;}
.mo-cta-inner{border-radius:26px;padding:44px 52px;background:
  radial-gradient(circle at 85% 50%, rgba(217,27,18,.32), transparent 32%),
  linear-gradient(135deg,#0b1220 0%,#1e293b 100%);
  box-shadow:var(--mo-polish-shadow-lg);
}
.mo-cta h2{font-size:34px;letter-spacing:-.04em;max-width:560px;}
.mo-cta-actions{min-width:280px;}
.mo-cta-actions .btn-primary,.mo-cta-actions .btn-outline-dark{width:100%;text-align:center;border-radius:10px;}
.mo-cta-note{display:block;width:100%;text-align:center;color:#fecaca;font-size:12px;margin-top:2px;}

/* Footer */
.mo-footer{margin-top:0;background:#080e18;}
.mo-footer-grid{gap:54px;padding:54px 0;}
.mo-footer-brand img{width:178px;border-radius:10px;box-shadow:0 14px 34px rgba(0,0,0,.18);}
.mo-footer-col h4{font-size:13px;letter-spacing:.05em;}
.mo-footer-col a,.mo-footer-col p{font-size:13.5px;}
.mo-footer-whatsapp{border-radius:10px;padding:13px 16px;background:linear-gradient(135deg,var(--mo-polish-red),var(--mo-polish-red-dark));}

@media(max-width:1100px){
  .mo-header-inner{gap:16px;}
  .mo-menu a{padding:14px 10px;}
  .mo-vehicle-grid{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:980px){
  .mo-search-categories-grid{grid-template-columns:1fr;}
  .mo-search-categories .mo-categories .container{width:100%;}
  .mo-vehicle-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:900px){
  .mo-menu{border-radius:0;padding:18px 24px;box-shadow:0 18px 34px rgba(15,23,42,.14);}
  .mo-menu a{padding:12px 0;}
  .mo-hero{min-height:460px;}
  .mo-hero h1{font-size:42px;}
  .mo-stats-grid{grid-template-columns:repeat(2,1fr);}
  .mo-stat-card:nth-child(2):after{display:none;}
  .mo-why-grid{grid-template-columns:1fr;}
}
@media(max-width:640px){
  .container{width:min(100% - 24px, 1160px);}
  .mo-topbar-inner{font-size:11px;}
  .mo-hero{min-height:500px;}
  .mo-hero-content{padding:58px 0 68px;}
  .mo-hero h1{font-size:34px;}
  .mo-hero p{font-size:15.5px;}
  .mo-search-box,.mo-search-categories .mo-categories .container{padding:24px;}
  .mo-search-categories .mo-categories-grid{grid-template-columns:1fr;}
  .mo-stats-grid{grid-template-columns:1fr 1fr;}
  .mo-stat-card{padding:22px 10px;}
  .mo-stat-card strong{font-size:28px;}
  .mo-stat-card:after{display:none!important;}
  .mo-vehicle-grid{grid-template-columns:1fr;}
  .mo-vehicle-photo{height:245px;}
  .mo-why-image{height:310px;}
  .mo-why-content{padding:28px;}
  .mo-cta-inner{padding:32px 24px;}
  .mo-footer-grid{gap:28px;}
}

/* ==============================
   HOTFIX 2.2.1A.2 — Header com logo principal
   Baseado no layout aprovado pelo cliente
   ============================== */
.mo-header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 6px 22px rgba(15,23,42,.08);
}

.mo-header-inner{
  min-height:112px;
  height:auto;
  display:grid;
  grid-template-columns:minmax(300px, 430px) 1fr auto;
  align-items:center;
  gap:30px;
  padding:18px 0;
}

.mo-brand-main{
  display:flex;
  align-items:center;
  text-decoration:none;
  min-width:0;
}

.mo-brand-principal{
  width:min(100%, 430px);
  max-height:88px;
  height:auto;
  object-fit:contain;
  object-position:left center;
  display:block;
}

.mo-brand-main img.mo-brand-principal{
  height:auto;
}

.mo-menu{
  justify-self:center;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:999px;
  padding:0 24px;
  min-height:58px;
  gap:0;
  box-shadow:0 8px 24px rgba(15,23,42,.06);
}

.mo-menu li{
  display:flex;
  align-items:center;
  height:58px;
}

.mo-menu a{
  display:flex;
  align-items:center;
  height:100%;
  padding:0 17px;
  font-size:13px;
  letter-spacing:.045em;
}

.mo-menu a.is-active,
.mo-menu a[aria-current="page"]{
  color:var(--red);
}

.mo-menu a:after{
  bottom:10px;
  left:17px;
}

.mo-whatsapp{
  border-radius:14px;
  padding:17px 25px;
  min-height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  letter-spacing:.04em;
}

.mo-whatsapp:before{
  content:"☏";
  font-size:18px;
  margin-right:9px;
  line-height:1;
}

@media(max-width:1100px){
  .mo-header-inner{
    grid-template-columns:minmax(260px, 360px) 1fr auto;
    gap:18px;
  }

  .mo-menu{
    padding:0 12px;
  }

  .mo-menu a{
    padding:0 11px;
    font-size:12px;
  }

  .mo-whatsapp{
    padding:15px 18px;
  }
}

@media(max-width:900px){
  .mo-header-inner{
    min-height:86px;
    grid-template-columns:1fr auto;
    padding:12px 0;
  }

  .mo-brand-principal{
    max-width:330px;
    max-height:70px;
  }

  .mo-menu-toggle{
    display:block;
    margin-left:auto;
  }

  .mo-menu{
    display:none;
    position:absolute;
    top:86px;
    left:0;
    right:0;
    border-radius:0;
    border-left:0;
    border-right:0;
    min-height:0;
    padding:14px 24px;
    box-shadow:0 18px 30px rgba(0,0,0,.12);
  }

  .mo-menu.is-open{
    display:flex;
  }

  .mo-menu li{
    height:auto;
  }

  .mo-menu a{
    padding:12px 0;
  }

  .mo-whatsapp{
    display:none;
  }
}

@media(max-width:560px){
  .mo-header-inner{
    min-height:78px;
  }

  .mo-brand-principal{
    max-width:250px;
    max-height:58px;
  }

  .mo-menu{
    top:78px;
  }
}

/* =========================================================
   Hotfix 2.2.1A.3 — Hero CTA & Label Polish
   Remove o botão de destaque e deixa apenas o CTA consultivo.
   ========================================================= */
.mo-hero-actions--single{
  display:flex;
  align-items:center;
  gap:0;
}
.mo-hero-actions--single .mo-hero-consultor-btn{
  min-width:210px;
  border-radius:12px;
  box-shadow:0 18px 34px rgba(217,27,18,.28);
}
.mo-hero-actions--single .mo-hero-consultor-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 42px rgba(217,27,18,.34);
}
.mo-hero-label{
  text-transform:uppercase;
}
@media (max-width: 640px){
  .mo-hero-actions--single .mo-hero-consultor-btn{
    width:100%;
    min-width:0;
  }
}

/* =========================================================
   Hotfix 2.2.1A.4 — Search, Categories & Stats Premium
   Refinamento visual da busca, categorias e indicadores.
   ========================================================= */
.mo-search-categories{
  padding:50px 0 28px;
  background:
    radial-gradient(circle at 16% 0%, rgba(217,27,18,.05), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #f3f6fa 100%);
}

.mo-search-categories-grid{
  grid-template-columns:minmax(0, 1.02fr) minmax(0, 1fr);
  gap:28px;
  align-items:stretch;
}

.mo-search-box,
.mo-search-categories .mo-categories{
  position:relative;
  border:1px solid rgba(203,213,225,.92);
  border-radius:22px;
  padding:28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.94));
  box-shadow:0 24px 55px rgba(15,23,42,.08);
  overflow:hidden;
}

.mo-search-box::before,
.mo-search-categories .mo-categories::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  background:linear-gradient(90deg, var(--red), rgba(217,27,18,.15));
}

.mo-search-categories .mo-categories::after,
.mo-search-box::after{
  content:"";
  position:absolute;
  right:-72px;
  bottom:-72px;
  width:180px;
  height:180px;
  border-radius:999px;
  background:rgba(217,27,18,.035);
  pointer-events:none;
}

.mo-search-title,
.mo-search-categories .mo-section-head{
  position:relative;
  z-index:1;
}

.mo-search-title span,
.mo-search-categories .mo-section-head span{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:var(--red);
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
}

.mo-search-title span::before,
.mo-search-categories .mo-section-head span::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:999px;
  background:var(--red);
  box-shadow:0 0 0 6px rgba(217,27,18,.08);
}

.mo-search-title h2,
.mo-search-categories .mo-section-head h2{
  font-size:26px;
  letter-spacing:-.045em;
  color:#111827;
}

.mo-search-categories .mo-section-head p{
  max-width:430px;
  font-size:14px;
  color:#64748b;
}

.mo-search-categories .mo-search-form{
  position:relative;
  z-index:1;
  gap:14px;
}

.mo-search-categories .mo-search-form input,
.mo-search-categories .mo-search-form select{
  height:48px;
  border:1px solid #cbd5e1;
  border-radius:12px;
  background:#fff;
  color:#1f2937;
  font-weight:600;
  box-shadow:0 1px 0 rgba(15,23,42,.02);
}

.mo-search-categories .mo-search-form input::placeholder{
  color:#94a3b8;
  font-weight:500;
}

.mo-search-categories .mo-search-form input:focus,
.mo-search-categories .mo-search-form select:focus{
  border-color:rgba(217,27,18,.72);
  box-shadow:0 0 0 4px rgba(217,27,18,.09), 0 10px 24px rgba(15,23,42,.06);
}

.mo-search-categories .mo-search-form button{
  height:52px;
  border-radius:12px;
  font-weight:900;
  letter-spacing:.02em;
  background:linear-gradient(135deg, #e02216, #c91510);
  box-shadow:0 16px 34px rgba(217,27,18,.22);
}

.mo-search-categories .mo-search-form button::before{
  content:"⌕";
  display:inline-block;
  margin-right:8px;
  font-size:18px;
  line-height:1;
  transform:translateY(1px);
}

.mo-search-categories .mo-categories-grid{
  position:relative;
  z-index:1;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.mo-search-categories .mo-category-card{
  min-height:76px;
  padding:13px 14px;
  border:1px solid #dbe3ee;
  border-radius:16px;
  background:rgba(255,255,255,.92);
  box-shadow:0 8px 18px rgba(15,23,42,.035);
  transform:translateZ(0);
}

.mo-search-categories .mo-category-card:hover{
  border-color:rgba(217,27,18,.35);
  box-shadow:0 18px 36px rgba(15,23,42,.09);
  transform:translateY(-3px);
}

.mo-search-categories .mo-category-icon{
  width:46px;
  height:46px;
  flex:0 0 46px;
  border-radius:15px;
  background:linear-gradient(135deg, #fff2f0, #ffe6e2);
  box-shadow:inset 0 0 0 1px rgba(217,27,18,.08);
}

.mo-search-categories .mo-category-icon svg{
  width:25px;
  height:25px;
  fill:var(--red);
  transition:.2s ease;
}

.mo-search-categories .mo-category-card:hover .mo-category-icon{
  background:linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow:0 12px 22px rgba(217,27,18,.22);
}

.mo-search-categories .mo-category-card:hover .mo-category-icon svg{
  fill:#fff;
}

.mo-search-categories .mo-category-card h3{
  font-size:12px;
  line-height:1.15;
  color:#111827;
  letter-spacing:-.01em;
}

.mo-search-categories .mo-category-card p{
  margin-top:4px;
  font-size:11px;
  color:#64748b;
}

.mo-stats-premium{
  margin-top:6px;
  padding:10px 0 54px;
  background:linear-gradient(180deg, #f3f6fa 0%, #f8fafc 100%);
}

.mo-stats-premium .mo-stats-grid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:0;
  overflow:hidden;
  border:1px solid rgba(203,213,225,.95);
  border-radius:22px;
  background:rgba(255,255,255,.96);
  box-shadow:0 24px 54px rgba(15,23,42,.08);
}

.mo-stats-premium .mo-stat-card{
  position:relative;
  display:grid;
  grid-template-columns:auto 1fr;
  grid-template-areas:
    "icon number"
    "icon label";
  column-gap:16px;
  align-items:center;
  min-height:112px;
  padding:24px 26px;
  border-radius:0;
  border:0;
  background:transparent;
  box-shadow:none;
  text-align:left;
}

.mo-stats-premium .mo-stat-card:not(:last-child)::after{
  content:"";
  position:absolute;
  top:26px;
  bottom:26px;
  right:0;
  width:1px;
  background:#dbe3ee;
}

.mo-stats-premium .mo-stat-card:hover{
  transform:none;
  box-shadow:none;
  background:linear-gradient(180deg, rgba(217,27,18,.025), transparent);
}

.mo-stat-icon{
  grid-area:icon;
  display:flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  border-radius:17px;
  background:linear-gradient(135deg, #fff2f0, #ffe7e3);
  box-shadow:inset 0 0 0 1px rgba(217,27,18,.08);
}

.mo-stat-icon svg{
  width:27px;
  height:27px;
  fill:var(--red);
}

.mo-stats-premium .mo-stat-card strong{
  grid-area:number;
  color:var(--red);
  font-size:30px;
  line-height:1;
  letter-spacing:-.05em;
}

.mo-stats-premium .mo-stat-card span{
  grid-area:label;
  margin-top:7px;
  color:#334155;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

@media(max-width:1080px){
  .mo-search-categories-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:780px){
  .mo-stats-premium .mo-stats-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .mo-stats-premium .mo-stat-card:nth-child(2)::after{
    display:none;
  }

  .mo-stats-premium .mo-stat-card:nth-child(1),
  .mo-stats-premium .mo-stat-card:nth-child(2){
    border-bottom:1px solid #dbe3ee;
  }
}

@media(max-width:560px){
  .mo-search-categories{
    padding:30px 0 18px;
  }

  .mo-search-box,
  .mo-search-categories .mo-categories{
    padding:20px;
    border-radius:18px;
  }

  .mo-search-categories .mo-categories-grid{
    grid-template-columns:1fr;
  }

  .mo-stats-premium .mo-stats-grid{
    grid-template-columns:1fr;
  }

  .mo-stats-premium .mo-stat-card{
    min-height:96px;
  }

  .mo-stats-premium .mo-stat-card::after{
    display:none;
  }

  .mo-stats-premium .mo-stat-card:not(:last-child){
    border-bottom:1px solid #dbe3ee;
  }
}

/* =========================================================
   Hotfix 2.2.1A.5 — Home Search, Categories & Stats Premium
   ========================================================= */

.mo-search-categories{
  margin-top:-34px;
  padding:0 0 32px;
  position:relative;
  z-index:3;
}

.mo-search-categories-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  align-items:stretch;
}

.mo-home-panel{
  position:relative;
  background:rgba(255,255,255,.96);
  border:1px solid #d9e2ef;
  border-radius:20px;
  box-shadow:0 24px 70px rgba(15,23,42,.10);
  padding:36px;
  overflow:hidden;
}

.mo-home-panel:before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:4px;
  background:linear-gradient(90deg, #e11911, rgba(225,25,17,.12));
}

.mo-home-panel:after{
  content:"";
  position:absolute;
  right:-72px;
  bottom:-72px;
  width:190px;
  height:190px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(225,25,17,.11), rgba(225,25,17,0) 66%);
  pointer-events:none;
}

.mo-panel-title{
  position:relative;
  z-index:1;
  margin-bottom:24px;
}

.mo-kicker,
.mo-panel-title span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#e11911;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.16em;
  margin-bottom:10px;
}

.mo-kicker:before,
.mo-kicker--icon:before{
  content:"";
  width:9px;
  height:9px;
  border-radius:50%;
  background:#e11911;
  box-shadow:0 0 0 7px rgba(225,25,17,.10);
}

.mo-panel-title h2,
.mo-search-title h2,
.mo-section-head h2{
  color:#101828;
  font-size:30px;
  line-height:1.08;
  letter-spacing:-.035em;
  margin:0 0 10px;
  text-transform:uppercase;
}

.mo-panel-title p,
.mo-section-head p{
  color:#667085;
  font-size:16px;
  line-height:1.55;
  margin:0;
  max-width:620px;
}

.mo-premium-search-form{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.mo-search-field{
  position:relative;
  display:block;
  margin:0;
}

.mo-search-field--full,
.mo-search-submit{
  grid-column:1 / -1;
}

.mo-search-field input,
.mo-search-field select{
  width:100%;
  height:64px;
  margin:0;
  padding:0 50px 0 58px;
  border:1px solid #d8e2ee;
  border-radius:13px;
  background:#fff;
  color:#101828;
  font-size:15px;
  font-weight:700;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  appearance:auto;
}

.mo-search-keyword input{
  height:70px;
  font-size:18px;
  font-weight:500;
}

.mo-search-field input::placeholder{
  color:#98a2b3;
}

.mo-search-field input:focus,
.mo-search-field select:focus{
  border-color:#e11911;
  box-shadow:0 0 0 4px rgba(225,25,17,.10);
}

.mo-field-icon{
  position:absolute;
  z-index:2;
  left:20px;
  top:50%;
  width:22px;
  height:22px;
  transform:translateY(-50%);
  color:#101828;
  opacity:.78;
  pointer-events:none;
}

.mo-field-icon svg{
  width:100%;
  height:100%;
  display:block;
  fill:currentColor;
}

.mo-search-submit{
  height:66px;
  margin-top:8px;
  border:0;
  border-radius:12px;
  background:linear-gradient(135deg, #e11911 0%, #c9120c 100%);
  color:#fff;
  box-shadow:0 16px 34px rgba(225,25,17,.24);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-size:16px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.02em;
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.mo-search-submit svg{
  width:24px;
  height:24px;
  fill:currentColor;
}

.mo-search-submit:hover{
  transform:translateY(-2px);
  filter:saturate(1.05);
  box-shadow:0 20px 44px rgba(225,25,17,.32);
}

.mo-search-trust{
  position:relative;
  z-index:1;
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color:#667085;
  font-size:15px;
  font-weight:700;
}

.mo-search-trust svg,
.mo-stats-trust svg{
  width:22px;
  height:22px;
  fill:#e11911;
}

.mo-home-panel--categories{
  padding:36px 36px 34px;
}

.mo-categories-grid--premium{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.mo-category-card--premium{
  min-height:88px;
  display:flex;
  align-items:center;
  gap:17px;
  padding:18px;
  border:1px solid #dce6f2;
  border-radius:15px;
  background:#fff;
  color:#101828;
  text-decoration:none;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.mo-category-card--premium:hover{
  transform:translateY(-3px);
  border-color:rgba(225,25,17,.28);
  box-shadow:0 18px 40px rgba(15,23,42,.09);
  background:linear-gradient(135deg, #fff 0%, #fff8f7 100%);
}

.mo-category-icon{
  width:54px;
  height:54px;
  min-width:54px;
  border-radius:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#e11911;
  background:linear-gradient(135deg, #fff1f0 0%, #ffe7e4 100%);
  box-shadow:inset 0 0 0 1px rgba(225,25,17,.08);
}

.mo-category-card--green .mo-category-icon{
  color:#16a34a;
  background:linear-gradient(135deg, #ecfdf3 0%, #dcfce7 100%);
  box-shadow:inset 0 0 0 1px rgba(22,163,74,.10);
}

.mo-category-icon svg{
  width:30px;
  height:30px;
  display:block;
  fill:currentColor;
}

.mo-category-copy h3{
  color:#101828;
  font-size:15px;
  line-height:1.15;
  font-weight:900;
  margin:0 0 4px;
  text-transform:uppercase;
}

.mo-category-copy p{
  color:#667085;
  font-size:13px;
  line-height:1.25;
  margin:0;
}

.mo-stats-premium-v2{
  padding:4px 0 48px;
}

.mo-stats-panel{
  background:rgba(255,255,255,.98);
  border:1px solid #dce6f2;
  border-radius:20px;
  box-shadow:0 24px 70px rgba(15,23,42,.09);
  padding:34px 34px 22px;
  overflow:hidden;
}

.mo-stats-panel{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  column-gap:0;
}

.mo-stat-card--premium{
  display:flex;
  align-items:center;
  gap:20px;
  padding:12px 30px;
  border-right:1px solid #dce6f2;
}

.mo-stat-card--premium:last-of-type{
  border-right:0;
}

.mo-stat-card--premium .mo-stat-icon{
  width:76px;
  height:76px;
  min-width:76px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, #fff1f0 0%, #ffe5e2 100%);
  color:#e11911;
  box-shadow:inset 0 0 0 1px rgba(225,25,17,.08);
}

.mo-stat-card--premium .mo-stat-icon svg{
  width:36px;
  height:36px;
  fill:currentColor;
}

.mo-stat-copy strong{
  display:block;
  color:#e11911;
  font-size:34px;
  line-height:1;
  font-weight:950;
  letter-spacing:-.04em;
  margin-bottom:8px;
}

.mo-stat-copy span{
  display:block;
  color:#344054;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:7px;
}

.mo-stat-copy p{
  color:#667085;
  font-size:15px;
  line-height:1.45;
  margin:0;
  max-width:190px;
}

.mo-stats-trust{
  grid-column:1 / -1;
  margin-top:30px;
  padding-top:20px;
  border-top:1px solid #e4eaf2;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:11px;
  color:#667085;
  font-size:16px;
  font-weight:700;
}

@media (max-width:1100px){
  .mo-search-categories-grid{
    grid-template-columns:1fr;
  }

  .mo-stats-panel{
    grid-template-columns:repeat(2, 1fr);
    row-gap:18px;
  }

  .mo-stat-card--premium:nth-of-type(2){
    border-right:0;
  }

  .mo-stat-card--premium:nth-of-type(3),
  .mo-stat-card--premium:nth-of-type(4){
    border-top:1px solid #dce6f2;
    padding-top:28px;
  }
}

@media (max-width:720px){
  .mo-search-categories{
    margin-top:-18px;
  }

  .mo-home-panel,
  .mo-home-panel--categories{
    padding:26px 20px;
    border-radius:18px;
  }

  .mo-panel-title h2,
  .mo-search-title h2,
  .mo-section-head h2{
    font-size:25px;
  }

  .mo-premium-search-form,
  .mo-categories-grid--premium,
  .mo-stats-panel{
    grid-template-columns:1fr;
  }

  .mo-search-field input,
  .mo-search-field select,
  .mo-search-keyword input{
    height:58px;
    font-size:14px;
  }

  .mo-search-submit{
    height:60px;
  }

  .mo-category-card--premium{
    min-height:80px;
  }

  .mo-stat-card--premium,
  .mo-stat-card--premium:nth-of-type(2),
  .mo-stat-card--premium:nth-of-type(3),
  .mo-stat-card--premium:nth-of-type(4){
    border-right:0;
    border-top:1px solid #dce6f2;
    padding:24px 6px;
  }

  .mo-stat-card--premium:first-of-type{
    border-top:0;
  }

  .mo-stats-panel{
    padding:24px 22px 18px;
  }

  .mo-stats-trust{
    text-align:center;
    align-items:flex-start;
  }
}

/* =========================================================
   Hotfix 2.2.1A.6 — CTA leve e comercial
   ========================================================= */
.mo-cta.mo-cta-light{
  padding:52px 0 64px;
  background:
    radial-gradient(circle at 12% 15%, rgba(213,31,8,.07), transparent 28%),
    radial-gradient(circle at 88% 65%, rgba(15,23,42,.06), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.mo-cta-light .mo-cta-panel{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:minmax(0, 1.25fr) minmax(320px, .75fr);
  gap:34px;
  align-items:center;
  background:#ffffff;
  border:1px solid rgba(203,213,225,.86);
  border-radius:30px;
  padding:42px;
  box-shadow:0 24px 70px rgba(15,23,42,.10);
}

.mo-cta-light .mo-cta-panel::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:linear-gradient(90deg, #df1f13, rgba(223,31,19,.22), transparent);
}

.mo-cta-light .mo-cta-panel::after{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  right:-80px;
  bottom:-120px;
  border-radius:999px;
  background:rgba(223,31,19,.06);
  pointer-events:none;
}

.mo-cta-light .mo-cta-content,
.mo-cta-light .mo-cta-card{
  position:relative;
  z-index:1;
}

.mo-cta-light .mo-cta-eyebrow{
  color:#d91f14;
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
}

.mo-cta-light .mo-cta-eyebrow::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:#d91f14;
  box-shadow:0 0 0 6px rgba(217,31,20,.08);
}

.mo-cta-light h2{
  margin:0 0 14px;
  color:#0f172a;
  font-size:clamp(30px, 3vw, 44px);
  line-height:1.02;
  letter-spacing:-.055em;
  text-transform:none;
  max-width:620px;
}

.mo-cta-light p{
  margin:0;
  color:#475569;
  font-size:16px;
  line-height:1.7;
  max-width:680px;
}

.mo-cta-benefits{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:26px;
  max-width:720px;
}

.mo-cta-benefit{
  background:#f8fafc;
  border:1px solid rgba(203,213,225,.88);
  border-radius:18px;
  padding:18px 18px 17px;
}

.mo-cta-benefit strong{
  display:block;
  color:#111827;
  font-size:14px;
  font-weight:900;
  letter-spacing:-.01em;
  margin-bottom:5px;
}

.mo-cta-benefit small{
  display:block;
  color:#64748b;
  font-size:13px;
  line-height:1.45;
}

.mo-cta-card{
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border:1px solid rgba(203,213,225,.9);
  border-radius:24px;
  padding:24px;
  box-shadow:0 18px 48px rgba(15,23,42,.09);
}

.mo-cta-card .btn-primary,
.mo-cta-card .btn-outline-red{
  width:100%;
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  border-radius:14px;
  font-size:13px;
  font-weight:900;
  letter-spacing:.02em;
  text-transform:uppercase;
  text-decoration:none;
}

.mo-cta-card .btn-primary{
  background:linear-gradient(135deg, #e1261c 0%, #c91512 100%);
  color:#ffffff;
  box-shadow:0 16px 34px rgba(213,31,8,.22);
}

.mo-cta-card .btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 42px rgba(213,31,8,.28);
}

.btn-outline-red{
  color:#d91f14;
  border:1px solid rgba(217,31,20,.28);
  background:#fff;
}

.btn-outline-red:hover{
  color:#fff;
  background:#d91f14;
  border-color:#d91f14;
  transform:translateY(-2px);
}

.mo-cta-card .btn-outline-red{
  margin-top:12px;
}

.mo-cta-light .mo-cta-note{
  margin:16px 0 0;
  max-width:none;
  text-align:center;
  color:#64748b;
  font-size:12px;
  line-height:1.5;
}

@media(max-width:900px){
  .mo-cta-light .mo-cta-panel{
    grid-template-columns:1fr;
    padding:32px 24px;
  }

  .mo-cta-benefits{
    grid-template-columns:1fr;
  }

  .mo-cta-card{
    max-width:420px;
    width:100%;
  }
}

@media(max-width:560px){
  .mo-cta.mo-cta-light{
    padding:36px 0 44px;
  }

  .mo-cta-light .mo-cta-panel{
    border-radius:22px;
    padding:28px 20px;
  }

  .mo-cta-light h2{
    font-size:30px;
  }

  .mo-cta-card{
    padding:18px;
    border-radius:20px;
  }
}

/* Hotfix 2.2.1A.7 — Menu Categories + Catalog Card Readability */
.mo-menu-item-has-children{position:relative;}
.mo-menu-dropdown{
  position:absolute;
  top:calc(100% + 12px);
  left:50%;
  transform:translateX(-50%) translateY(8px);
  width:280px;
  background:#fff;
  border:1px solid rgba(203,213,225,.9);
  border-radius:20px;
  padding:10px;
  box-shadow:0 24px 60px rgba(15,23,42,.16);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.2s ease;
  z-index:80;
}
.mo-menu-dropdown:before{
  content:"";
  position:absolute;
  top:-7px;
  left:50%;
  width:14px;
  height:14px;
  background:#fff;
  border-left:1px solid rgba(203,213,225,.9);
  border-top:1px solid rgba(203,213,225,.9);
  transform:translateX(-50%) rotate(45deg);
}
.mo-menu-item-has-children:hover .mo-menu-dropdown,
.mo-menu-item-has-children:focus-within .mo-menu-dropdown{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.mo-menu .mo-menu-dropdown a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:11px 12px;
  border-radius:12px;
  color:#111827;
  font-size:12px;
  font-weight:850;
  letter-spacing:.035em;
  text-transform:none;
  white-space:nowrap;
}
.mo-menu .mo-menu-dropdown a:after{
  content:"›";
  display:inline-flex;
  color:#dc1b14;
  font-size:16px;
  font-weight:900;
}
.mo-menu .mo-menu-dropdown a:hover{
  background:#fff1f1;
  color:#dc1b14;
}

.mo-list-grid-premium{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.mo-list-card-premium{
  border:1px solid rgba(203,213,225,.88);
  border-radius:22px;
  background:#fff;
  box-shadow:0 16px 42px rgba(15,23,42,.08);
}
.mo-list-card-premium:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 60px rgba(15,23,42,.14);
  border-color:rgba(220,27,20,.26);
}
.mo-list-card-premium .mo-list-card-photo{
  aspect-ratio:16/10.5;
  background:linear-gradient(135deg,#e5e7eb,#f8fafc);
}
.mo-list-card-premium .mo-list-card-photo:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(15,23,42,.02) 36%,rgba(15,23,42,.55) 100%);
  pointer-events:none;
}
.mo-list-card-badge,
.mo-list-card-code{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  min-height:28px;
  border-radius:999px;
  font-size:10px;
  font-weight:950;
  letter-spacing:.055em;
  text-transform:uppercase;
}
.mo-list-card-badge{
  top:14px;
  left:14px;
  max-width:calc(100% - 86px);
  background:linear-gradient(135deg,#e21b12,#b90f0a);
  color:#fff;
  padding:7px 11px;
  box-shadow:0 12px 24px rgba(226,27,18,.25);
}
.mo-list-card-code{
  left:14px;
  bottom:14px;
  background:rgba(15,23,42,.86);
  color:#fff;
  padding:7px 10px;
  backdrop-filter:blur(10px);
}
.mo-list-card-premium .mo-list-card-body{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.mo-list-card-title-block h3{
  margin:0 0 7px;
  min-height:auto;
  color:#111827;
  font-size:16px;
  line-height:1.28;
  letter-spacing:-.015em;
}
.mo-list-card-title-block p{
  margin:0;
  min-height:auto;
  color:#64748b;
  font-size:12px;
  font-weight:750;
  letter-spacing:.025em;
  text-transform:uppercase;
}
.mo-list-card-specs{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
}
.mo-list-card-specs span{
  min-height:52px;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:9px 8px;
  background:#f8fafc;
  overflow:hidden;
}
.mo-list-card-specs small{
  display:block;
  margin-bottom:3px;
  color:#94a3b8;
  font-size:9px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.055em;
}
.mo-list-card-specs strong{
  display:block;
  color:#172033;
  font-size:11px;
  line-height:1.15;
  font-weight:950;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.mo-list-card-premium .mo-list-card-footer{
  margin-top:2px;
  padding:14px;
  border:1px solid rgba(220,27,20,.12);
  border-radius:18px;
  background:linear-gradient(135deg,#fff7f7 0%,#ffffff 68%);
  align-items:center;
}
.mo-list-card-price small{
  display:block;
  margin-bottom:3px;
  color:#64748b;
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.mo-list-card-price strong{
  display:block;
  color:#c9140d;
  font-size:22px;
  line-height:1;
  letter-spacing:-.04em;
  font-weight:950;
}
.mo-list-card-premium .mo-list-card-footer em{
  background:#dc1b14;
  color:#fff;
  border-radius:12px;
  padding:12px 14px;
  box-shadow:0 12px 24px rgba(220,27,20,.20);
  white-space:nowrap;
}
.mo-list-card-premium .mo-list-card-footer em:hover{background:#b90f0a;}
.mo-no-photo{
  height:100%;
  display:grid;
  place-items:center;
  color:#64748b;
  font-weight:900;
  background:linear-gradient(135deg,#f1f5f9,#e2e8f0);
}

@media(max-width:980px){
  .mo-list-grid-premium{grid-template-columns:repeat(2,minmax(0,1fr));}
  .mo-menu-dropdown{position:static;transform:none;width:100%;box-shadow:none;margin:6px 0 10px;opacity:1;visibility:visible;pointer-events:auto;display:none;}
  .mo-menu.is-open .mo-menu-dropdown{display:block;}
  .mo-menu-dropdown:before{display:none;}
}
@media(max-width:640px){
  .mo-list-grid-premium{grid-template-columns:1fr;}
  .mo-list-card-specs{grid-template-columns:repeat(2,minmax(0,1fr));}
  .mo-list-card-price strong{font-size:20px;}
}

/* Hotfix 2.2.1B.1 — dropdown de categorias com ícones no menu global */
.mo-menu-dropdown-categories{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 18px;width:520px;}
.mo-menu .mo-menu-dropdown-categories a{display:flex;align-items:center;gap:12px;text-transform:none;letter-spacing:0;}
.mo-menu-dropdown-categories img{width:20px;height:20px;flex:0 0 20px;object-fit:contain;}
.mo-menu-chevron{font-size:12px;margin-left:4px;}
@media(max-width:980px){.mo-menu-dropdown-categories{width:100%;grid-template-columns:1fr;}}
