@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg: #0f0f0f;
  --bg2: #1a1a1a;
  --bg3: #242424;
  --border: #2e2e2e;
  --text: #f0f0f0;
  --text2: #a0a0a0;
  --orange: #FF6B00;
  --orange-light: #FF8C33;
  --orange-dark: #cc5500;
  --white: #ffffff;
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* ======= SCROLLBAR ======= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ======= NAVBAR ======= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.navbar-brand span { font-size: 1.2rem; font-weight: 800; color: var(--white); }
.navbar-brand span em { color: var(--orange); font-style: normal; }
.navbar-logo { height: 42px; width: auto; object-fit: contain; }
.navbar-nav { display: flex; gap: 0.25rem; list-style: none; }
.navbar-nav a {
  display: block; padding: 0.5rem 1rem; color: var(--text2);
  text-decoration: none; border-radius: 8px; font-size: 0.9rem; font-weight: 500;
  transition: all 0.2s;
}
.navbar-nav a:hover, .navbar-nav a.active { color: var(--white); background: var(--bg3); }
.navbar-cta { background: var(--orange) !important; color: var(--white) !important; }
.navbar-cta:hover { background: var(--orange-light) !important; }

/* ======= HERO ======= */
.hero {
  padding-top: 70px;
  min-height: 100vh;
  display: flex; align-items: center;
  background: radial-gradient(ellipse at 60% 50%, rgba(255,107,0,0.08) 0%, transparent 70%),
              radial-gradient(ellipse at 10% 80%, rgba(255,107,0,0.05) 0%, transparent 50%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF6B00' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.3); color: var(--orange); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; }
.hero h1 .highlight { color: var(--orange); }
.hero p { font-size: 1.1rem; color: var(--text2); margin-bottom: 2.5rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-logo-big { width: 380px; max-width: 100%; position: relative; z-index: 1; filter: drop-shadow(0 0 60px rgba(255,107,0,0.35)); animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

/* ======= WHATSAPP ======= */
.whatsapp-float-inline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: #fff; font-weight: 600; font-size: 0.9rem;
  padding: 0.65rem 1.25rem; border-radius: 50px; text-decoration: none;
  margin-top: 1.25rem; transition: all 0.25s; width: fit-content;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.whatsapp-float-inline:hover { background: #1fb558; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
.footer-whatsapp {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(37,211,102,0.12); color: #25D366; font-weight: 600; font-size: 0.9rem;
  padding: 0.5rem 1rem; border-radius: 50px; text-decoration: none;
  border: 1px solid rgba(37,211,102,0.3); transition: all 0.2s; margin-top: 0.75rem;
}
.footer-whatsapp:hover { background: rgba(37,211,102,0.2); }

/* ======= STATS BAR ======= */
.stats-bar { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2rem; }
.stats-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--orange); }
.stat-label { font-size: 0.85rem; color: var(--text2); margin-top: 0.25rem; }

/* ======= SECTIONS ======= */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag { display: inline-block; background: rgba(255,107,0,0.1); color: var(--orange); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; padding: 0.35rem 0.9rem; border-radius: 20px; border: 1px solid rgba(255,107,0,0.2); margin-bottom: 1rem; text-transform: uppercase; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 1rem; }
.section-sub { color: var(--text2); font-size: 1rem; max-width: 540px; }

/* ======= CATALOG / CARDS ======= */
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.moto-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all 0.3s; position: relative;
}
.moto-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(255,107,0,0.15); }
.moto-card-img {
  height: 180px; background: linear-gradient(135deg, #1a1a1a, #242424);
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.moto-card-img img { width: 100%; height: 100%; object-fit: cover; }
.moto-card-img .moto-icon { font-size: 5rem; opacity: 0.15; }
.moto-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--success); color: white; font-size: 0.7rem; font-weight: 700;
  padding: 0.2rem 0.6rem; border-radius: 20px; text-transform: uppercase;
}
.moto-badge.alugada { background: var(--danger); }
.moto-badge.manutencao { background: var(--warning); color: #000; }
.moto-card-body { padding: 1.25rem; }
.moto-marca { font-size: 0.7rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; }
.moto-nome { font-size: 1.15rem; font-weight: 700; margin: 0.25rem 0 0.75rem; }
.moto-desc { font-size: 0.85rem; color: var(--text2); margin-bottom: 1rem; line-height: 1.5; }
.moto-prices { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.price-tag { background: var(--bg3); border-radius: 6px; padding: 0.35rem 0.7rem; font-size: 0.78rem; }
.price-tag span { color: var(--orange); font-weight: 700; }

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.5rem; border-radius: 8px; font-size: 0.9rem; font-weight: 600;
  border: none; cursor: pointer; text-decoration: none; transition: all 0.2s; font-family: inherit;
}
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-ghost { background: transparent; color: var(--text2); }
.btn-ghost:hover { color: var(--white); }
.btn-danger { background: var(--danger); color: white; }
.btn-success { background: var(--success); color: white; }
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.8rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ======= FEATURES ======= */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.feature-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; transition: border-color 0.2s; }
.feature-card:hover { border-color: var(--orange); }
.feature-icon { width: 48px; height: 48px; background: rgba(255,107,0,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.875rem; color: var(--text2); line-height: 1.6; }

/* ======= HOW IT WORKS ======= */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; position: relative; }
.step { text-align: center; }
.step-num { width: 60px; height: 60px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 900; margin: 0 auto 1rem; color: white; }
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p { font-size: 0.875rem; color: var(--text2); }

/* ======= SOLICITACAO FORM ======= */
.form-section { background: var(--bg2); border-top: 1px solid var(--border); }
.form-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; max-width: 600px; margin: 3rem auto 0; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text2); }
.form-control {
  width: 100%; background: var(--bg2); border: 1px solid var(--border); border-radius: 8px;
  padding: 0.75rem 1rem; color: var(--text); font-size: 0.9rem; font-family: inherit;
  transition: border-color 0.2s;
}
.form-control:focus { outline: none; border-color: var(--orange); }
.form-control::placeholder { color: #555; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.file-upload { border: 2px dashed var(--border); border-radius: 8px; padding: 1.5rem; text-align: center; cursor: pointer; transition: all 0.2s; }
.file-upload:hover { border-color: var(--orange); background: rgba(255,107,0,0.05); }
.file-upload input { display: none; }
.file-upload p { color: var(--text2); font-size: 0.85rem; margin-top: 0.5rem; }
.form-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: var(--success); border-radius: 8px; padding: 1rem; text-align: center; display: none; }

