/* ===== global.css ===== */
/* ======================================================================
   MOTOCLOUD - BASE GLOBAL E COMPONENTES COMPARTILHADOS
   Arquivo modular gerado a partir do stylesheet consolidado de 24/07/2026.
====================================================================== */

/* ================= ANIMAÇÕES COMPARTILHADAS ================= */
@keyframes bolt-glow {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(255, 237, 0, 0.5)); }
  50% { filter: drop-shadow(0 0 15px rgba(255, 237, 0, 0.9)); }
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 237, 0, 0.3); }
  50% { transform: scale(1.03); box-shadow: 0 4px 25px rgba(255, 237, 0, 0.6); }
}
@keyframes shimmer-effect {
  0% { transform: translateX(-300%) rotate(25deg); }
  20%, 100% { transform: translateX(800%) rotate(25deg); }
}
@keyframes card-reveal {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes tickerLoop {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
@keyframes grow-bar {
  0% { max-width: 0; }
  100% { max-width: 100%; }
}
@keyframes charge-pulse {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
@keyframes bolt-flash {
  0% { opacity: 0.4; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1.2); }
}

@keyframes slide-down-ticker {
  to { transform: translateY(0); opacity: 1; }
}
@keyframes badge-electric-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 237, 0, 0.2); border-color: rgba(255, 237, 0, 0.4); transform: scale(1); }
  50% { box-shadow: 0 0 30px rgba(255, 237, 0, 0.8); border-color: rgba(255, 237, 0, 1); transform: scale(1.04); }
}

@keyframes sell-card-electric-pulse {
  0%, 100% { box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25), 0 0 12px rgba(255, 237, 0, 0.12) inset; border-color: rgba(255, 237, 0, 0.55); }
  50% { box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 28px rgba(255, 237, 0, 0.35) inset, 0 0 20px rgba(255, 237, 0, 0.2); border-color: rgba(255, 237, 0, 1); }
}
@keyframes sell-card-fast-scan {
  0% { transform: translateX(-150%) rotate(12deg); }
  35%, 100% { transform: translateX(280%) rotate(12deg); }
}
@keyframes fabLocShake {
  0%, 72%, 100% { transform: translateX(0) rotate(0deg); }
  76% { transform: translateX(-2px) rotate(-4deg); }
  80% { transform: translateX(2px) rotate(4deg); }
  84% { transform: translateX(-2px) rotate(-3deg); }
  88% { transform: translateX(2px) rotate(3deg); }
  92% { transform: translateX(0) rotate(0deg); }
}
@keyframes fabLocPulse {
  0% { opacity: 0.65; transform: scale(1); }
  70% { opacity: 0; transform: scale(1.35); }
  100% { opacity: 0; transform: scale(1.35); }
}

/* ================= REGRAS BASE ================= */
:root {
    --primary-color: #FFED00;
    --primary-yellow: #FFED00;
    --primary-hover: #ffe600;
    --primary-active: #ffd000;
    --success-green: #004b22;
    --error-red: #ff5555;
    --google-red: #DB4437;
    --gray-900: #1a1a1a;
    --gray-800: #333333;
    --gray-700: #555555;
    --gray-600: #888888;
    --gray-500: #cccccc;
    --gray-400: #e0e0e0;
    --gray-300: #f4f4f4;
    --bg-body: #e9e9e9;
    --bg-card: #f4f4f4;
    --bg-card-hover: #ffffff;
    --bg-input: #ffffff;
    --bg-overlay: rgba(0, 0, 0, 0.85);
    --text-main: #333333;
    --text-muted: #595959;
    --border-color: #dddddd;
    --border-hover: #cccccc;
    --space-xs: 5px;
    --space-sm: 10px;
    --space-md: 20px;
    --space-lg: 30px;
    --space-xl: 40px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scrollbar-gutter: auto;
}

body {
    background: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.6;
}

a,
button {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-normal);
    outline: none !important;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at 50% 0%, rgba(255, 237, 0, 0.04) 0%, transparent 75%), linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.05) 100%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.03;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.2) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.sr-announcer-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.body-no-scroll {
    overflow: hidden !important;
}

.text-highlight {
    color: #6f5700;
}

.text-success {
    color: var(--success-green);
    margin-left: 5px;
    font-weight: bold;
}

.text-emerald {
    color: #10b981;
}

.text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.text-muted {
    color: var(--text-muted);
}

.text-sm {
    font-size: 12px;
}

.text-md {
    font-size: 14px;
}

.text-danger-red {
    color: var(--error-red);
}

