/* Google Fonts - Inter para visual moderno 2026 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   LANNET BAHIA - Sistema de Atendimento
   Design Moderno 2026 - Clean & Fast
   ============================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: linear-gradient(135deg, #f8faff 0%, #e8f4fd 50%, #f0f7ff 100%);
color: #1a1a2e;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

.a {
text-decoration: none;
color: inherit;
}

.header {
position: fixed;
top: 0;
left: 0;
width: 100vw;
background: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 100%);
padding: 10px 24px;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 10001;
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
box-sizing: border-box;
color: #ffffff;
gap: 16px;
}

/* ============================================
   Container Dual de Buscas - Design 2026
   Glassmorphism + Modern UI
   ============================================ */
.header-search-dual {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  flex: 1;
  max-width: 720px;
  margin: 0 auto;
  height: 44px;
}

.header-search-dual .search-container {
  flex: 1;
  max-width: 340px;
  min-width: 200px;
  margin: 0;
  display: flex;
  align-items: stretch;
  height: 100%;
  box-sizing: border-box;
}

.header-search-dual .search-container .search-box {
  background: rgba(255, 255, 255, 0.95) !important;
  border-radius: 12px !important;
  border: 2px solid transparent !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100% !important;
  min-height: 44px !important;
  max-height: 44px !important;
  display: flex !important;
  align-items: center !important;
  width: 100%;
  box-sizing: border-box;
}

.header-search-dual .search-container .search-box:hover {
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15) !important;
}

.header-search-dual .search-container .search-box:focus-within {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15), 0 6px 20px rgba(59, 130, 246, 0.2) !important;
}

.header-search-dual .search-container .search-box .search-input {
  font-size: 13px !important;
  padding: 0 14px !important;
  border: none !important;
  background: transparent !important;
  height: 100% !important;
  line-height: normal !important;
}

.header-google-form {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  max-width: 340px;
  min-width: 200px;
  height: 100% !important;
  min-height: 44px !important;
  max-height: 44px !important;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  margin: 0;
}

.header-google-form:hover {
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.15);
}

.header-google-form:focus-within {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15), 0 6px 20px rgba(16, 185, 129, 0.2);
}

.header-google-input {
  flex: 1;
  padding: 0 14px;
  border: none;
  font-size: 13px;
  background: transparent;
  color: #1a1a2e;
  font-weight: 400;
  height: 100% !important;
  line-height: normal !important;
}

.header-google-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.header-google-input:focus {
  outline: none;
}

