/* ===== RESET & VARIÁVEIS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --laranja: #E8640A;
  --laranja-escuro: #C4520A;
  --amarelo: #F5A623;
  --cinza-escuro: #2D2D2D;
  --cinza-medio: #555;
  --cinza-claro: #F5F5F5;
  --branco: #FFFFFF;
  --sombra: 0 4px 20px rgba(0,0,0,0.12);
  --sombra-hover: 0 8px 30px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-sm: 8px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--cinza-escuro);
  background: var(--cinza-claro);
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ===== HEADER ===== */
header {
  background: var(--cinza-escuro);
  color: var(--branco);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--sombra);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--branco);
  white-space: nowrap;
}

.logo span { color: var(--laranja); }
.logo-icon { font-size: 1.8rem; }

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: #ccc;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--branco); background: rgba(255,255,255,0.1); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  transition: all .2s;
  white-space: nowrap;
}

.btn-primary { background: var(--laranja); color: var(--branco); }
.btn-primary:hover { background: var(--laranja-escuro); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--branco); border: 2px solid rgba(255,255,255,0.4); }
.btn-secondary:hover { border-color: var(--branco); background: rgba(255,255,255,0.1); }
.btn-outline { background: transparent; color: var(--laranja); border: 2px solid var(--laranja); }
.btn-outline:hover { background: var(--laranja); color: var(--branco); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-sm { padding: 7px 14px; font-size: 0.82rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--cinza-escuro) 0%, #1a1a2e 60%, #16213e 100%);
  color: var(--branco);
  padding: 80px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 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='%23ffffff' 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 { position: relative; max-width: 700px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  background: rgba(232,100,10,0.2);
  color: var(--amarelo);
  border: 1px solid rgba(232,100,10,0.4);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero h1 em { color: var(--laranja); font-style: normal; }

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-search {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 8px 8px 8px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--sombra);
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--cinza-escuro);
  background: transparent;
  padding: 4px 0;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--amarelo); }
.stat span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

/* ===== QUADROS CENTRAIS ===== */
.servicos-section {
  max-width: 1200px;
  margin: -50px auto 0;
  padding: 0 20px 60px;
  position: relative;
  z-index: 10;
}

.section-title {
  text-align: center;
  margin: 50px 0 30px;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--cinza-escuro);
}

.section-title span { color: var(--laranja); }

.servicos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.servicos-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.servico-card-destaque {
  border-color: #2ecc71 !important;
  background: linear-gradient(160deg, #fff, #f0fff6);
}

.servico-card-destaque:hover {
  border-color: #1a6b3c !important;
  box-shadow: 0 8px 30px rgba(46,204,113,0.2) !important;
}

.badge-laranja {
  background: #e8f5e9 !important;
  color: #1a6b3c !important;
  border: 1px solid #a5d6a7 !important;
}

.servico-card {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--sombra);
  border: 3px solid transparent;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(232,100,10,0.04));
  opacity: 0;
  transition: opacity .3s;
}

.servico-card:hover {
  border-color: var(--laranja);
  transform: translateY(-4px);
  box-shadow: var(--sombra-hover);
}

.servico-card:hover::before { opacity: 1; }

.servico-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  display: block;
}

.servico-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--cinza-escuro);
}

.servico-card p {
  color: var(--cinza-medio);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.servico-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--cinza-claro);
  color: var(--cinza-medio);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ===== COMO FUNCIONA ===== */
.como-funciona {
  background: var(--branco);
  padding: 60px 20px;
}

.como-funciona-inner { max-width: 1000px; margin: 0 auto; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.step {
  text-align: center;
  padding: 24px 16px;
}

.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--laranja), var(--amarelo));
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(232,100,10,0.35);
}

.step h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--cinza-medio); line-height: 1.6; }

/* ===== LISTA DE PROFISSIONAIS ===== */
.page-wrapper { max-width: 1200px; margin: 0 auto; padding: 30px 20px 60px; }

.page-header {
  background: linear-gradient(135deg, var(--cinza-escuro), #1a1a2e);
  color: var(--branco);
  padding: 40px 20px;
  margin-bottom: 0;
}

.page-header-inner { max-width: 1200px; margin: 0 auto; }
.page-header h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 6px; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.tipo-badge {
  display: inline-block;
  background: var(--laranja);
  color: var(--branco);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.filtros-bar {
  background: var(--branco);
  padding: 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--sombra);
  margin-bottom: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.filtro-grupo { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 160px; }
.filtro-grupo label { font-size: 0.78rem; font-weight: 600; color: var(--cinza-medio); text-transform: uppercase; letter-spacing: 0.5px; }

.filtro-grupo input,
.filtro-grupo select {
  border: 2px solid #E0E0E0;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--cinza-escuro);
  outline: none;
  transition: border-color .2s;
  background: var(--branco);
}

.filtro-grupo input:focus,
.filtro-grupo select:focus { border-color: var(--laranja); }

.profissionais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.prof-card {
  background: var(--branco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: all .3s;
  border: 2px solid transparent;
}

.prof-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-hover); border-color: var(--laranja); }

.prof-card-header {
  background: linear-gradient(135deg, var(--laranja), var(--amarelo));
  padding: 24px 20px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.prof-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--branco);
  flex-shrink: 0;
  overflow: hidden;
}