/* ======= FOOTER ======= */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 3rem 2rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand p { color: var(--text2); font-size: 0.875rem; margin-top: 0.75rem; max-width: 280px; line-height: 1.6; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--text2); text-decoration: none; font-size: 0.875rem; padding: 0.2rem 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--text2); font-size: 0.8rem; }

/* ======= PDV LAYOUT ======= */
.pdv-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.pdv-sidebar {
  background: var(--bg2); border-right: 1px solid var(--border);
  padding: 0; position: fixed; left: 0; top: 0; bottom: 0; width: 240px; z-index: 100;
  display: flex; flex-direction: column;
}
.pdv-sidebar-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); }
.pdv-sidebar-header h2 { font-size: 0.9rem; font-weight: 800; color: var(--white); }
.pdv-sidebar-header p { font-size: 0.75rem; color: var(--orange); }
.pdv-nav { padding: 1rem 0; flex: 1; overflow-y: auto; }
.pdv-nav-label { font-size: 0.65rem; font-weight: 700; color: #555; text-transform: uppercase; letter-spacing: 0.12em; padding: 0.75rem 1.5rem 0.25rem; }
.pdv-nav a {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 1.5rem;
  color: var(--text2); text-decoration: none; font-size: 0.875rem; font-weight: 500;
  border-left: 3px solid transparent; transition: all 0.2s;
}
.pdv-nav a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.pdv-nav a.active { color: var(--white); background: rgba(255,107,0,0.08); border-left-color: var(--orange); }
.pdv-nav a .nav-icon { font-size: 1.1rem; width: 20px; text-align: center; }
.pdv-nav a .badge { margin-left: auto; background: var(--orange); color: white; font-size: 0.65rem; font-weight: 700; padding: 0.15rem 0.45rem; border-radius: 10px; }
.pdv-sidebar-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--border); }
.pdv-user-info { display: flex; align-items: center; gap: 0.75rem; }
.pdv-user-avatar { width: 34px; height: 34px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; color: white; flex-shrink: 0; }
.pdv-user-name { font-size: 0.8rem; font-weight: 600; }
.pdv-user-role { font-size: 0.7rem; color: var(--text2); }
.pdv-main { margin-left: 240px; padding: 2rem; min-height: 100vh; }
.pdv-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.pdv-topbar h1 { font-size: 1.4rem; font-weight: 800; }
.pdv-topbar p { color: var(--text2); font-size: 0.875rem; }

/* ======= DASHBOARD CARDS ======= */
.dash-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.dash-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.dash-card.orange { border-color: rgba(255,107,0,0.3); background: rgba(255,107,0,0.05); }
.dash-card.success { border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.05); }
.dash-card.danger { border-color: rgba(239,68,68,0.3); background: rgba(239,68,68,0.05); }
.dash-card.warning { border-color: rgba(245,158,11,0.3); background: rgba(245,158,11,0.05); }
.dash-card.info { border-color: rgba(59,130,246,0.3); background: rgba(59,130,246,0.05); }
.dash-card-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.dash-card-num { font-size: 2rem; font-weight: 800; line-height: 1; }
.dash-card.orange .dash-card-num { color: var(--orange); }
.dash-card.success .dash-card-num { color: var(--success); }
.dash-card.danger .dash-card-num { color: var(--danger); }
.dash-card.warning .dash-card-num { color: var(--warning); }
.dash-card.info .dash-card-num { color: var(--info); }
.dash-card-label { font-size: 0.8rem; color: var(--text2); margin-top: 0.25rem; }