.header-google-btn {
  padding: 0 18px;
  height: 100% !important;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.header-google-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.header-google-btn:hover::before {
  left: 100%;
}

.header-google-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-google-btn:active {
  transform: scale(0.98);
}

/* Responsivo para telas menores */
@media (max-width: 900px) {
  .header-search-dual {
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    padding: 10px;
  }
  
  .header-search-dual .search-container,
  .header-google-form {
    max-width: 100%;
    width: 100%;
  }
}

.status {
font-size: 14px;
white-space: nowrap;
}

.menu-section {
margin: 90px auto 30px auto;
max-width: 1200px;
padding: 0 20px;
}

.menu-header {
text-align: center;
margin-bottom: 20px;
padding: 20px;
background: rgba(255, 255, 255, 0.8);
border-radius: 16px;
box-shadow: 0 4px 16px rgba(0,0,0,0.04);
border: 1px solid rgba(255, 255, 255, 0.9);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
position: relative;
z-index: 10;
}

.menu-title {
font-size: 32px;
font-weight: 700;
background: linear-gradient(135deg, #1976d2 0%, #1565c0 50%, #0d47a1 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin: 0 0 12px 0;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
text-shadow: 0 2px 8px rgba(0,0,0,0.15);
position: relative;
}

.menu-title::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 120%;
height: 120%;
background: radial-gradient(circle, rgba(25, 118, 210, 0.05) 0%, transparent 70%);
border-radius: 50%;
z-index: -1;
}

.menu-subtitle {
font-size: 17px;
color: #555;
margin: 0;
font-weight: 500;
opacity: 0.85;
text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.menu-area {
margin-top: 0;
margin-bottom: 40px;
padding: 28px;
background: rgba(255, 255, 255, 0.7);
border-radius: 24px;
box-shadow: 
  0 8px 32px rgba(31, 38, 135, 0.08),
  0 2px 8px rgba(0, 0, 0, 0.04);
border: 1px solid rgba(255, 255, 255, 0.8);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 14px;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
position: relative;
overflow: visible;
}

@media (max-width: 1100px) {
  .menu-area {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .menu-area {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    gap: 12px;
  }
}

@media (max-width: 500px) {
  .menu-area {
    grid-template-columns: 1fr;
    padding: 16px;
  }
}

/* Visual limpo sem pseudo-elementos pesados */

.dropdown {
position: relative;
width: 100%;
z-index: 1;
animation: slideInUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
animation-fill-mode: both;
will-change: transform, opacity;
}

.dropdown:nth-child(1) { animation-delay: 0.02s; }
.dropdown:nth-child(2) { animation-delay: 0.04s; }
.dropdown:nth-child(3) { animation-delay: 0.06s; }
.dropdown:nth-child(4) { animation-delay: 0.08s; }
.dropdown:nth-child(5) { animation-delay: 0.10s; }
.dropdown:nth-child(6) { animation-delay: 0.12s; }
.dropdown:nth-child(7) { animation-delay: 0.14s; }
.dropdown:nth-child(8) { animation-delay: 0.16s; }
.dropdown:nth-child(9) { animation-delay: 0.18s; }
.dropdown:nth-child(10) { animation-delay: 0.20s; }
.dropdown:nth-child(11) { animation-delay: 0.22s; }
.dropdown:nth-child(12) { animation-delay: 0.24s; }
.dropdown:nth-child(13) { animation-delay: 0.26s; }
.dropdown:nth-child(14) { animation-delay: 0.28s; }
.dropdown:nth-child(15) { animation-delay: 0.30s; }
.dropdown:nth-child(16) { animation-delay: 0.32s; }
.dropdown:nth-child(17) { animation-delay: 0.34s; }
.dropdown:nth-child(18) { animation-delay: 0.36s; }

@keyframes slideInUp {
0% {
opacity: 0;
transform: translateY(16px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}

.menu-header {
animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.dropdown {
position: relative;
width: 100%;
}

.dropbtn {
background: linear-gradient(145deg, #3b82f6 0%, #2563eb 100%);
color: #fff;
padding: 14px 18px;
border: none;
border-radius: 16px;
font-size: 13px;
font-weight: 600;
letter-spacing: 0.2px;
cursor: pointer;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
width: 100%;
text-align: left;
display: flex;
align-items: center;
justify-content: flex-start;
gap: 10px;
box-shadow: 
  0 4px 12px rgba(59, 130, 246, 0.25),
  0 1px 3px rgba(0, 0, 0, 0.08);
border: 1px solid rgba(255, 255, 255, 0.1);
position: relative;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
min-height: 52px;
max-height: 52px;
line-height: 1.3;
flex-shrink: 0;
}

.dropbtn[title]:hover::after {
content: attr(title);
position: absolute;
bottom: -35px;
left: 50%;
transform: translateX(-50%);
background: rgba(0, 0, 0, 0.9);
color: white;
padding: 6px 12px;
border-radius: 6px;
font-size: 12px;
white-space: nowrap;
z-index: 1000;
pointer-events: none;
animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
from { opacity: 0; transform: translateX(-50%) translateY(-5px); }
to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.dropbtn::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
pointer-events: none;
}

.dropbtn:hover::before {
left: 100%;
}

.dropbtn:hover {
background: linear-gradient(145deg, #2563eb 0%, #1d4ed8 100%);
transform: translateY(-2px);
box-shadow: 
  0 8px 20px rgba(59, 130, 246, 0.35),
  0 2px 6px rgba(0, 0, 0, 0.1);
}

.dropbtn:active {
transform: translateY(0) scale(0.98);
transition-duration: 0.1s;
box-shadow: 
  0 2px 8px rgba(59, 130, 246, 0.2);
}

.dropbtn:focus {
outline: none;
box-shadow: 
  0 4px 12px rgba(59, 130, 246, 0.25),
  0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Ícone do botão */
.dropbtn-icon {
  font-size: 18px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-content {
display: none;
position: absolute;
top: calc(100% + 10px);
left: 50%;
transform: translateX(-50%);
background-color: #ffffff;
color: #0d1b2a;
min-width: 360px;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
z-index: 100;
overflow: hidden;
}

.dropdown-content.show {
display: block;
}

.dropdown-content a {
display: flex;
align-items: center;
padding: 12px;
text-decoration: none;
color: #0d1b2a;
border-bottom: 1px solid #eee;
transition: background 0.3s;
}

.dropdown-content a:hover {
background-color: #e3f2fd;
}

.dropdown-content img {
width: 48px;
height: 48px;
margin-right: 12px;
border-radius: 8px;
object-fit: cover;
display: block;
margin-left: auto;
margin-right: auto;
}

.dropdown-content .link-icon img {
width: 40px;
height: 40px;
border-radius: 6px;
object-fit: contain;
display: block;
margin: 0 auto;
}

.link-icon {
width: 48px;
height: 48px;
margin-right: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
background: linear-gradient(135deg, #e3f2fd, #bbdefb);
border-radius: 8px;
border: 1px solid #90caf9;
flex-shrink: 0;
overflow: hidden;
}

.link-icon img {
width: 40px;
height: 40px;
object-fit: contain;
border-radius: 4px;
}

.info {
display: flex;
flex-direction: column;
}

.info .click-counter {
    font-size: 10px;
    color: #1565c0;
    font-weight: 600;
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    padding: 4px 8px;
    border-radius: 10px;
    display: block;
    margin: 0 auto 4px auto;
    border: 1px solid #bbdefb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    width: 290px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}.info .title {
font-weight: bold;
font-size: 15px;
color: #0d1b2a;
}

.info .desc {
font-size: 12px;
color: #888;
opacity: 0.8;
font-style: italic;
margin-top: 2px;
}

.panel {
width: 90%;
max-width: 700px;
background-color: #ffffff;
margin: 60px auto;
padding: 30px;
border-radius: 12px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
color: #0d1b2a;
}

/* ========== ESTILOS DO LOGIN - TEMA CONSISTENTE COM INDEX.PHP ========== */
.login-page html,
.login-page {
  font-family: 'Segoe UI', sans-serif !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 100vh !important;
  width: 100vw !important;
  overflow: hidden !important;
}

.login-page,
.login-page * {
  box-sizing: border-box;
}

.login-page body {
  background: linear-gradient(90deg, #0d1b2a, #1565c0) !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  width: 100vw !important;
  height: 100vh !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}

.login-page body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 40%, rgba(21, 101, 192, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(13, 27, 42, 0.1) 0%, transparent 50%);
}

.login-container {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: 20px;
  box-sizing: border-box;
}

.login-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0;
}

.login-header {
  background: linear-gradient(90deg, #0d1b2a, #1565c0);
  color: #ffffff;
  text-align: center;
  padding: 40px 30px 30px 30px;
}

.login-logo {
  margin: 0 0 10px 0;
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.login-subtitle {
  margin: 0 0 20px 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.login-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  margin: 0 auto;
  width: 60%;
}

.login-content {
  padding: 40px 30px 30px 30px;
}

.login-form {
  margin-bottom: 0;
}

.login-alert {
  background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(255, 82, 82, 0.3);
  transition: all 0.3s ease;
}

.alert-icon {
  font-size: 18px;
}

.alert-text {
  font-size: 14px;
  font-weight: 500;
}

.login-field {
  margin-bottom: 25px;
}

.field-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0d1b2a;
}

.field-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #f9f9f9;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.field-wrapper:focus-within {
  border-color: #1565c0;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.field-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  background: transparent;
  font-size: 16px;
  color: #0d1b2a;
  outline: none;
  font-family: inherit;
}

.field-input::placeholder {
  color: #adb5bd;
}

.toggle-password {
  background: none;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 16px;
  color: #6c757d;
  transition: color 0.3s ease;
}

.toggle-password:hover {
  color: #1565c0;
}

.login-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(90deg, #0d1b2a, #1565c0);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.3);
  font-family: inherit;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(21, 101, 192, 0.4);
}

.login-btn:active {
  transform: translateY(0);
}

.login-footer {
  background: #f8f9fc;
  padding: 20px 30px;
  text-align: center;
  border-top: 1px solid #e9ecef;
}

.footer-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}

.status-indicator {
  font-size: 12px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.status-text {
  font-size: 14px;
  color: #28a745;
  font-weight: 500;
}

.footer-text {
  margin: 0;
  color: #6c757d;
  font-size: 12px;
  font-weight: 400;
}

/* Responsividade */
@media (max-width: 480px) {
  .login-container {
    padding: 16px;
  }
  
  .login-header {
    padding: 30px 20px 20px 20px;
  }
  
  .login-logo {
    font-size: 24px;
  }
  
  .login-subtitle {
    font-size: 14px;
  }
  
  .login-content {
    padding: 30px 20px 20px 20px;
  }
  
  .field-input {
    padding: 14px 16px;
    font-size: 15px;
  }
  
  .toggle-password {
    padding: 14px 16px;
  }
  
  .login-btn {
    padding: 15px 20px;
    font-size: 15px;
  }
  
  .login-footer {
    padding: 16px 20px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shake {
  0%, 20%, 40%, 60%, 80% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
}

/* ========== ESTILOS PARA INDEX.PHP ========== */

/* Header Styles */
.header-link {
  text-decoration: none;
  color: inherit;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-info {
  text-align: right;
}

.header-info div {
  font-size: 14px;
}

/* Botões do Header */
.btn-reset {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.btn-reset:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.btn-admin {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.btn-admin:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

/* Modal Styles */
#modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.5);
  z-index: 998;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#modal-precos {
  display: none;
  position: fixed;
  top: 8vh;
  left: 50%;
  transform: translateX(-50%);
  width: 75vw;
  max-width: 650px;
  max-height: 80vh;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 
    0 24px 48px rgba(0,0,0,0.12), 
    0 12px 24px rgba(0,0,0,0.08);
  z-index: 999;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.modal-header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
  color: white;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
  position: relative;
}

.modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  border-radius: 20px 20px 0 0;
  pointer-events: none;
}

.modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  z-index: 1;
  position: relative;
}

.modal-close-btn {
  background: rgba(255,255,255,0.15);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
  z-index: 1;
  position: relative;
}

.modal-close-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.modal-content {
  padding: 20px;
  overflow-y: auto;
  max-height: calc(80vh - 90px);
  overflow-x: hidden;
  background: linear-gradient(to bottom, #ffffff, #fafbfc);
}

/* Custom scrollbar */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: #f1f3f4;
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #1565c0, #1976d2);
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #0d47a1, #1565c0);
}

/* Tabela de Preços */
.tabela-titulo {
  color: #1e40af;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  border-left: 4px solid #3b82f6;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
  position: relative;
}

.tabela-titulo::before {
  display: none;
}

.tabela-precos {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border-radius: 16px;
  overflow: hidden;
  background: white;
}

.tabela-precos thead {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.tabela-precos th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  color: #475569;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.tabela-precos th:first-child {
  width: 80px;
}

.tabela-precos th:nth-child(2) {
  width: 70%;
}

.tabela-precos th:last-child {
  width: 100px;
  text-align: right;
}

.tabela-precos tr {
  transition: all 0.2s ease;
  border-bottom: 1px solid #f1f5f9;
}

.tabela-precos tr:nth-child(even) {
  background: #fafbfc;
}

.tabela-precos tr:hover {
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
}

.tabela-precos td {
  padding: 14px 16px;
  vertical-align: middle;
  font-size: 14px;
}

.tabela-precos td:first-child {
  width: 80px;
  font-weight: 500;
  color: #64748b;
}

.tabela-precos td:nth-child(2) {
  color: #334155;
}

.tabela-precos td:last-child {
  width: 100px;
  text-align: right;
  font-weight: 600;
  color: #3b82f6;
}

/* Container das duas buscas lado a lado */
.dual-search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 24px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.search-container-inline {
  flex: 1;
  max-width: 450px;
  min-width: 280px;
  position: relative;
  z-index: 10000;
}

.google-search-container-inline {
  flex: 1;
  max-width: 450px;
  min-width: 280px;
}

/* Busca Google */
.google-search-container {
  margin-top: 20px;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.google-search-form {
  display: flex;
  gap: 12px;
  width: 100%;
}

.google-search-input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 14px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.google-search-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}

.google-search-btn {
  padding: 14px 24px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.google-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

/* Busca de Links */
.search-container {
  flex: 1;
  max-width: 480px;
  margin: 0 20px;
  position: relative;
  z-index: 10000;
}

.search-box {
  display: flex;
  align-items: center;
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: all 0.2s ease;
}

.search-box.active {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
}

.search-input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  outline: none;
  font-size: 14px;
  color: #333;
  background: transparent;
}

.search-input::placeholder {
  color: #888;
}

.clear-search-btn {
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  font-size: 14px;
  transition: color 0.2s;
}

.clear-search-btn:hover {
  color: #f44336;
}

/* Modal de Pesquisa */
.modal-overlay-search {
  display: none;
  position: fixed;
  top: 80px; /* Deixa espaço para o header com a pesquisa */
  left: 0;
  width: 100%;
  height: calc(100% - 80px);
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay-search.show {
  opacity: 1;
}

.search-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  box-shadow: 
    0 24px 48px rgba(0, 0, 0, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  width: 90%;
  max-width: 700px;
  max-height: 80%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.search-modal.show {
  opacity: 1;
}

.search-modal-header {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  padding: 18px 24px;
  border-radius: 24px 24px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-modal-header h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.search-modal-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}

.search-modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.02);
}

.search-modal-content {
  padding: 8px;
  max-height: 500px;
  overflow-y: auto;
  background: #f8fafc;
}

.search-modal-results {
  padding: 8px;
}

/* Responsividade do Modal de Pesquisa */
@media (max-width: 768px) {
  .modal-overlay-search {
    top: 70px; /* Header menor em mobile */
    height: calc(100% - 70px);
  }
  
  .search-modal {
    width: 95%;
    max-height: 85%;
    border-radius: 12px;
  }
  
  .search-modal-header {
    padding: 16px 20px;
    border-radius: 12px 12px 0 0;
  }
  
  .search-modal-header h3 {
    font-size: 16px;
  }
  
  .search-modal-close-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
  
  .search-result-item {
    padding: 16px 20px;
    gap: 12px;
  }
  
  .search-result-icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
  
  .search-result-title {
    font-size: 15px;
  }
  
  .search-result-desc {
    font-size: 13px;
  }
  
  .no-results-icon {
    font-size: 36px;
  }
  
  .no-results-title {
    font-size: 18px;
  }
  
  .search-no-results {
    padding: 40px 20px;
  }
}

.search-result-item {
  padding: 14px 18px;
  margin: 6px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background-color: #f0f7ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.2);
}

.search-result-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  border-radius: 10px;
  flex-shrink: 0;
}

.search-result-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.search-result-info {
  flex: 1;
}

.search-result-title {
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 4px;
  font-size: 16px;
}

.search-result-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
  line-height: 1.4;
}

.search-result-category {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Estilo para mensagem quando não há resultados */
.search-no-results {
  text-align: center;
  padding: 60px 40px;
  color: #666;
}

.no-results-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.no-results-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.no-results-subtitle {
  font-size: 16px;
  margin-bottom: 12px;
  color: #555;
}

.no-results-suggestion {
  font-size: 14px;
  color: #888;
  font-style: italic;
}

/* Modal de Categoria */
.modal-overlay-category {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay-category.show {
  opacity: 1;
}

.category-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  box-shadow: 
    0 24px 48px rgba(0, 0, 0, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  width: 90%;
  max-width: 800px;
  max-height: 85%;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.95);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.category-modal.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.category-modal-header {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  padding: 18px 24px;
  border-radius: 24px 24px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.2px;
}

.category-modal-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}

.category-modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.02);
}

.category-modal-content {
  padding: 8px;
  max-height: 500px;
  overflow-y: auto;
  background: #f8fafc;
}

.category-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  background: transparent;
  margin: 0;
  padding: 8px;
}

.category-link-item {
  background: white;
  padding: 16px 18px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.category-link-item:hover {
  background-color: #f0f7ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.2);
}

.category-link-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  border-radius: 12px;
  flex-shrink: 0;
}

.category-link-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.category-link-info {
  flex: 1;
}

.category-link-title {
  font-weight: 600;
  color: #1565c0;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.3;
}

.category-link-desc {
  font-size: 10px;
  color: #666;
  margin-bottom: 6px;
  line-height: 1.4;
}

.category-link-counter {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Responsividade do Modal de Categoria */
@media (max-width: 768px) {
  .category-modal {
    width: 95%;
    max-height: 90%;
    border-radius: 12px;
  }
  
  .category-modal-header {
    padding: 16px 20px;
    border-radius: 12px 12px 0 0;
  }
  
  .category-modal-header h3 {
    font-size: 18px;
  }
  
  .category-modal-close-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  .category-links-grid {
    grid-template-columns: 1fr;
  }
  
  .category-link-item {
    padding: 16px;
    gap: 12px;
  }
  
  .category-link-icon {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  
  .category-link-icon img {
    width: 28px;
    height: 28px;
  }
  
  .category-link-title {
    font-size: 15px;
  }
  
  .category-link-desc {
    font-size: 11px;
  }
}

/* Panel Styles */
.panel-atendimento {
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.panel-title {
  margin-top: 0;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 20px;
}

.panel-subtitle {
  margin-bottom: 16px;
  font-size: 14px;
  color: #64748b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel-tabs {
  display: flex;
  gap: 10px;
  margin: 12px 0 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 6px;
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.panel-tab {
  flex: 1;
  border: none;
  background: transparent;
  color: #475569;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.panel-tab:hover {
  background: rgba(59, 130, 246, 0.08);
  color: #1e3a8a;
}

.panel-tab.active {
  background: linear-gradient(135deg, rgba(59,130,246,0.18) 0%, rgba(14,165,233,0.22) 100%);
  color: #1e3a8a;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.18);
}

.panel-tab-content {
  display: none;
}

.panel-tab-content.active {
  display: block;
}

#total-clicks {
  font-weight: 600;
  color: #3b82f6;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
}

.panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.panel-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(226,232,240,0.6) 100%);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.panel-item-link {
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}

.panel-item-link:hover {
  color: #0ea5e9;
}

.panel-item-count {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  background: rgba(148, 163, 184, 0.18);
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .panel-list {
    grid-template-columns: 1fr;
  }
}

/* Contadores e Rodapé */
.contador-visitas {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 100px;
  padding: 20px;
  color: #444;
  font-size: 14px;
}

.contador-visitas a {
  margin-left: 10px;
  font-size: 12px;
  color: #1565c0;
  text-decoration: underline;
}

.espacamento {
  text-align: center;
  margin-top: 50px;
  color: #444;
  font-size: 14px;
}

.padding-top {
  padding-top: 30px;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 100%);
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 13px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.footer-line {
  margin-bottom: 4px;
  opacity: 0.95;
}

.footer-version {
  font-size: 12px;
  opacity: 0.8;
}

.version-info {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: bold;
}

.version-info small {
  font-weight: normal;
  opacity: 0.8;
  font-size: 10px;
}

.logout-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff5252;
  color: white;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

@media (max-width: 1024px) {
.menu-area {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 16px;
padding: 25px 20px;
}

.dropbtn {
padding: 15px 18px;
font-size: 12px;
gap: 7px;
}
}

@media (max-width: 768px) {
.menu-area {
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 14px;
padding: 20px 15px;
}

.dropbtn {
padding: 14px 16px;
font-size: 11px;
gap: 6px;
}
}

@media (max-width: 600px) {
.menu-section {
padding: 0 15px;
margin: 100px auto 20px auto;
}

.menu-header {
padding: 20px 15px;
margin-bottom: 20px;
}

.menu-title {
font-size: 24px;
}

.menu-subtitle {
font-size: 14px;
}

.menu-area {
grid-template-columns: 1fr;
gap: 16px;
padding: 25px 20px;
margin-top: 0;
}

.dropbtn {
width: 100%;
padding: 16px 18px;
font-size: 12px;
gap: 6px;
white-space: nowrap;
text-overflow: ellipsis;
min-height: 52px;
max-height: 52px;
}

.dropdown-content {
left: 0;
transform: none;
}

.google-search-input {
  width: 300px;
}

/* Estilos responsivos para pesquisa de links */
.header {
  flex-direction: column;
  gap: 10px;
  padding: 10px 15px;
}

.search-container {
  max-width: 100%;
  margin: 0;
  order: 2;
}

.header > span {
  order: 1;
}

.header-right {
  order: 3;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.header-info {
  font-size: 11px;
}

.btn-reset, .btn-admin {
  font-size: 11px;
  padding: 4px 8px;
}

.status {
  font-size: 11px;
}

.search-input {
  font-size: 16px; /* Evita zoom no iOS */
  padding: 8px 12px;
}

.search-result-item {
  padding: 12px 15px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.search-result-icon {
  align-self: flex-start;
}

.search-result-title {
  font-size: 14px;
  line-height: 1.3;
}

.search-result-desc {
  font-size: 12px;
}

.search-result-category {
  font-size: 11px;
}
}

/* Media queries para o modal de preços */
@media (max-width: 768px) {
  #modal-precos {
    width: 90%;
    max-height: 85vh;
    top: 5vh;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 16px;
  }
  
  .modal-content {
    padding: 15px;
    max-height: calc(85vh - 80px);
  }
  
  .tabela-precos {
    font-size: 14px;
  }
  
  .tabela-precos th,
  .tabela-precos td {
    padding: 8px 6px;
  }
}

@media (max-width: 480px) {
  #modal-precos {
    width: 95%;
    max-height: 88vh;
    border-radius: 12px;
    top: 4vh;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .modal-header {
    padding: 12px 15px;
    border-radius: 12px 12px 0 0;
  }
  
  .modal-header h3 {
    font-size: 16px;
  }
  
  .modal-content {
    padding: 12px;
    max-height: calc(88vh - 70px);
  }
  
  .tabela-titulo {
    font-size: 14px;
    padding: 10px 12px;
  }
  
  .tabela-precos {
    font-size: 13px;
  }
  
  .tabela-precos th,
  .tabela-precos td {
    padding: 6px 4px;
  }
}