.prof-avatar img { width: 100%; height: 100%; object-fit: cover; }

.prof-info-header { flex: 1; }
.prof-info-header h3 { font-size: 1.05rem; font-weight: 700; color: var(--branco); margin-bottom: 3px; }
.prof-categoria {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  color: var(--branco);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.prof-card-body { padding: 18px 20px; }

.prof-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cinza-medio);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.prof-detail .icon { font-size: 0.95rem; }
.prof-bio { font-size: 0.85rem; color: var(--cinza-medio); line-height: 1.55; margin: 12px 0; }

.prof-dias {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 10px 0 14px;
}

.dia-tag {
  background: #FFF3E8;
  color: var(--laranja);
  border: 1px solid #FFD0A8;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}

.prof-card-footer {
  padding: 14px 20px;
  border-top: 1px solid #F0F0F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prof-valor {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--laranja);
}

.prof-valor span { font-size: 0.75rem; font-weight: 400; color: var(--cinza-medio); }

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--cinza-medio);
  grid-column: 1/-1;
}

.empty-state .emoji { font-size: 3rem; margin-bottom: 16px; display: block; }
.empty-state h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--cinza-escuro); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
  background: var(--branco);
  border-radius: var(--radius);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: scale(0.95);
  transition: transform .3s;
}

.modal-overlay.active .modal { transform: scale(1); }

.modal-header {
  background: linear-gradient(135deg, var(--cinza-escuro), #1a1a2e);
  color: var(--branco);
  padding: 24px 28px;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h2 { font-size: 1.2rem; font-weight: 700; }
.modal-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  padding: 4px;
  line-height: 1;
  transition: color .2s;
}
.modal-close:hover { color: var(--branco); }

.modal-body { padding: 28px; }

.modal-tabs {
  display: flex;
  background: var(--cinza-claro);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 24px;
  gap: 4px;
}

.modal-tab {
  flex: 1;
  padding: 10px;
  background: transparent;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cinza-medio);
  transition: all .2s;
  text-align: center;
}