/* ======= QUICK ACTIONS ======= */
.quick-actions { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.quick-btn { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; text-align: center; cursor: pointer; transition: all 0.2s; text-decoration: none; color: var(--text); }
.quick-btn:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.quick-btn-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.quick-btn-label { font-size: 0.8rem; font-weight: 600; }

/* ======= TABLE ======= */
.table-container { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.table-header { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.table-header h3 { font-size: 1rem; font-weight: 700; }
table { width: 100%; border-collapse: collapse; }
th { background: var(--bg3); padding: 0.75rem 1rem; text-align: left; font-size: 0.78rem; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
td { padding: 0.875rem 1rem; font-size: 0.875rem; border-top: 1px solid var(--border); }
tr:hover td { background: rgba(255,255,255,0.02); }
.status-pill { display: inline-block; padding: 0.2rem 0.65rem; border-radius: 20px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; }
.status-ativo, .status-disponivel, .status-pago { background: rgba(34,197,94,0.1); color: var(--success); }
.status-alugada { background: rgba(59,130,246,0.1); color: var(--info); }
.status-inadimplente, .status-atrasado { background: rgba(239,68,68,0.1); color: var(--danger); }
.status-manutencao, .status-pendente { background: rgba(245,158,11,0.1); color: var(--warning); }
.status-encerrado, .status-inativo, .status-cancelado { background: rgba(160,160,160,0.1); color: var(--text2); }

/* ======= MODAL ======= */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; visibility: hidden; transition: all 0.2s; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; width: 100%; max-width: 640px; max-height: 90vh; overflow-y: auto; }
.modal-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; background: var(--bg2); z-index: 1; }
.modal-header h2 { font-size: 1.1rem; font-weight: 700; }
.modal-close { background: none; border: none; color: var(--text2); cursor: pointer; font-size: 1.5rem; line-height: 1; padding: 0.25rem; transition: color 0.2s; }
.modal-close:hover { color: var(--danger); }
.modal-body { padding: 1.5rem; }
.modal-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 0.75rem; }

/* ======= LOGIN PAGE ======= */
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem;
  background: radial-gradient(ellipse at center, rgba(255,107,0,0.06) 0%, transparent 70%); }
.login-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; width: 100%; max-width: 400px; padding: 2.5rem; }
.login-logo { text-align: center; margin-bottom: 2rem; }
.login-logo img { width: 80px; height: 80px; border-radius: 12px; }
.login-logo h1 { font-size: 1.3rem; font-weight: 800; margin-top: 0.75rem; }
.login-logo p { font-size: 0.85rem; color: var(--text2); margin-top: 0.25rem; }
.form-error { color: var(--danger); font-size: 0.8rem; margin-top: 1rem; text-align: center; display: none; }

/* ======= MISC ======= */
.page-section { display: none; }
.page-section.active { display: block; }
.search-bar { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.search-input { flex: 1; }
.divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.text-orange { color: var(--orange); }
.text-muted { color: var(--text2); }
.fw-bold { font-weight: 700; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.flex { display: flex; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text2); }
.empty-state-icon { font-size: 3rem; margin-bottom: 1rem; }
.spinner { display: inline-block; width: 20px; height: 20px; border: 2px solid rgba(255,107,0,0.3); border-top-color: var(--orange); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to{transform:rotate(360deg)} }
.toast { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999; background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.25rem; box-shadow: var(--shadow); font-size: 0.875rem; transform: translateY(100px); opacity: 0; transition: all 0.3s; max-width: 320px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid var(--success); }
.toast.error { border-left: 4px solid var(--danger); }
.toast.info { border-left: 4px solid var(--info); }

/* ======= WHATSAPP FLOATING BUTTON ======= */
.whatsapp-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9000;
  display: flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: #fff; font-weight: 700; font-size: 0.9rem;
  padding: 0.85rem 1.4rem; border-radius: 50px; text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5); transition: all 0.25s;
  animation: fab-pulse 2.5s ease-in-out infinite;
}
.whatsapp-fab:hover { background: #1fb558; transform: scale(1.05); box-shadow: 0 6px 32px rgba(37,211,102,0.6); animation: none; }
@keyframes fab-pulse { 0%,100%{box-shadow:0 4px 24px rgba(37,211,102,0.5)} 50%{box-shadow:0 4px 36px rgba(37,211,102,0.75)} }

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { order: -1; }
  .hero-logo-big { width: 220px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pdv-sidebar { display: none; }
  .pdv-main { margin-left: 0; padding: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .navbar-nav { display: none; }
  .whatsapp-fab span.fab-label { display: none; }
  .whatsapp-fab { padding: 1rem; border-radius: 50%; }
}
