/* ======================================================================
   ZVOLTS - 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 pulse-live {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3.5); opacity: 0; }
}
@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 zvolts-live-dot-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.12), 0 0 0 0 rgba(0, 75, 34, 0.35); }
  55% { transform: scale(1.08); box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.16), 0 0 0 9px rgba(0, 75, 34, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.12), 0 0 0 0 rgba(0, 75, 34, 0); }
}
@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: 1300px;
    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-track:hover {
    animation-play-state: paused;
}

.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: none !important;
}

.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);
}

.input-gold-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;
}