.modal-tab.active { background: var(--branco); color: var(--laranja); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== FORMULÁRIOS ===== */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--cinza-medio); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.4px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 2px solid #E0E0E0;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--cinza-escuro);
  outline: none;
  transition: border-color .2s;
  font-family: inherit;
  background: var(--branco);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--laranja); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-file {
  border: 2px dashed #E0E0E0;
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  color: var(--cinza-medio);
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.form-file:hover { border-color: var(--laranja); background: #FFF3E8; }
.form-file input { display: none; }
.form-file .file-icon { font-size: 1.5rem; margin-bottom: 6px; display: block; }

.disponibilidade-grid {
  display: grid;
  gap: 8px;
}

.disp-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 8px;
  align-items: center;
  background: var(--cinza-claro);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.disp-row label { font-size: 0.85rem; font-weight: 600; }
.disp-row input[type="time"] {
  width: 110px;
  border: 2px solid #E0E0E0;
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 0.85rem;
}

.disp-check { width: 18px; height: 18px; accent-color: var(--laranja); cursor: pointer; }

.msg-success, .msg-error {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: none;
}
.msg-success { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.msg-error { background: #FEEBEE; color: #C62828; border: 1px solid #EF9A9A; }
.msg-success.show, .msg-error.show { display: block; }

/* ===== PERFIL MODAL ===== */
.perfil-header {
  background: linear-gradient(135deg, var(--laranja), var(--amarelo));
  padding: 30px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.perfil-avatar-lg {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--branco);
  flex-shrink: 0;
}

.perfil-nome { color: var(--branco); }
.perfil-nome h2 { font-size: 1.4rem; font-weight: 800; }
.perfil-nome .cat { opacity: 0.85; font-size: 0.9rem; }
.perfil-body { padding: 24px 28px; }
.perfil-section { margin-bottom: 22px; }
.perfil-section h4 { font-size: 0.78rem; font-weight: 700; color: var(--cinza-medio); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.perfil-section p { font-size: 0.9rem; line-height: 1.65; color: var(--cinza-escuro); }

.contato-form { background: var(--cinza-claro); padding: 20px; border-radius: var(--radius-sm); }

/* ===== CHAT ===== */
.modal-chat-modal {
  max-width: 480px;
  height: 85vh;
  max-height: 700px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--cinza-escuro), #1a1a2e);
  color: var(--branco);
  flex-shrink: 0;
}

.chat-header-info { display: flex; align-items: center; gap: 12px; }

.chat-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--laranja);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; color: var(--branco);
  flex-shrink: 0;
}

.chat-nome { font-weight: 700; font-size: 1rem; }
.chat-sub { font-size: .78rem; opacity: .7; margin-top: 1px; }

.chat-mensagens {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f5f5f5;
}

.chat-loading { text-align: center; padding: 40px; color: #999; }

.chat-balao {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: .9rem;
  line-height: 1.5;
  word-break: break-word;
  position: relative;
}

.chat-balao.eu {
  align-self: flex-end;
  background: var(--laranja);
  color: var(--branco);
  border-bottom-right-radius: 4px;
}

.chat-balao.outro {
  align-self: flex-start;
  background: var(--branco);
  color: var(--cinza-escuro);
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.chat-balao-nome {
  font-size: .7rem;
  font-weight: 700;
  opacity: .7;
  margin-bottom: 3px;
}

.chat-balao-hora {
  font-size: .65rem;
  opacity: .6;
  text-align: right;
  margin-top: 4px;
}

.chat-digitando {
  padding: 6px 16px;
  font-size: .78rem;
  color: #999;
  font-style: italic;
  background: #f5f5f5;
  flex-shrink: 0;
}

.chat-input-area {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 12px 16px;
  background: var(--branco);
  border-top: 1px solid #eee;
  flex-shrink: 0;
}

.chat-input-area textarea {
  flex: 1;
  border: 2px solid #E0E0E0;
  border-radius: 20px;
  padding: 10px 16px;
  font-size: .9rem;
  resize: none;
  outline: none;
  max-height: 100px;
  font-family: inherit;
  line-height: 1.4;
  transition: border-color .2s;
}

.chat-input-area textarea:focus { border-color: var(--laranja); }

.chat-send-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--laranja);
  color: var(--branco);
  border: none;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .1s;
}

.chat-send-btn:hover { background: var(--laranja-escuro); transform: scale(1.05); }

.chat-vazio {
  text-align: center;
  padding: 40px 20px;
  color: #aaa;
  font-size: .88rem;
}

.chat-vazio .chat-vazio-icon { font-size: 2.5rem; margin-bottom: 10px; }

/* Lista de conversas */
.conv-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background .15s;
}

.conv-item:hover { background: #fafafa; }
.conv-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--laranja); color: var(--branco); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; flex-shrink: 0; }
.conv-info { flex: 1; min-width: 0; }
.conv-nome { font-weight: 700; font-size: .95rem; }
.conv-ultima { font-size: .8rem; color: #999; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Botão negociar nos cards */
.btn-negociar {
  background: linear-gradient(135deg, var(--laranja), var(--amarelo));
  color: var(--branco);
  border: none;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  display: flex; align-items: center; gap: 6px;
}

.btn-negociar:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,100,10,0.35); }
.btn-negociar-verde { background: linear-gradient(135deg, #1a6b3c, #2ecc71) !important; }
.btn-negociar-verde:hover { box-shadow: 0 4px 12px rgba(46,204,113,0.35) !important; }

.preco-tag {
  display: inline-block;
  background: #FFF3E8;
  color: var(--laranja);
  border: 1px solid #FFD0A8;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
}

.preco-tag-verde {
  background: #e8f5e9;
  color: #1a6b3c;
  border-color: #a5d6a7;
}

@media (max-width: 768px) {
  .modal-chat-modal { height: 100vh; max-height: 100vh; border-radius: 0; max-width: 100%; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--cinza-escuro);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 30px 20px;
  font-size: 0.85rem;
}

footer strong { color: var(--laranja); }

/* ===== LOADING ===== */
.loading {
  display: none;
  text-align: center;
  padding: 60px;
  color: var(--cinza-medio);
  grid-column: 1/-1;
}
.loading.show { display: block; }
.spinner {
  width: 40px; height: 40px;
  border: 4px solid #E0E0E0;
  border-top-color: var(--laranja);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 0 auto 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-inner { height: auto; padding: 12px 16px; flex-wrap: wrap; }
  .logo { font-size: 1.2rem; }
  nav { gap: 4px; }
  .nav-link { display: none; }

  .hero { padding: 50px 16px 80px; }
  .hero-stats { gap: 20px; }

  .servicos-grid, .servicos-grid-3 { grid-template-columns: 1fr; }
  .servico-card { padding: 28px 20px; }

  .profissionais-grid { grid-template-columns: 1fr; }

  .filtros-bar { flex-direction: column; }
  .filtro-grupo { min-width: auto; width: 100%; }

  .form-row { grid-template-columns: 1fr; }
  .modal { max-height: 95vh; }
  .modal-body { padding: 20px; }

  .disp-row { grid-template-columns: 1fr auto; }
  .disp-row .time-label { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero-search { padding: 6px 6px 6px 14px; }
  .hero-search input { font-size: 0.9rem; }
  .btn-lg { padding: 11px 20px; font-size: 0.9rem; }
}