.text-error {
    color: var(--error-red);
    font-weight: 800;
    font-size: 14px;
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.mb-md {
    margin-bottom: var(--space-md);
}

.mb-sm {
    margin-bottom: var(--space-sm);
}

.mb-xs {
    margin-bottom: var(--space-xs);
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-lg-custom {
    margin-top: 30px;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-sm {
    margin-top: var(--space-sm);
}

.mt-md-custom {
    margin-top: 15px;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-1 {
    flex: 1;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.w-100 {
    width: 100% !important;
}

.h-auto {
    height: auto !important;
}

.h-38 {
    height: 38px !important;
}

.align-end {
    align-items: flex-end;
}

.hide-element {
    display: none !important;
}

.show-flex {
    display: flex !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

.fa-spin {
    animation: fa-spin 2s infinite linear !important;
}

.alert-fade {
    transition: opacity 0.5s ease;
}

.icon-bolt-yellow,
.icon-bolt-vital {
    color: var(--primary-color);
    margin-right: 5px;
}

.icon-loc-yellow {
    color: var(--primary-color);
    margin-right: 4px;
}

.icon-warning-orange {
    color: #f39c12;
    margin-right: 4px;
}

.btn-sm {
    padding: 6px 12px !important;
    font-size: 11px !important;
    height: auto !important;
}

.divider-diamante {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.8;
    margin: 0;
}

.main-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    background: var(--bg-card);
    min-height: 100vh;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.content {
    padding: var(--space-lg);
    min-width: 0;
    flex-grow: 1;
}

header {
    background: #f4f4f4;
    padding: var(--space-lg) var(--space-md) var(--space-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    position: relative;
    z-index: 100;
    border-bottom: 2px solid var(--border-color);
}

.logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.btn-anunciar {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--space-lg);
    color: #000 !important;
    font-size: 13px;
    font-weight: 900;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFF566 100%);
    box-shadow: 0 4px 15px rgba(255, 237, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s infinite ease-in-out;
}

.btn-anunciar::after {
    content: "";
    position: absolute;
    top: -50%;
    left: 0;
    width: 60px;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    animation: shimmer-effect 3s infinite;
}

.btn-header-painel {
    display: flex;
    align-items: center;
    height: 42px;
    padding: 0 var(--space-md);
    background: #f4f4f4;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 800;
    color: #333 !important;
}

.top-ticker-container {
    width: 100%;
    background-color: #000;
    color: #fff;
    overflow: hidden;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
    display: flex;
    z-index: 100;
}

.ticker-track {
    display: flex;
    animation: tickerLoop 55s linear infinite;
}



.ticker-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

.ticker-item {
    display: flex;
    align-items: center;
    font-family: var(--font-heading), sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 30px;
}

.ticker-z {
    height: 40px;
    margin-right: 10px;
}

.sidebar-sell-cta {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #101010 0%, #1f1f1f 100%);
    border: 1px solid rgba(255, 237, 0, 0.45);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
    color: #fff;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.sidebar-sell-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #111;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sidebar-sell-cta h2 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    line-height: 1.15;
    font-family: var(--font-heading);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.3px;
}

.sidebar-sell-cta p {
    margin: 0 0 15px;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
}

.sidebar-sell-cta p strong {
    color: var(--primary-color);
    font-weight: 900;
}

.filter-group {
    margin-bottom: 12px;
}

.filter-label {
    color: #8a6d00;
    font-weight: 900;
    margin-bottom: 6px;
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.grid,
.main-wrapper,
.content {
    max-width: 100%;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--space-md);
    min-height: 50vh;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: card-reveal 0.6s cubic-bezier(0.23, 1, 0.32, 1) backwards;
    transition: all var(--transition-normal);
    will-change: transform, opacity;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.card:hover {
    border-color: var(--primary-color);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.card-img-box {
    position: relative;
    height: 170px;
    width: 100%;
    overflow: hidden;
    background: #e9e9e9;
}

.card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-img {
    transform: scale(1.06);
    filter: brightness(1.05);
}

.card-body {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 3px;
    line-height: 1.2;
    height: 2.4em;
    overflow: hidden;
    font-family: var(--font-heading);
}

.card-loc {
    margin-top: auto;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    border-top: 1px solid var(--border-color);
    padding-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.grid article {
    min-width: 0;
    height: 100%;
}

.grid article a {
    display: block;
    min-width: 0;
    height: 100%;
}

.card,
.card-body {
    min-width: 0;
}

.badge-autonomia {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-main);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(4px);
}

nav.pagination {
    display: flex;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-weight: 800;
    font-size: 14px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.page-link:hover,
.page-link.active {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.pagination-dots {
    color: var(--text-muted);
    font-weight: 900;
    display: inline-flex;
    align-items: flex-end;
    padding: 0 5px;
    font-size: 16px;
}

.detail-page-body {
    background: var(--bg-body);
    color: var(--text-main);
}

.nav-back-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: var(--space-md);
}

.logo-back-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-back-img {
    height: 56px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.btn-floating-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: var(--text-main);
    padding: 10px 18px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: var(--transition-normal);
    width: max-content;
}

.btn-floating-back:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.vehicle-title-lg {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.btn-whatsapp-lg {
    background: var(--success-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    border-radius: var(--radius-md);
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
    transition: var(--transition-normal);
}

.btn-whatsapp-lg:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.3);
}

.desc-title-yellow {
    color: #dcb300;
    font-family: var(--font-heading);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 15px;
}

.desc-content {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 16px;
    white-space: normal;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.badge-type {
    background: rgba(255, 237, 0, 0.15);
    color: #b89500;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 900;
    border: 1px solid rgba(255, 237, 0, 0.4);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.safety-tips-box {
    background: rgba(255, 237, 0, .1);
    border: 1px solid rgba(255, 237, 0, .4);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.safety-tips-title {
    color: #b89500;
    font: 0.9rem var(--font-heading);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

.safety-tips-alert {
    font-size: .75rem;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.4;
    border-bottom: 1px dashed rgba(0, 0, 0, .1);
    padding-bottom: 10px;
}

.ad-form-box {
    max-width: 850px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.section-title-sm {
    color: #dcb300;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-email-badge {
    background: #ffffff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.user-email-badge-flex {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.alert-triagem-box {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.5;
}

.alert-triagem-icon {
    color: var(--error-red);
    flex-shrink: 0;
}

.alert-triagem-title {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.full-width-group {
    grid-column: 1 / -1;
}

.input-locked {
    background: #f0f0f0 !important;
    color: #888 !important;
    cursor: not-allowed;
    font-weight: 700;
}

.preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 2;
    display: none;
}

.preview-img.show {
    display: block !important;
}

.btn-submit-ad::after {
    content: "";
    position: absolute;
    top: -50%;
    left: 0;
    width: 60px;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    animation: shimmer-effect 3s infinite;
    pointer-events: none;
}

.btn-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: rgba(0,0,0,0.1);
    z-index: 1;
    transition: width 0.1s linear;
}

.btn-text-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.profile-warning-text {
    font-size: 11px;
    color: var(--error-red);
    margin-top: 5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.phone-input-group {
    display: flex;
    gap: 10px;
}

.select-prefix {
    width: 100px;
    margin: 0;
    padding: 8px;
}

.input-phone-flex {
    margin: 0;
    flex: 1;
}

.desc-hint {
    font-size: 11px;
    color: #b89500;
    margin-bottom: 7px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.profile-wpp-input {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    height: auto !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    box-shadow: none !important;
    margin-top: 2px;
}

.profile-wpp-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.profile-wpp-input::placeholder {
    color: #94a3b8;
    font-weight: 600;
}

.profile-wpp-input.input-locked {
    color: #475569 !important;
    opacity: 1 !important;
}

.painel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.switch-label {
    font-size: 10px;
    font-weight: 900;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expire-alert {
    font-size: 10px;
    color: #b89500;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    font-weight: bold;
}

.danger-title {
    color: var(--error-red);
    margin-bottom: 8px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
}

.danger-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}

.admin-input {
    width: 100%;
    padding: 14px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.admin-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(255, 237, 0, 0.2);
    outline: none;
}

.icon-whatsapp-linked {
    color: var(--success-green);
    font-size: 20px;
}

.input-file-custom {
    padding: 10px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.admin-empty-full {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    color: var(--text-muted);
    font-weight: 800;
    font-size: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px dashed var(--border-color);
}

.btn-save-edit {
    width: 100%;
    height: 65px;
    background: var(--success-green);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-normal);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-save-edit:hover {
    filter: brightness(1.05);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.form-input-focus {
    border-color: var(--primary-color) !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    color: #b89500 !important;
}

.icon-size-lg {
    font-size: 40px;
}

.top-ticker-wrapper {
    background: var(--primary-color);
    color: #000;
    width: 100%;
    height: 34px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 200;
    transform: translateY(-100%);
    opacity: 0;
    animation: slide-down-ticker 0.5s forwards;
}

.input-locked-wrapper {
    position: relative;
}

.icon-input-locked {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
}

.alert-pending-publish {
    opacity: 1;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.admin-box {
    background: #ffffff !important;
    padding: 28px !important;
    border-radius: 12px !important;
    border: 1px solid #dadce0 !important;
    margin-bottom: 24px;
    box-shadow: none !important;
}

.auth-input {
    width: 100%;
    padding: 14px 16px !important;
    background: #fff !important;
    border: 1px solid #dadce0 !important;
    color: #3c4043 !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    transition: all 0.2s ease !important;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 500 !important;
    box-shadow: none !important;
}

.auth-input:focus {
    border-color: #111 !important;
    outline: none !important;
    box-shadow: 0 0 0 1px #111 !important;
}

.btn-submit-ad {
    position: relative;
    overflow: hidden;
    background: var(--success-green);
    color: #fff;
    width: 100%;
    padding: 22px;
    border: none;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 16px;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s !important;
    margin-top: 16px;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3) !important;
}

.btn-submit-ad:hover {
    filter: brightness(1.05);
    transform: translateY(-3px);
    box-shadow: 0 1px 3px 1px rgba(60,64,67,0.15), 0 1px 2px 0 rgba(60,64,67,0.3) !important;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: var(--space-md);
}

.auth-title {
    color: var(--text-main);
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.login-vitrine-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.70) !important;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
}

.login-vitrine-link:hover {
    color: var(--primary-color) !important;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.modal-overlay.open {
    display: flex;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 45px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    z-index: 10000;
    transition: transform var(--transition-fast), color var(--transition-fast);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
}

.modal-close-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.modal-loader-box,
.modal-loader-container {
    text-align: center;
    padding: 50px;
}

.modal-loader-icon {
    color: var(--primary-color);
}

.modal-loader-text {
    margin-top: 15px;
    font-weight: bold;
    color: var(--text-main);
}

.alert-box-success {
    padding: 15px;
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid var(--success-green);
    color: var(--success-green);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    text-align: center;
    font-weight: 800;
}

.alert-box-error {
    padding: 15px;
    background: rgba(255, 85, 85, 0.05);
    border: 1px solid var(--error-red);
    color: var(--error-red);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    text-align: center;
    font-weight: 800;
}

.no-results-container {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
}

.no-results-icon {
    font-size: 40px;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.no-results-title {
    color: var(--text-main);
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.alert-error-modal {
    margin-top: 20px;
}

.desc-content a {
    display: inline-block;
    color: #222222;
    font-weight: 900;
    text-decoration: none;
    background: rgba(255, 237, 0, 0.22);
    padding: 3px 7px;
    border-radius: 6px;
    border-bottom: none;
    line-height: 1.35;
    transition: all 0.18s ease;
}

.desc-content a:hover,
.desc-content a:focus {
    color: #000000;
    background: rgba(255, 237, 0, 0.75);
}

.desc-content a:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 3px;
    border-radius: 6px;
}

.desc-content li a {
    margin: 2px 0;
    padding: 4px 8px;
}

.desc-content table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-collapse: collapse;
}

.desc-content td,
.desc-content th {
    min-width: 140px;
    word-wrap: break-word;
    hyphens: auto;
}

.desc-content td:first-child,
.desc-content th:first-child {
    min-width: 110px;
}

.badge-z-icon {
    width: 33px;
    height: 33px;
    display: inline-block;
    vertical-align: -3px;
    margin-right: 9px;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 25px;
    border-radius: var(--radius-md);
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff !important;
    transition: var(--transition-normal);
    min-width: 200px;
}

.btn-social:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.2);
}

.btn-instagram:hover {
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.3);
}

.btn-facebook {
    background: #1877F2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.2);
}

.btn-facebook:hover {
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}

.cta-center {
    margin: 28px 0 10px;
    text-align: center;
}

.cta-center .btn-submit-ad {
    max-width: 520px;
    margin: 0 auto;
    display: flex !important;
}

.lp-footer {
    border-top: 1px solid var(--border-color);
    padding: 50px 20px 30px;
    margin-top: 60px;
    text-align: center;
    background: #f8f9fa;
}

.lp-footer-container {
    max-width: 900px;
    margin: 0 auto;
}

.lp-footer-links {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.lp-footer-links a {
    color: var(--text-main);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.3s;
    text-decoration: none;
}

.lp-footer-links a:hover {
    color: var(--primary-color);
}

.lp-footer-disclaimer {
    margin-top: 35px;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.8;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.footer-copy-text {
    margin: 0;
    font-weight: 600;
}

/* Aviso importante compartilhado entre detalhes e páginas institucionais. */
.notice {
    margin-top: var(--space-xl);
    background: #fff1f1 !important;
    border: 1px solid #ef9a9a !important;
    border-left: 5px solid #c62828 !important;
    color: #5f1b1b;
    box-shadow: 0 4px 14px rgba(198, 40, 40, 0.08) !important;
}
.notice .danger-title {
    color: #b71c1c;
}
.notice .danger-title i {
    color: #c62828;
}
.notice .danger-desc {
    color: #5f1b1b;
}
.notice strong {
    color: #7f1d1d;
}

/* MotoCloud — acabamento visual unificado, setembro/2026. */

:root {
  --bg-body:#f2f2ee; --bg-card:#fff; --bg-card-hover:#fff;
  --text-main:#252822; --text-muted:#62675d; --border-color:#dedfd7;
  --border-hover:#b7bcac; --gray-300:#f5f5f0;
  --radius-sm:10px; --radius-md:16px; --radius-lg:22px;
  --mc-shadow:0 8px 28px rgba(25,27,24,.045);
}
body::before { background:#f2f2ee; }
body::after { opacity:0; }
.main-wrapper { background:transparent; border:0; box-shadow:none; }
.card,.ad-form-box,.admin-box { background:#fff; border-color:var(--border-color); border-radius:20px; box-shadow:var(--mc-shadow); }
.card:hover { border-color:#b7bcac; box-shadow:0 12px 30px rgba(25,27,24,.09); transform:translateY(-3px); }
.card-title { letter-spacing:-.35px; }
.card-loc { color:var(--text-muted); }
.vehicle-title-lg { letter-spacing:-.7px; line-height:1.2; }
.desc-content { line-height:1.85; }
.admin-input,.auth-input,.form-input-focus,.profile-wpp-input { border-radius:12px; border-color:#d5d8ce; box-shadow:none; }
.admin-input:focus,.auth-input:focus,.form-input-focus:focus,.profile-wpp-input:focus { border-color:#7c836e; box-shadow:0 0 0 3px rgba(124,131,110,.13); }
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible { outline:2px solid #7a8066 !important; outline-offset:3px; }
.btn-submit-ad { background:#ffed00; color:#191b18; border-radius:12px !important; box-shadow:none !important; }
.btn-submit-ad:hover { background:#f2df00; filter:none; transform:translateY(-1px); box-shadow:0 5px 16px rgba(25,27,24,.1) !important; }
.btn-submit-ad::after { display:none; }
.btn-submit-ad:disabled { opacity:.55; cursor:not-allowed; transform:none; }
.btn-floating-back,.page-link { border-color:var(--border-color); box-shadow:0 2px 8px rgba(25,27,24,.04); }
.sidebar-sell-cta { background:#191b18; border:1px solid #34392f; border-top:4px solid #ffed00; border-radius:22px; box-shadow:var(--mc-shadow); animation:none; }
.sidebar-sell-cta::before,.sidebar-sell-cta::after { display:none; }
.sidebar-sell-badge,.badge-type,.badge-z-icon { animation:none; filter:none; box-shadow:none; }
.admin-empty-full,.no-results-container { background:#fff; border:1px solid var(--border-color); border-radius:20px; box-shadow:none; }
.safety-tips-box { border-radius:16px; }
.lp-footer { border-color:var(--border-color); }


/* ===== index.css ===== */
/* ======================================================================
   MOTOCLOUD - CATÁLOGO E HOME
   Arquivo modular gerado a partir do stylesheet consolidado de 24/07/2026.
====================================================================== */

/* ================= REGRAS BASE ================= */
.tag {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-normal);
    outline: none !important;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    font-family: var(--font-heading);
    color: #333;
    letter-spacing: -1.5px;
}

.logo i {
    color: var(--primary-color);
    margin-right: var(--space-sm);
    filter: drop-shadow(0 0 5px rgba(255, 237, 0, 0.5));
    animation: bolt-glow 2s ease-in-out infinite;
}





/* Controles do catálogo: filtros compactos à esquerda e ordenação à direita. */












.sort-select {
    background: var(--bg-input);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.sort-select:hover {
    border-color: var(--primary-color);
}

.sort-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.2);
}

#catalogo-container {
    transition: opacity 0.4s ease-in-out;
    position: relative;
    min-height: 50vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

#catalogo-container.ajax-loading-state {
    opacity: 0.3;
    pointer-events: none;
}



.main-brands-carousel-wrapper {
    margin-bottom: 10px;
    width: 100%;
    position: relative;
}

.brands-carousel-track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xs) var(--space-md);
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;

    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #e4e4e0;
}

.brands-carousel-track::-webkit-scrollbar {
    height: 6px;
}

.brands-carousel-track::-webkit-scrollbar-track {
    background: #e4e4e0;
    border-radius: 999px;
}

.brands-carousel-track::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 999px;
}

.brands-carousel-track::-webkit-scrollbar-thumb:hover {
    background: #111111;
}

.brand-scroll-btn {
    position: absolute;
    top: calc(25px + var(--space-md));
    transform: translateY(-50%);
    z-index: 10;
    background: #ffffff;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.brand-scroll-btn:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.brand-scroll-btn.left {
    left: -10px;
}

.brand-scroll-btn.right {
    right: -10px;
}

.brand-item-card {
    position: relative;
    flex: 0 0 80px;
    min-width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.brand-item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}

.brand-item-card.active {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 237, 0, 0.3);
}

.brand-logo-img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.brand-item-card:hover .brand-logo-img {
    transform: scale(1.08);
}

.brand-name-text {
    font-size: 10px;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-main);
}

.brand-badge-zero {
    opacity: 0.4;
    filter: grayscale(100%);
}

.brand-badge-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: #ffed00;
    color: #111;
    font-size: 10px;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 6px;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.card-info {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 3px;
    font-weight: 600;
}

.card-price {
    font-size: 21px;
    font-weight: 900;
    color: #111;
    margin-bottom: 8px;
    display: block;
    letter-spacing: -0.5px;
}



/* O sentinela precisa ter geometria para o IntersectionObserver funcionar. */
#infinite-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 20px 0 24px;
    min-height: 68px;
    width: 100%;
    clear: both;
}

#infinite-loading[hidden],
#catalogo-container .pagination[hidden] {
    display: none;
}

.catalog-load-status {
    color: var(--text-main);
    font-size: 13px;
    font-weight: 700;
}

.catalog-load-status:empty { display: none; }

#infinite-loading i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 5px;
}

.catalog-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 18px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    color: var(--text-main);
    background: var(--bg-card);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.catalog-load-more:hover { background: var(--primary-color); color: #111; }
.catalog-load-more:focus-visible { outline: 2px solid var(--text-main); outline-offset: 3px; }
#infinite-loading.infinite-busy .catalog-load-more { visibility: hidden; pointer-events: none; }
.catalog-block-back { text-align: center; margin: 12px 0; }

.legal-modal-box {
    background: var(--bg-card);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: card-reveal 0.3s ease-out;
}

#legal-modal-content {
    overflow-y: auto;
    padding-right: 15px;
}

#legal-modal-content::-webkit-scrollbar {
    width: 6px;
}

#legal-modal-content::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

#legal-modal-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

#legal-modal-content::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.modal-box-sm {
    max-width: 450px;
}

.modal-header-center {
    text-align: center;
    margin-bottom: 25px;
}

.modal-icon-xl {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.modal-title-bold {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}

.form-col-gap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-w100 {
    width: 100%;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.btn-w100 {
    width: 100%;
    border: none;
    cursor: pointer;
}

.btn-outline-w100 {
    width: 100%;
    height: 42px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    z-index: 999;
}

.fab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    overflow: hidden;
}

.fab-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.fab-loc-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #dc2626;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 5px;
    border-radius: 12px;
    border: 2px solid #111827;
    line-height: 1;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.fab-logo,
.fab-login-primary,
.fab-loc-primary {
    background: var(--primary-color) !important;
    width: 56px;
    height: 56px;
    border: 2px solid #ffffff !important;
    box-shadow: 0 5px 15px rgba(255, 237, 0, 0.4);
    text-decoration: none;
    color: #000 !important;
}

.fab-logo img {
    width: 55px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.fab-logo:hover img {
    transform: scale(1.1);
}

.fab-login-primary:hover,
.fab-loc-primary:hover,
.fab-logo:hover {
    box-shadow: 0 8px 25px rgba(255, 237, 0, 0.6);
    background: var(--primary-hover) !important;
}

.fab-menu-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.fab-info-secondary {
    background: #fff;
    color: var(--text-main);
    width: 44px;
    height: 44px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: visible !important;
}

.fab-info-secondary:hover,
.fab-info-secondary.active {
    background: #f4f4f4;
    color: #dcb300;
    border-color: var(--primary-color);
}





.fab-dropdown-menu {
    position: absolute;
    bottom: 0;
    right: 55px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 10px 0;
    width: max-content;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.fab-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.fab-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-main);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    transition: var(--transition-fast);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.fab-dropdown-menu a i {
    color: #dcb300;
    font-size: 14px;
    width: 16px;
    text-align: center;
    opacity: 0.7;
}

.fab-dropdown-menu a:hover {
    background: #f9f9f9;
    color: #dcb300;
    padding-left: 25px;
    padding-right: 15px;
}

.fab-loc-attention {
    animation: fabLocShake 3.8s ease-in-out infinite;
}

.fab-loc-attention::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 2px solid var(--primary-yellow);
    border-radius: 999px;
    opacity: 0;
    pointer-events: none;
    animation: fabLocPulse 3.8s ease-out infinite;
}

/* Substitui os dois atributos style inline dos botões flutuantes. */
.fab-overflow-visible {
    position: relative;
    overflow: visible !important;
}

#catalogo-container.catalog-loading { opacity:.55; pointer-events:none; }
#catalogo-container .pagination { display:flex; flex-wrap:wrap; gap:6px; }
.catalog-noscript { display:grid; gap:8px; margin-bottom:12px; }
.catalog-noscript label { display:grid; gap:4px; }
.catalog-noscript select { width:100%; min-width:0; }


/* Busca por marca e modelo */
.mc-search {margin:0 0 20px;padding:16px;border:1px solid #394049;border-radius:12px;background:#171a1e;color:#fff}
.mc-search label {display:block;font-weight:700;margin-bottom:10px}
.mc-search-row {display:flex;gap:10px}
.mc-search input[type=search] {flex:1;min-width:0;width:100%;padding:12px 14px;border:1px solid #68717c;border-radius:8px;background:#fff;color:#171a1e;font-size:16px}
.mc-search button {padding:12px 20px;border:0;border-radius:8px;background:#ffdc00;color:#111;font-weight:700;cursor:pointer}
.mc-search input:focus-visible,.mc-search button:focus-visible,.mc-search a:focus-visible {outline:3px solid #5dafff;outline-offset:3px}
.mc-search-status {margin:10px 0 0;font-size:14px}.mc-search-status a {color:#ffdc00;text-decoration:underline;margin-left:8px}
@media(max-width:400px){.mc-search-row{flex-wrap:wrap}.mc-search button{width:100%}}

/* Permite continuar digitando durante a atualização dos resultados. */
#catalogo-container.catalog-loading .mc-search { pointer-events: auto; }

/* Sugestões sobrepostas, sem alterar a altura da busca. */
.mc-search{position:relative;z-index:20}
#catalogo-container{overflow-x:clip;overflow-y:visible}
.mc-search-options[hidden]{display:none}
.mc-search-options{position:absolute;top:100%;left:0;right:0;z-index:1;margin-top:6px;box-shadow:0 10px 28px rgba(0,0,0,.22);overscroll-behavior:contain;border:1px solid #68717c;border-radius:8px;max-height:min(340px,50dvh);overflow-y:auto;background:#fff}
.mc-search-options a{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 14px;color:#171a1e;text-decoration:none;border-bottom:1px solid #e4e7eb;min-height:48px}
.mc-search-options a:last-child{border-bottom:0}
.mc-search-options a:hover,.mc-search-options a[aria-selected="true"]{background:#fff4b8}
.mc-search-options small{display:block;color:#59616b;font-size:12px;margin-bottom:3px}
.mc-option-count{font-size:13px;text-align:right;flex-shrink:0;color:#424951}

/* Identificação acessível preservada, com pergunta dentro do campo. */
.mc-search .mc-search-label{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip-path:inset(50%);white-space:nowrap;border:0}
.mc-live-search-ready .mc-search button[type="submit"]{display:none}

/* Limpar dentro do campo, sem criar outra linha. */
.mc-search-field{position:relative;flex:1;min-width:0}
.mc-live-search-ready .mc-search input[type=search]{padding-right:48px}
.mc-live-search-ready .mc-search input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}
.mc-search .mc-search-clear{position:absolute;right:3px;top:50%;transform:translateY(-50%);width:40px;height:40px;padding:0;margin:0;border:0;background:transparent;color:#59616b;font-size:26px;line-height:1;border-radius:6px}
.mc-search .mc-search-clear:hover{background:#eef0f2;color:#171a1e}
.mc-search .mc-search-clear[hidden]{display:none}

/* MotoCloud — acabamento visual unificado, setembro/2026. */

.mc-search { background:#191b18; border:1px solid #30352b; border-top:4px solid #ffed00; border-radius:20px; padding:18px; box-shadow:var(--mc-shadow); }
.mc-search input[type=search] { border-radius:12px; border-color:#d7dbcf; min-height:48px; color:#252822; }
.mc-search-options { border-radius:14px; border-color:#dedfd7; box-shadow:0 16px 36px rgba(25,27,24,.15); }
.mc-search-options a:hover,.mc-search-options a[aria-selected=true] { background:#f5f5e8; }
.brand-item-card { background:#fff; border-color:#dedfd7; border-radius:16px; box-shadow:none; }
.brand-item-card:hover { border-color:#929a80; box-shadow:0 3px 12px rgba(25,27,24,.06); }
.brand-item-card.active { background:#fffde3; border-color:#ccbf00; box-shadow:inset 0 0 0 1px #ccbf00; }
.sort-select { border-radius:12px; border-color:#d5d8ce; background-color:#fff; min-height:44px; }
.card-price { color:#252822; }
.fab-logo,.fab-login-primary,.fab-loc-primary { box-shadow:0 5px 18px rgba(25,27,24,.13) !important; }
.fab-loc-attention { animation:none; }
.fab-loc-attention::after { animation:none; opacity:0; }
.fab-dropdown-menu { border-radius:16px; border-color:#dedfd7; box-shadow:0 12px 32px rgba(25,27,24,.14); }
.catalog-load-more { border-radius:12px; box-shadow:none; }


/* Título permanente da vitrine: não muda de altura ao atualizar filtros. */
#catalogo-container .mc-catalog-title {
    margin: 0 0 16px;
    padding: 0;
    color: var(--text-main, #252822);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: none;
    overflow-wrap: normal;
}
@media (max-width: 600px) {
    #catalogo-container .mc-catalog-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
}


/* Catálogo: seis controles, uma linha no desktop e duas linhas no mobile. */
#catalogo-container .catalog-controls-bar {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
    gap: 8px;
    margin: 0 0 16px;
}
#catalogo-container .catalog-controls-bar > select {
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 44px;
    height: 44px;
    padding: 10px 8px;
    border-radius: 12px;
    border-color: #d5d8ce;
    background-color: #fff;
    font-size: 12px;
    text-overflow: ellipsis;
}
.mc-catalog-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-bottom: 16px;
}
#catalogo-container .mc-catalog-heading .mc-catalog-title { margin: 0; }
.mc-catalog-heading .mc-catalog-announce {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 20px;
    border-radius: 12px;
    white-space: nowrap;
    text-transform: none;
    text-decoration: none;
}
@media (max-width: 820px) {
    #catalogo-container .catalog-controls-bar { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 400px) {
    #catalogo-container .catalog-controls-bar { gap: 6px; }
    #catalogo-container .catalog-controls-bar > select { font-size: 11px; padding: 8px 4px; }
}

/* MC: compositor-friendly catalog pulse */
@keyframes mc-catalog-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.btn-anunciar {
    animation: mc-catalog-pulse 2s infinite ease-in-out;
}

/* MC: título dinâmico responsivo */
.mc-catalog-heading .mc-catalog-title {
    flex: 1 1 0;
    min-width: 0;
}

.mc-catalog-heading .mc-catalog-announce {
    flex: 0 0 auto;
}

@keyframes mc-catalog-title-scroll {
    0%, 12% {
        transform: translateX(0);
    }

    88%, 100% {
        transform: translateX(calc(-1 * var(--mc-title-shift)));
    }
}

@media (max-width: 600px) {
    .mc-catalog-heading {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
    }

    #catalogo-container .mc-catalog-heading .mc-catalog-title {
        flex: 1 1 0;
        min-width: 0;
        margin: 0;
        overflow: hidden;
        white-space: nowrap;
        font-size: 17px;
        line-height: 1.2;
    }

    .mc-catalog-title-text {
        display: inline-block;
        white-space: nowrap;
        will-change: transform;
    }

    .mc-catalog-title.mc-title-overflow .mc-catalog-title-text {
        animation: mc-catalog-title-scroll 7s ease-in-out infinite alternate;
    }

    .mc-catalog-heading .mc-catalog-announce {
        flex: 0 0 auto;
        flex-shrink: 0;
        min-height: 40px;
        padding: 8px 14px;
        font-size: 12px;
        font-weight: 900;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mc-catalog-title.mc-title-overflow .mc-catalog-title-text {
        animation: none;
    }
}



/* ===== responsive.css ===== */
/* ======================================================================
   MOTOCLOUD - CAMADA RESPONSIVA COMPARTILHADA
   Deve ser carregada após global.css e após o módulo da página.
====================================================================== */

/* ================= MEDIA QUERIES ORIGINAIS ================= */
@media (min-width: 768px) {
    .lp-hero {
        text-align: center;
        padding-top: 40px;
    }

    .lp-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .lp-subtitle {
        max-width: 700px;
        margin: 0 auto 30px auto;
        font-size: 1.1rem;
    }

    .lp-cta-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }

    .bev-exclusive-banner {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 992px) {
    .fab-container {
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
        left: max(12px, calc((100vw - 1440px) / 2 - 68px));
        right: auto;
        gap: 14px;
    }

    .fab-logo,
    .fab-login-primary,
    .fab-loc-primary {
        width: 64px;
        height: 64px;
        font-size: 22px;
    }

    .fab-logo img {
        width: 63px;
    }

    .fab-info-secondary {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .fab-menu-wrapper .fab-dropdown-menu {
        bottom: 100%;
        margin-bottom: 15px;
        left: 0;
        right: auto;
    }
}

@media (min-width: 1024px) {
    .brand-scroll-btn {
        display: flex;
    }

    .brands-carousel-track {
        padding: 0 45px 15px 45px;
    }

    .main-wrapper {
        max-width: 1440px;
    }

    #catalogo-container {
        display: block;
        width: 100%;
        padding: 0;
    }

    #catalogo-container > .content {
        width: 100%;
    }

    .grid {
        min-height: 60vh;
        align-content: start;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        contain: layout;
        width: 100%;
    }

    .grid .card-img-box {
        height: auto;
        aspect-ratio: 4 / 3;
    }
}


@media (max-width: 1100px) {
    

    

    

    
}

@media (max-width: 820px) {
    

    

    

    
}

@media (min-width: 1200px) {
    .grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (min-width: 1480px) {
    .fab-container {
        left: max(12px, calc((100vw - 1440px) / 2 - 68px));
        right: auto;
    }
}

@media (max-width: 1024px) {
    .main-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        border: none !important;
        box-shadow: none;
    }

    .content {
        padding: 15px !important;
    }

    .detail-grid {
        display: flex !important;
        flex-direction: column;
    }

    .detail-info {
        grid-column: auto;
        margin-top: 20px;
        padding: 0 !important;
        width: 100% !important;
        background: transparent;
        border: none;
        position: static !important;
        top: auto !important;
        height: auto !important;
        box-shadow: none !important;
    }

    .desc-box {
        margin-top: 30px;
        padding-top: 20px;
    }

    .gallery-container {
        grid-column: auto;
    }

    .main-img-box {
        width: 100% !important;
        height: 280px !important;
        border-radius: 12px !important;
        border: 1px solid var(--border-color) !important;
        background: #e9e9e9 !important;
    }

    .main-img-box img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transform: scale(1.03);
    }

    .spec-grid-box {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .vehicle-title-lg {
        font-size: 24px;
    }

    .price-display-lg {
        font-size: 32px;
    }

}

@media (max-width: 768px) {
    .form-grid-3 {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .upload-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .upload-slot.main-photo {
        grid-column: span 4;
        aspect-ratio: 16/9;
    }

    .ad-form-box {
        padding: var(--space-md);
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    .logo-z-desktop {
        display: none !important;
    }

    .logo-z-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-right: 5px;
    }

    .logo-z-mobile img {
        width: 35px;
        height: auto;
    }

    .lp-seo-content,
    .lp-faq-section {
        padding: 0 var(--space-sm) var(--space-lg);
    }

    .lp-seo-content .vehicle-title-lg,
    .lp-faq-section .vehicle-title-lg {
        font-size: 1.6rem;
    }

    .lp-seo-content .desc-content {
        font-size: 15px;
        line-height: 1.7;
    }

    .cta-center .btn-submit-ad {
        max-width: 100%;
    }


    

    

    

    
}

@media (max-width: 600px) {
    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .logo {
        font-size: 50px !important;
        text-align: center;
    }

    /* Mobile: os 4 filtros permanecem na mesma linha. */
    

    

    

    

    .btn-header-painel {
        height: 36px;
        padding: 0 12px;
        font-size: 11px;
    }

    .brands-carousel-track {
        padding: 5px 5px 10px 5px !important;
    }

    .main-brands-carousel-wrapper {
        margin-bottom: 10px !important;
    }


    .sort-select {
        flex-shrink: 0;
        max-width: 140px;
        padding: 8px 10px;
        font-size: 13px;
    }

    #modal-localizacao .sort-select {
        max-width: 100%;
    }

    .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        width: 100%;
        contain: layout;
        align-content: start;
    }

    .grid article,
    .grid article a,
    .card,
    .card-body {
        min-width: 0;
    }

    .card {
        border-radius: 9px;
    }

    .card-img-box {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .card-body {
        padding: 7px;
    }

    .card-title {
        font-size: 10.5px;
        line-height: 1.15;
        height: 2.3em;
        margin-bottom: 3px;
    }

    .card-info {
        font-size: 9px;
        line-height: 1.15;
        margin-bottom: 2px;
    }

    .card-price {
        font-size: 12.5px;
        line-height: 1.1;
        margin-bottom: 4px;
        letter-spacing: -0.2px;
    }

    .card-loc {
        font-size: 7.8px;
        gap: 3px;
        padding-top: 4px;
        letter-spacing: 0;
    }

    .fab-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
        width: auto;
        pointer-events: none;
    }

    .fab-btn,
    .fab-menu-wrapper {
        pointer-events: auto;
    }

    .fab-login-primary,
    .fab-loc-primary {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }

    .fab-info-secondary {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .fab-dropdown-menu {
        right: 50px;
        bottom: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fab-loc-attention,
    .fab-loc-attention::after {
        animation: none;
    }
}

@media (max-width: 768px) {
    .lp-dark-conversion .lp-hero {
        padding: 36px 18px;
        border-radius: 0 0 24px 24px;
    }

    .lp-dark-conversion .lp-main {
        background: radial-gradient(circle at top center, rgba(255, 237, 0, 0.12), transparent 30%), linear-gradient(180deg, #0b0b0b 0%, #171717 52%, #0f0f0f 100%);
    }

    .lp-dark-conversion .lp-trust-badges {
        padding: 12px;
    }

    .lp-dark-conversion .seo-brand-links-bridge {
        border-radius: 16px;
    }

    .lp-dark-conversion .lp-escape-link {
        padding: 11px 17px;
        font-size: 16px;
    }
}

@media (min-width: 640px) {
    .pix-action-stack {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    body.pix-sell-page {
        padding: 34px 16px 32px;
        align-items: flex-start;
    }

    .pix-sell-cta {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .pix-logo {
        width: 104px;
    }

    .pix-sell-cta h1 {
        font-size: 1.30rem;
    }

    .pix-intro {
        font-size: 0.84rem;
    }

    .pix-payment-grid {
        grid-template-columns: 1fr;
    }

    .pix-announcement-card {
        padding: 16px;
    }

    .pix-action-btn {
        font-size: 0.76rem;
    }
}

@media (max-width: 380px) {
    .content {
        padding: 4px !important;
    }
    

    

    

    .filter-group {
        margin-bottom: 8px;
    }

    .filter-label {
        font-size: 9.5px;
        margin-bottom: 4px;
        letter-spacing: .3px;
    }

    .tags-container {
        gap: 3px;
    }

    .tag {
        font-size: 9.5px;
        padding: 5px 6px;
        border-radius: 6px;
    }


    .main-brands-carousel-wrapper {
        margin-bottom: 12px;
    }

    .brands-carousel-track {
        gap: 5px;
        padding: 8px 0 10px;
    }

    .brand-item-card {
        flex: 0 0 58px;
        min-width: 58px;
        height: 58px;
        border-radius: 10px;
    }

    .brand-logo-img {
        width: 45px;
        height: 45px;
    }

    .brand-name-text {
        font-size: 7.5px;
        letter-spacing: 0;
        padding: 0 2px;
    }

    .brand-badge-count {
        top: 2px;
        right: 2px;
        font-size: 7.5px;
        padding: 1px 4px;
    }

    .content-header-flex {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 7px;
    }

    .sort-select {
        width: 100%;
        max-width: 100%;
        font-size: 11px;
        padding: 7px 8px;
        border-radius: 7px;
    }

    .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 5px;
    }

    .card {
        border-radius: 8px;
    }

    .card-img-box {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .card-body {
        padding: 5px;
    }

    .card-title {
        font-size: 9.2px;
        line-height: 1.12;
        height: 2.24em;
        margin-bottom: 2px;
    }

    .card-info {
        font-size: 8px;
        line-height: 1.12;
        margin-bottom: 2px;
    }

    .card-price {
        font-size: 10.8px;
        line-height: 1.08;
        margin-bottom: 3px;
        letter-spacing: -0.2px;
    }

    .card-loc {
        font-size: 6.8px;
        gap: 2px;
        padding-top: 3px;
        letter-spacing: 0;
    }

    .fab-container {
        right: 5px !important;
        bottom: 12px !important;
        gap: 6px !important;
        transform: scale(.92);
        transform-origin: bottom right;
    }

    .fab-logo,
    .fab-login-primary,
    .fab-loc-primary {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        font-size: 16px !important;
        border-width: 2px !important;
    }

    .fab-logo img {
        width: 41px !important;
    }

    .fab-info-secondary {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        font-size: 12px !important;
    }

    

    .fab-dropdown-menu {
        right: 40px;
    }

    .fab-loc-badge {
        top: -8px;
        right: -8px;
        font-size: 8px;
        padding: 2px 4px;
    }
}

@media (max-width: 480px) {
    .detail-page-body .content {
        padding: 4px !important;
    }

    .detail-page-body .nav-back-wrapper {
        gap: 8px;
        margin-bottom: 8px;
    }

    .detail-page-body .logo-back-img {
        height: 42px;
    }

    .detail-page-body .btn-floating-back {
        padding: 8px 12px;
        font-size: 9.5px;
        gap: 6px;
    }

    .detail-page-body .detail-grid {
        gap: 10px;
        margin-top: 8px;
    }

    .detail-page-body .gallery-container {
        width: 100%;
    }

    .detail-page-body .main-img-box {
        height: 210px !important;
        border-radius: 10px !important;
    }

    .detail-page-body .main-img-box img,
    .detail-page-body .view-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transform: none !important;
    }

    .detail-page-body .zoom-hint {
        bottom: 8px;
        right: 8px;
        padding: 6px 10px;
        font-size: 8.5px;
        gap: 5px;
    }

    .detail-page-body .thumbs-container {
        gap: 6px !important;
        margin-top: 8px;
    }

    .detail-page-body .thumb-item {
        height: 52px;
        border-radius: 7px;
    }

    .detail-page-body .detail-info {
        margin-top: 8px !important;
        padding: 0 !important;
    }

    .detail-page-body .badges-row {
        gap: 5px;
        margin-bottom: 8px;
        flex-wrap: wrap;
    }

    .detail-page-body .badge-id,
    .detail-page-body .badge-type {
        font-size: 8px;
        padding: 3px 6px;
        border-radius: 3px;
    }

    .detail-page-body .vehicle-title-lg {
        font-size: 18px !important;
        line-height: 1.12;
        margin-bottom: 5px;
        letter-spacing: -0.4px;
    }

    .detail-page-body .location-text-lg {
        font-size: 10px;
        margin-bottom: 8px;
        line-height: 1.25;
    }

    .detail-page-body .price-display-lg {
        font-size: 24px !important;
        line-height: 1.05;
        margin: 10px 0;
        letter-spacing: -0.8px;
    }

    .detail-page-body .motocloud-urgency-badge {
        padding: 7px 8px;
        font-size: 10px;
        gap: 6px;
        margin-top: 8px;
        border-radius: 7px;
    }

    .detail-page-body .btn-whatsapp-lg {
        padding: 13px 10px;
        font-size: 12px;
        gap: 8px;
        border-radius: 10px;
    }

    .detail-page-body .fipe-reference-box {
        padding: 9px;
        margin-top: 14px;
        margin-bottom: 12px;
        border-radius: 7px;
    }

    .detail-page-body .fipe-label {
        font-size: 9px;
    }

    .detail-page-body .fipe-date {
        font-size: 8.5px;
    }

    .detail-page-body .fipe-value-display,
    .detail-page-body #fipe-loader-box {
        font-size: 14px;
    }

    .detail-page-body .spec-grid-box {
        gap: 6px;
        margin: 12px 0;
    }

    .detail-page-body .spec-item {
        padding: 8px 7px;
        border-radius: 7px;
    }

    .detail-page-body .spec-label {
        font-size: 7.5px;
        letter-spacing: .4px;
        margin-bottom: 3px;
    }

    .detail-page-body .spec-value {
        font-size: 11px;
        line-height: 1.2;
    }

    .detail-page-body .soh-header-flex {
        margin-bottom: 6px;
    }

    .detail-page-body .soh-header-flex .spec-label {
        font-size: 8.5px;
    }

    .detail-page-body .soh-header-flex .spec-value {
        font-size: 14px;
    }

    .detail-page-body .soh-progress-bg {
        height: 6px;
    }

    .detail-page-body .seller-box-detail {
        padding: 10px;
        margin: 12px 0;
        border-radius: 9px;
    }

    .detail-page-body .seller-header-flex {
        gap: 10px;
    }

    .detail-page-body .seller-avatar-circle.avatar-lg {
        width: 44px;
        height: 44px;
    }

    .detail-page-body .seller-name-lg {
        font-size: 13px;
    }

    .detail-page-body .seller-since-sm {
        font-size: 9px;
    }

    .detail-page-body .safety-tips-box {
        padding: 10px;
        margin-top: 12px;
        border-radius: 9px;
    }

    .detail-page-body .safety-tips-title,
    .detail-page-body .danger-title {
        font-size: 11px;
        margin-bottom: 7px;
    }

    .detail-page-body .safety-tips-alert,
    .detail-page-body .danger-desc,
    .detail-page-body .safety-tips-list {
        font-size: 10px;
        line-height: 1.45;
    }

    .detail-page-body .desc-box {
        margin-top: 16px;
        padding-top: 12px;
    }

    .detail-page-body .desc-title-yellow {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .detail-page-body .desc-content {
        font-size: 12.5px;
        line-height: 1.55;
    }
}





@media (max-width: 480px) {
    .detail-page-body .admin-box.notice {
        margin-top: 12px;
    }
}

/* Catálogo 44: uma linha de controles em todas as larguras. */




@media (min-width: 992px) {
    
    .fab-container { left: max(12px, calc((100vw - 1440px) / 2 - 68px)); right:auto; max-width:calc(100vw - 24px); }
}
@media (max-width: 600px) {
    
    
}
@media (max-width: 380px) {
    
    
}

/* MotoCloud — acabamento visual unificado, setembro/2026. */

@media (max-width:600px) {
  .mc-search { padding:12px; border-radius:16px; }
  .mc-search input[type=search] { font-size:16px; }
  .ad-form-box,.edit-wrapper { border-radius:18px; }
  .detail-info,.desc-box,.seller-box-detail { border-radius:18px; }
  .lp-dark-conversion .lp-title { letter-spacing:-.6px; }
  .login-sell-cta { padding:26px 18px; }
}
@media (prefers-reduced-motion:reduce) {
  html,body { scroll-behavior:auto; }
  .card,.card-img,.ad-card-painel,.btn-submit-ad,.brand-item-card { transition:none; }
  .card,.badge-type,.sidebar-sell-cta,.fab-loc-attention { animation:none; }
}

