
:root {
  /* Design System Global - Brand Colors */
  --brand-primary: #10b981;
  --brand-primary-text: #059669; /* Accessible text version */
  
  /* Retro-compatibility Aliases */
  --laranja: var(--brand-primary);
  --accent: var(--brand-primary);
  --sucesso: var(--brand-primary);
  --verde: var(--brand-primary);
  --laranja-hover: var(--brand-primary-text);
  --laranja-texto: var(--brand-primary-text);

  --azul-escuro: #111827;
  --azul-hover: #1f2937;
  --cinza-escuro: #374151;
  --cinza-fundo: #f8fafc;
  --cinza-borda: #e2e8f0;
  --cinza-texto: #64748b;
  --branco: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-hover: #20bd5a;
  --erro: #ef4444;
  --sombra-leve: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --sombra-forte: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --transicao: 0.2s var(--ease-out);
}

.text-gradient {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-text));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
body {
  background-color: var(--cinza-fundo);
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0;
}
.btn-principal {
  background: var(--azul-escuro);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}
.btn-principal:hover {
  background: var(--azul-hover);
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.2);
}
@media (hover: hover) and (pointer: fine) {
  .btn-principal:hover {
    transform: translateY(-2px);
  }
}
.btn-principal:active {
  transform: scale(0.97);
}
.stat-card {
  background: var(--branco);
  padding: 25px;
  border-radius: 16px;
  box-shadow: var(--sombra-leve);
  border: 1px solid var(--cinza-borda);
  transition: var(--transicao);
}
.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--cinza-borda);
  border-radius: 8px;
  background: white;
  font-size: 14px;
  transition: var(--transicao);
  
}
.form-input:focus {
  border-color: var(--laranja);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
@media (max-width: 900px) {
  html body input,
  html body select,
  html body textarea,
  input,
  select,
  textarea,
  .chat-ia-input,
  .form-input,
  .input-pesquisa-area input {
    font-size: 16px !important;
  }
}
.table-container {
  overflow-x: auto !important;
  display: block !important;
  width: 100% !important;
  
}
@media (max-width: 768px) {
  body.pagina-mapa .footer-olx,
  body.pagina-mapa footer {
    display: none !important;
  }
}
.table-container table {
  width: 100%;
  white-space: nowrap;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
.header-publico {
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 2000;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  flex-shrink: 0;
  transition: box-shadow 300ms var(--ease-out), background 300ms var(--ease-out);
}
.header-publico.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.92);
}
.logo-mapasports {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-texto {
  color: var(--azul-escuro);
}
.logo-destaque {
  color: var(--laranja);
  display: flex;
  align-items: center;
}
.logo-pin {
  width: 20px;
  height: 26px;
  margin-left: 1px;
  transform: translateY(1px);
}
.menu-publico {
  display: flex;
  gap: 20px;
  align-items: center;
}
.menu-publico a {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition:
    transform 0.2s,
    background-color 0.2s,
    opacity 0.2s;
  padding: 12px;
  display: inline-block;
}
.link-simples {
  color: var(--azul-escuro);
}
.link-simples:hover {
  color: var(--laranja);
}
.btn-cliente {
  color: var(--laranja);
  border: 2px solid var(--laranja);
  padding: 8px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-cliente:hover {
  background: var(--laranja);
  color: white;
}
.btn-sou-profissional {
  background: var(--laranja);
  color: var(--branco) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-sou-profissional:hover {
  background: var(--laranja-hover);
}
@media (hover: hover) and (pointer: fine) {
  .btn-sou-profissional:hover {
    transform: translateY(-2px);
  }
}
.btn-sou-profissional:active {
  transform: scale(0.97);
}
#banner-loc {
  background: #e0f2fe;
  color: #0369a1;
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #bae6fd;
  font-size: 14px;
  z-index: 1999;
  animation: slideDown 0.5s ease;
}
#banner-loc button {
  padding: 6px 15px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  margin-left: 10px;
  transition:
    transform 0.2s,
    background-color 0.2s,
    opacity 0.2s;
}
.btn-recusar {
  background: transparent;
  color: #0369a1;
  text-decoration: underline;
}
.btn-permitir {
  background: #0284c7;
  color: white;
}
.btn-permitir:hover {
  background: #0369a1;
}
.hero-pesquisa {
  min-height: 250px;
  background: linear-gradient(135deg, var(--azul-escuro) 0%, #001122 100%);
  padding: 25px 20px;
  text-align: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.hero-pesquisa h1 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 5px;
}
.hero-pesquisa p {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 20px;
}
.caixa-pesquisa {
  background: white;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  gap: 10px;
  box-shadow: var(--sombra-forte);
}
.input-pesquisa-area {
  flex: 1;
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 0 15px;
  border: 2px solid transparent;
  transition:
    transform 0.2s,
    background-color 0.2s,
    opacity 0.2s;
}
.input-pesquisa-area:focus-within {
  border-color: var(--laranja);
  background: white;
}
.input-pesquisa-area i {
  color: var(--cinza-texto);
  font-size: 18px;
}
.input-pesquisa-area select,
.input-pesquisa-area input {
  width: 100%;
  border: none;
  background: transparent;
  padding: 12px;
  font-size: 15px;
  
  color: var(--azul-escuro);
  font-weight: 600;
  cursor: pointer;
}
.btn-procurar {
  background: var(--laranja);
  color: white;
  border: none;
  padding: 0 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition:
    transform 0.2s,
    background-color 0.2s,
    opacity 0.2s;
}
.btn-procurar:hover {
  background: var(--laranja-hover);
}
.barra-ferramentas {
  background: white;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--cinza-borda);
  z-index: 1500;
  flex-shrink: 0;
  position: sticky;
  top: 70px;
}
.mapa-container {
  display: flex;
  flex: 1;
  overflow: hidden;
  position: relative;
}
.lista-profissionais {
  width: 500px;
  flex-shrink: 0;
  background: var(--cinza-fundo);
  overflow-y: auto;
  padding: 20px;
  border-right: 1px solid var(--cinza-borda);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  transition: width 0.3s ease;
}
.resultado-info {
  font-size: 14px;
  color: var(--cinza-texto);
  margin-bottom: 20px;
  font-weight: 600;
}
.estado-vazio {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cinza-texto);
  padding: 40px 20px;
  margin-top: 30px;
}
.estado-vazio i {
  font-size: 60px;
  color: #cbd5e1;
  margin-bottom: 20px;
}
#lista-cartoes-container {
  transition:
    transform 0.3s,
    background-color 0.3s,
    opacity 0.3s;
}
.modo-grelha {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.modo-grelha .cartao-pro {
  margin-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.modo-grelha .pro-descricao {
  flex: 1;
}
.cartao-pro {
  background: white;
  border: 1px solid var(--cinza-borda);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  transition:
    transform 0.3s,
    background-color 0.3s,
    opacity 0.3s;
  box-shadow: var(--sombra-leve);
  position: relative;
}
.cartao-pro:hover {
  border-color: var(--laranja);
  transform: translateY(-3px);
  box-shadow: var(--sombra-forte);
}
.card-premium {
  border: 2px solid var(--laranja) !important;
  background: linear-gradient(145deg, #ffffff, #fffdf8);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15) !important;
}
.card-premium:hover {
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.25) !important;
  transform: translateY(-5px);
}
.badge-destaque {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pro-header {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 15px;
}
.pro-avatar {
  width: 65px;
  height: 65px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #94a3b8;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--cinza-borda);
}
.pro-nome {
  font-size: 18px;
  font-weight: 800;
  color: var(--azul-escuro);
  margin-bottom: 5px;
}
.pro-servico {
  font-size: 14px;
  color: var(--cinza-texto);
  font-weight: 500;
  background: #f1f5f9;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
}
.pro-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--cinza-texto);
  margin-top: 8px;
}
.stars {
  color: #f59e0b;
  font-size: 14px;
}
.pro-descricao {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit--webkit-overflow: hidden;
}
.pro-acoes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}
.btn-perfil {
  width: 100%;
  background: #f1f5f9;
  color: var(--azul-escuro);
  border: 1px solid var(--cinza-borda);
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s,
    background-color 0.2s,
    opacity 0.2s;
  margin-bottom: 10px;
}
.btn-perfil:hover {
  background: #e2e8f0;
}
.btn-ligar,
.btn-whatsapp {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    transform 0.2s,
    background-color 0.2s,
    opacity 0.2s;
}
.btn-ligar {
  background: var(--azul-escuro);
  color: white;
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
}
.area-visual-mapa {
  flex: 1;
  position: relative;
  z-index: 1;
  transition:
    transform 0.3s,
    background-color 0.3s,
    opacity 0.3s;
}
#mapa-real {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #e2e8f0;
}
#loading-mapa {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--azul-escuro);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  z-index: 1000;
  display: none;
  box-shadow: var(--sombra-forte);
}
.mascote-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: "Inter", sans-serif;
}
.mascote-btn {
  width: 60px;
  height: 60px;
  background: var(--azul-escuro);
  color: white;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 51, 102, 0.3);
  border: 2px solid white;
  transition:
    transform 0.3s,
    background-color 0.3s,
    opacity 0.3s;
  z-index: 9991;
  position: fixed;
  bottom: 30px;
  right: 30px;
}
.mascote-btn:hover {
  transform: scale(1.1);
}
.chat-ia-window {
  width: 350px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  transform-origin: bottom right;
  animation: abrirChat 0.3s ease forwards;
}
.chat-ia-header {
  background: #001122;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-ia-header h4 {
  margin: 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-ia-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 20px;
  opacity: 0.7;
  transition:
    transform 0.3s,
    background-color 0.3s,
    opacity 0.3s;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -10px;
}
.chat-ia-close:hover {
  opacity: 1;
}
.chat-ia-body {
  height: auto;
  max-height: 50vh;
  padding: 20px;
  background: #f8fafc;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.msg-ia,
.msg-user {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}
.msg-ia {
  background: white;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  border-bottom-left-radius: 2px;
  align-self: flex-start;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}
.msg-user {
  background: #10b981;
  color: white;
  border-bottom-right-radius: 2px;
  align-self: flex-end;
  box-shadow: 0 2px 5px rgba(16, 185, 129, 0.2);
}
.chat-ia-footer {
  padding: 15px;
  background: white;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 10px;
  align-items: center;
}
.chat-ia-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  
  font-size: 14px;
  transition:
    transform 0.3s,
    background-color 0.3s,
    opacity 0.3s;
}
.btn-mic-ia {
  background: #f8fafc;
  color: #001122;
  border: 1px solid #e2e8f0;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  transition:
    transform 0.3s,
    background-color 0.3s,
    opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-mic-ia.gravando {
  background: #ef4444;
  color: white;
  border-color: #ef4444;
  animation: pulse-red 1.5s infinite;
}
.btn-send-ia {
  background: #10b981;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
  margin-bottom: 20px;
}
.footer-col h3,
.footer-col h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition:
    transform 0.2s,
    background-color 0.2s,
    opacity 0.2s;
}
.footer-col ul li a:hover {
  color: white;
}
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 31, 63, 0.8);
  z-index: 3000;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  padding: 20px;
}
.modal-content {
  background: white;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  border-radius: 16px;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s;
}
.modal-header {
  padding: 30px;
  border-bottom: 1px solid var(--cinza-borda);
  position: relative;
}
.modal-body {
  padding: 30px;
}
.btn-fechar-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f1f5f9;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  color: var(--cinza-texto);
  display: flex;
  justify-content: center;
  align-items: center;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}
.portfolio-item {
  border-radius: 10px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid var(--cinza-borda);
  text-align: center;
}
.portfolio-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes flutuar {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes abrirChat {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.seccao-blog {
  padding: 80px 20px;
  background-color: #f8fafc;
}
.container-blog {
  max-width: 1200px;
  margin: 0 auto;
}
.cabecalho-blog {
  text-align: center;
  margin-bottom: 50px;
}
.cabecalho-blog h2 {
  font-size: 32px;
  color: var(--azul-escuro);
  margin-bottom: 10px;
}
.cabecalho-blog p {
  color: #64748b;
  font-size: 16px;
}
.grid-artigos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.cartao-artigo {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.cartao-artigo:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.imagem-artigo {
  aspect-ratio: 16/9;
  min-height: 200px;
  background-color: #f1f5f9;
  display: block;
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.categoria-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--laranja);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}
.conteudo-artigo {
  padding: 25px;
}
.conteudo-artigo h3 {
  font-size: 18px;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.4;
  font-weight: 700;
}
.conteudo-artigo p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit--webkit-overflow: hidden;
}
.btn-ler-mais {
  color: var(--laranja);
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transicao);
}
.btn-ler-mais:hover {
  color: #059669;
}
.centro-botao-blog {
  text-align: center;
  margin-top: 20px;
}
.btn-ver-todos {
  background: white;
  color: var(--azul-escuro);
  border: 2px solid var(--azul-escuro);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-ver-todos:hover {
  background: var(--azul-escuro);
  color: white;
}
@media (max-width: 900px) {
  body {
    height: auto !important;
    min-height: 100vh;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }
  .header-publico {
    flex-direction: column;
    padding: 15px 20px 20px;
    gap: 12px;
  }
  .menu-publico {
    display: flex !important;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .btn-sou-profissional,
  .btn-cliente {
    width: 100%;
    justify-content: center;
  }
  .mapa-container {
    flex-direction: column-reverse !important;
    height: auto;
  }
  .pagina-mapa .lista-profissionais {
    position: fixed !important;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    height: 65vh !important;
    max-height: 65vh !important;
    border-radius: 24px 24px 0 0 !important;
    z-index: 1500;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.2) !important;
    transition: transform 0.3s ease-in-out;
    padding: 40px 15px 15px 15px !important;
    background: white;
    overflow-y: auto;
    transform: translateY(0);
    border-right: none !important;
  }
  .pagina-mapa .lista-profissionais::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 10px;
    cursor: grab;
  }
  .gaveta-recolhida {
    transform: translateY(calc(100% - 60px)) !important;
  }
  .area-visual-mapa {
    height: 100vh !important;
    flex: none;
    width: 100%;
    border-bottom: none;
  }
  .caixa-pesquisa {
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    padding: 0;
    width: 100%;
  }
  .input-pesquisa-area {
    background: white;
    margin-bottom: 10px;
    border: 1px solid var(--cinza-borda);
    border-radius: 12px;
    width: 100%;
  }
  .barra-ferramentas {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
    padding: 15px;
  }
  .barra-ferramentas > div {
    flex-direction: column;
    width: 100%;
    align-items: stretch !important;
  }
  .barra-ferramentas input[type="text"] {
    width: 100% !important;
    box-sizing: border-box;
  }
  .btn-procurar {
    padding: 15px;
    width: 100%;
  }
  .grid-artigos,
  .grid-features,
  .footer-grid,
  .portfolio-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .chat-ia-window {
    width: 94vw;
    right: 3vw;
    bottom: 100px;
    z-index: 10000;
  }
  .chat-ia-body {
    height: 75vh !important;
    max-height: 75vh !important;
    min-height: 350px;
  }
}
.navbar {
  height: 70px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--branco);
  border-bottom: 1px solid var(--cinza-borda);
  position: sticky;
  top: 0;
  z-index: 2000;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
  width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
}
.navbar-hamburger, .navbar-btn-mapa-mobile { display: none; }
  .nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
}
.nav-link {
  color: var(--cinza-texto);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s;
  display: inline-flex;
  align-items: center;
}
.nav-link:hover {
  color: var(--laranja) !important;
}
.navbar .btn-cliente {
  color: var(--laranja) !important;
  font-weight: 700 !important;
  border: 2px solid var(--laranja) !important;
  padding: 7px 14px !important;
  border-radius: 8px !important;
  background: transparent !important;
  transition:
    transform 0.2s,
    background-color 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}
.navbar .btn-cliente:hover {
  background: var(--laranja) !important;
  color: white !important;
}
.navbar .btn-pro {
  background: var(--azul-escuro) !important;
  color: var(--branco) !important;
  padding: 9px 18px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    transform 0.2s,
    background-color 0.2s;
  text-decoration: none;
  border: 2px solid var(--azul-escuro) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}
.navbar .btn-pro:hover {
  background: var(--azul-hover) !important;
  border-color: var(--azul-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.2);
}
.dropdown-idioma {
  position: relative;
  display: inline-block;
}
.btn-idioma-ativo {
  background: var(--cinza-fundo);
  border: 1px solid var(--cinza-borda);
  padding: 7px 12px;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  color: var(--azul-escuro);
  white-space: nowrap;
  transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--azul-escuro);
}
.btn-idioma-ativo:hover {
  background: var(--cinza-borda);
}
.dropdown-content-idioma {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 6px;
  background-color: var(--branco);
  min-width: 170px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 99999;
  border-radius: 10px;
  padding: 8px;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--cinza-borda);
}
.dropdown-idioma.aberto .dropdown-content-idioma {
  display: flex;
}
.dropdown-content-idioma label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 12px;
  border-radius: 6px;
  transition: background 0.15s;
  color: var(--azul-escuro);
    color: var(--azul-escuro);
}
.dropdown-content-idioma label:hover {
  background: var(--cinza-fundo);
}
.dropdown-content-idioma input[type="radio"] {
  display: none;
}
@media (max-width: 900px) {
  .navbar {
    height: auto;
    padding: 12px 20px;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .navbar .logo-mapasports {
    align-self: center;
  }
  .navbar-hamburger, .navbar-btn-mapa-mobile { display: none; }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }
  .navbar .btn-cliente, .navbar .btn-pro { flex: none !important; width: 100% !important; justify-content: center; min-width: 140px; padding: 14px 20px !important; border-radius: 12px !important; font-size: 16px !important; margin-top: 5px; }
  .dropdown-idioma {
    width: 100%;
  }
  .btn-idioma-ativo {
    width: 100%;
    justify-content: center;
  }
  .dropdown-content-idioma {
    left: 0;
    right: 0;
    width: 100%;
  }
}
.skeleton-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  animation: skeleton-fade 0.5s ease-in;
}
.skeleton {
  background: #e2e8f0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.skeleton::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: skeleton-loading 1.5s infinite linear;
  transform: translateX(-100%);
}
@keyframes skeleton-loading {
  100% {
    transform: translateX(100%);
  }
}
@keyframes skeleton-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.skeleton-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.skeleton-titulo {
  height: 24px;
  width: 60%;
  margin-bottom: 8px;
}
.skeleton-texto {
  height: 16px;
  width: 100%;
}
.skeleton-texto.curto {
  width: 40%;
}
.skeleton-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
}
.btn-secundario {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition:
    transform 0.2s,
    background-color 0.2s;
  border: 2px solid var(--azul-escuro);
  background: white;
  color: var(--azul-escuro);
  text-decoration: none;
}
.btn-secundario:hover {
  background: var(--azul-escuro);
  color: white;
  transform: translateY(-2px);
}

/* Modern Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
  flex-shrink: 0;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: 0.3s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
input:checked + .slider {
  background-color: var(--laranja);
}
input:focus + .slider {
  box-shadow: 0 0 1px var(--laranja);
}
input:checked + .slider:before {
  transform: translateX(22px);
}
.modal-privacidade-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e2e8f0;
}
.modal-privacidade-item:last-of-type {
  border-bottom: none;
}
/* Estilo do Botão Google Reviews - MapaSports */
.google-review-container {
  margin: 15px 0;
  display: inline-block;
}
.btn-google-review {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  color: #2d3748 !important;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.btn-google-review:hover {
  background-color: #f7fafc;
  border-color: #cbd5e0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.google-icon {
  margin-right: 10px;
  flex-shrink: 0;
}
.btn-google-review .stars,
.footer-badge .stars {
  color: #ffb400;
  margin-left: 8px;
  letter-spacing: 1px;
}

.footer-badge {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 220px;
  background-color: #ffffff;
  color: #2d3748 !important;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.footer-badge:hover {
  background-color: #f7fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

/* Pricing Cards Styles */
.card-top1 {
  border-color: #ffd700;
}
.feature-list {
  list-style: none;
  text-align: left;
  margin: 25px 0;
}
.feature-list li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  font-size: 0.95rem;
}
.feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Pricing Cards Styles (migrated to global) */
.pricing-header {
  background: var(--azul-escuro);
  color: white;
  text-align: center;
  padding: 60px 20px 80px;
  border-radius: 24px;
  margin: 40px auto 0;
  max-width: 1200px;
}
.pricing-container {
  max-width: 1200px;
  margin: -40px auto 50px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.price-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--sombra-forte);
  border-top: 6px solid transparent;
  transition: transform 0.3s;
}
.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--cinza-escuro);
  margin-bottom: 10px;
}
.price span {
  font-size: 1.2rem;
  color: var(--cinza-texto);
  font-weight: normal;
}

.card-freemium {
  border-color: #94a3b8;
}
.card-top3 {
  border-color: var(--laranja);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
  z-index: 2;
  position: relative;
}
.card-top1 {
  border-color: #fbbf24;
}

.feature-list {
  list-style: none;
  text-align: left;
  margin: 25px 0 35px 0;
}
.feature-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  font-size: 15px;
  color: var(--cinza-texto);
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sucesso);
  font-weight: bold;
}

/* COMMON FOOTER STYLES */

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
  margin-bottom: 20px;
}
.footer-col h3,
.footer-col h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--laranja);
}
.footer-bottom {
  text-align: center;
  font-size: 12px;
  padding-top: 10px;
  padding-bottom: 20px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

.footer-olx {
  background: #0f172a !important;
  color: #94a3b8 !important;
  padding: 60px 20px 20px !important;
  margin-top: auto !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  box-sizing: border-box !important;
  font-family: "Inter", sans-serif !important;
}
body.dashboard-ativo .footer-olx {
  display: none !important;
}

/* Correções para o Intl-Tel-Input (Bandeiras de Países) */
.iti {
  width: 100%;
  display: block;
}
.iti__flag-container {
  padding: 2px;
}
.iti input,
.iti input[type="text"],
.iti input[type="tel"] {
  width: 100% !important;
  padding-left: 55px !important;
  border: 2px solid var(--cinza-borda);
  border-radius: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s;
}
.iti input:focus {
  border-color: var(--azul-escuro);
  
  box-shadow: 0 0 0 3px rgba(0, 31, 63, 0.1);
}
.iti__selected-flag {
  border-radius: 8px 0 0 8px;
  background-color: transparent !important;
}
.iti__country-list {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--cinza-borda);
  font-family: inherit;
  z-index: 10000;
}

/* FAQ Arrows */
details summary .fa-chevron-down {
  transition: transform 0.3s ease;
}
details[open] summary .fa-chevron-down {
  transform: rotate(180deg);
}
details summary::-webkit-details-marker {
  display: none;
}

/* GLOBALISED FOOTER CSS */
.mega-footer {
  width: 100%;
  width: 100%;
  background: #0f172a; /* Dark premium blue */
  color: #94a3b8;
  font-family: "Inter", sans-serif;
  padding: 80px 20px 30px;
  position: relative;
  overflow: hidden;
  margin-top: auto; /* For flexbox pages */
  z-index: 10;
}
.mega-footer-cta {
  max-width: 1200px;
  margin: 0 auto 60px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 24px;
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
  position: relative;
  overflow: hidden;
}
.mega-footer-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  transform: rotate(30deg);
}
.mega-footer-cta-text h2 {
  color: white;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 10px 0;
  line-height: 1.2;
}
.mega-footer-cta-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin: 0;
  max-width: 500px;
}
.mega-footer-cta-btns {
  display: flex;
  gap: 15px;
  z-index: 1;
}
.btn-mega-white {
  background: white;
  color: #059669;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 15px;
}
.btn-mega-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.btn-mega-outline {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 15px;
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
}
.btn-mega-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.mega-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.3fr 1.2fr 1.1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mega-col-logo {
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  
  align-items: center;
  
}
.mega-col-logo span {
  color: #10b981;
}
.mega-col-desc {
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 15px;
}
.mega-social {
  display: flex;
  gap: 12px;
}
.mega-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.mega-social a:hover {
  background: #10b981;
  border-color: #10b981;
  transform: translateY(-3px);
}

.mega-col h3 {
  color: white;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;

    white-space: nowrap;}
.mega-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-col ul li {
  margin-bottom: 15px;
}
.mega-col ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 15px;
  display: inline-block;
}
.mega-col ul li a:hover {
  color: #10b981;
  transform: translateX(5px);
}
.mega-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}
.mega-contact-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.mega-contact-list a:hover {
  color: white;
}
.mega-contact-list i {
  margin-top: 4px;
  color: #10b981;
}

.mega-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.mega-bottom-links { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
.mega-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}
.mega-bottom-links a:hover {
  color: white;
}

@media (max-width: 992px) {
  .mega-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .mega-footer-cta {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .mega-footer-cta-text h2 {
    font-size: 26px;
  }
  .mega-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mega-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* --- Extracted Inline Styles --- */
.extracted-style-1 {
  font-size: 24px;
  font-weight: 800;
  color: #1e293b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.extracted-style-2 {
  color: #10b981;
}
.extracted-style-3 {
  background-color: #0f172a;
  padding: 120px 20px 220px;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}
.extracted-style-4 {
  color: white;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}
.extracted-style-5 {
  color: #cbd5e1;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}
.extracted-style-6 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.extracted-style-7 {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  padding: 30px;
  position: relative;
}
.extracted-style-8 {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #64748b;
}
.extracted-style-9 {
  color: var(--azul-escuro);
  margin-bottom: 10px;
}
.extracted-style-10 {
  color: var(--cinza-texto);
  font-size: 14px;
  margin-bottom: 20px;
}
.extracted-style-11 {
  margin-bottom: 15px;
}
.extracted-style-12 {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: var(--cinza-escuro);
  margin-bottom: 5px;
}
.extracted-style-13 {
  width: 100%;
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  box-sizing: border-box;
}
.extracted-style-14 {
  margin-bottom: 20px;
}
.extracted-style-15 {
  width: 100%;
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  box-sizing: border-box;
  font-family: inherit;
}
.extracted-style-16 {
  width: 100%;
  background: var(--azul-escuro);
  color: white;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}
.extracted-style-17 {
  width: 100%;
  max-width: 1200px;
  margin: -160px auto 50px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
  display: block;
  box-sizing: border-box;
}
.extracted-style-18 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
  align-items: stretch;
  width: 100%;
}
.extracted-style-19 {
  background: white;
  border-radius: 20px;
  padding: 35px 25px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.extracted-style-20 {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #10b981;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.extracted-style-21 {
  color: #0f172a;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 5px 0;
}
.extracted-style-22 {
  color: #64748b;
  font-size: 13px;
  margin: 0 0 20px 0;
  min-height: 38px;
}
.extracted-style-23 {
  font-size: 42px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 25px;
}
.extracted-style-24 {
  font-size: 16px;
  color: #94a3b8;
  font-weight: 500;
}
.extracted-style-25 {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}
.extracted-style-26 {
  margin-bottom: 12px;
  color: #475569;
  font-size: 14px;
  display: flex;
}
.extracted-style-27 {
  color: #10b981;
  margin-top: 3px;
  margin-right: 10px;
  font-size: 14px;
}
.extracted-style-28 {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  border: 2px solid #10b981;
  background: transparent;
  color: #10b981;
  cursor: pointer;
  transition: all 0.2s;
}
.extracted-style-29 {
  color: #3b82f6;
  margin-top: 3px;
  margin-right: 10px;
  font-size: 14px;
}
.extracted-style-30 {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  background: #0f172a;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
}
.extracted-style-31 {
  background: white;
  border-radius: 20px;
  padding: 35px 25px;
  border: 2px solid #f97316;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.1), 0 10px 10px -5px rgba(16, 185, 129, 0.04);
  z-index: 5;
}
.extracted-style-32 {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f97316;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
  white-space: nowrap;
}
.extracted-style-33 {
  color: #f97316;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 20px 0;
  min-height: 38px;
}
.extracted-style-34 {
  color: #f97316;
  margin-top: 3px;
  margin-right: 10px;
  font-size: 14px;
}
.extracted-style-35 {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-weight: 800;
  border: none;
  background: #f97316;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.extracted-style-36 {
  color: #8b5cf6;
  margin-top: 3px;
  margin-right: 10px;
  font-size: 14px;
}
.extracted-style-37 {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  background: #8b5cf6;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
}
.extracted-style-38 {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.extracted-style-39 {
  flex: 1;
  min-width: 300px;
}
.extracted-style-40 {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
}
.extracted-style-41 {
  color: white;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px 0;
}
.extracted-style-42 {
  color: #94a3b8;
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}
.extracted-style-43 {
  text-align: right;
  min-width: 200px;
}
.extracted-style-44 {
  color: white;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
}
.extracted-style-45 {
  background: white;
  color: #0f172a;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.extracted-style-46 {
  opacity: 0.7;
}
.extracted-style-47 {
  display: none;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #10b981;
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  z-index: 99999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  font-size: 14px;
}

/* --- Extracted Inline Styles from sobre-nos.html --- */
.extracted-style-100 {
  font-size: 24px;
  font-weight: 800;
  color: #1e293b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.extracted-style-101 {
  color: #10b981;
}
.extracted-style-102 {
  grid-column: 1 / -1;
}
.extracted-style-103 {
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 0 20px;
}
.extracted-style-104 {
  background: white;
  border-radius: 24px;
  padding: 50px;
  border: 1px solid var(--cinza-borda);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.extracted-style-105 {
  flex: 1;
  min-width: 250px;
  text-align: center;
}
.extracted-style-106 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #e2e8f0;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--cinza-fundo);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.extracted-style-107 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.extracted-style-108 {
  color: var(--azul-escuro);
  font-size: 24px;
  font-weight: 800;
}
.extracted-style-109 {
  color: var(--laranja);
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.extracted-style-110 {
  flex: 2;
  min-width: 300px;
}
.extracted-style-111 {
  background: #eff6ff;
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 15px;
  display: inline-block;
}
.extracted-style-112 {
  color: var(--azul-escuro);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}
.extracted-style-113 {
  color: var(--cinza-texto);
  font-size: 16px;
  margin-bottom: 15px;
}
.extracted-style-114 {
  color: var(--cinza-texto);
  font-size: 16px;
  margin-bottom: 25px;
}
.extracted-style-115 {
  display: inline-flex;
  align-items: center;
  background: #0077b5;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(0, 119, 181, 0.3);
}
.extracted-style-116 {
  margin-right: 10px;
  font-size: 20px;
}
.extracted-style-117 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.extracted-style-118 {
  background: white;
  border-radius: 24px;
  padding: 40px 30px;
  border: 1px solid var(--cinza-borda);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.extracted-style-119 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #e2e8f0;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--cinza-fundo);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.extracted-style-120 {
  color: var(--azul-escuro);
  font-size: 22px;
  font-weight: 800;
}
.extracted-style-121 {
  color: var(--laranja);
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.extracted-style-122 {
  background: #eff6ff;
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 15px;
  display: inline-block;
}
.extracted-style-123 {
  color: var(--cinza-texto);
  font-size: 15px;
  margin-bottom: 15px;
}
.extracted-style-124 {
  color: var(--cinza-texto);
  font-size: 15px;
  margin-bottom: 25px;
}
.extracted-style-125 {
  display: inline-flex;
  align-items: center;
  background: #0077b5;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(0, 119, 181, 0.3);
  margin-top: auto;
}
.extracted-style-126 {
  margin-right: 8px;
  font-size: 18px;
}
.extracted-style-127 {
  background: white;
  border-radius: 24px;
  border: 1px solid var(--cinza-borda);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
}
.extracted-style-128 {
  flex: 1;
  padding: 50px;
  min-width: 300px;
}
.extracted-style-129 {
  background: #fef3c7;
  color: #d97706;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 15px;
  display: inline-block;
}
.extracted-style-130 {
  color: var(--azul-escuro);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}
.extracted-style-131 {
  color: var(--cinza-texto);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.extracted-style-132 {
  color: var(--cinza-texto);
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}
.extracted-style-133 {
  flex: 1;
  min-width: 300px;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.extracted-style-134 {
  border: 0;
  min-height: 400px;
  position: absolute;
  inset: 0;
}
.extracted-style-135 {
  opacity: 0.7;
}
.extracted-style-136 {
  position: fixed;
  bottom: 20px;
  right: 15px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: calc(100vw - 30px);
}
.extracted-style-137 {
  display: none;
  width: 350px;
  max-width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #e2e8f0;
}
.extracted-style-138 {
  background: var(--azul-escuro);
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px 20px 0 0;
}
.extracted-style-139 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.extracted-style-140 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.extracted-style-141 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}
.extracted-style-142 {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.2s, background-color 0.2s, opacity 0.2s;
}
.extracted-style-143 {
  font-size: 22px;
  line-height: 1;
  font-weight: bold;
}
.extracted-style-144 {
  padding: 20px;
  background: #f8fafc;
  height: 300px;
  overflow-y: auto;
}
.extracted-style-145 {
  background: white;
  border: 1px solid #e2e8f0;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 15px;
}
.extracted-style-146 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 5px;
}
.extracted-style-147 {
  padding: 12px;
  background: white;
  border-top: 1px solid var(--cinza-borda);
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.extracted-style-148 {
  flex: 1;
  min-width: 0;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--cinza-borda);
  
  font-size: 16px !important;
}
.extracted-style-149 {
  background: var(--laranja);
  color: white;
  border: none;
  border-radius: 8px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.extracted-style-150 {
  font-size: 20px;
  line-height: 1;
}
.extracted-style-151 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
  background: var(--laranja);
}
.extracted-style-152 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid white;
}

/* --- Extracted Inline Styles from software-clubes.html --- */
.extracted-style-200 {
  font-size: 24px;
  font-weight: 800;
  color: #1e293b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.extracted-style-201 {
  color: #10B981;
}
.extracted-style-202 {
  width: 100%;
}
.extracted-style-203 {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:50px;
  max-width:1200px;
  margin:0 auto;
  width:100%;
  padding: 40px 20px;
}
.extracted-style-204 {
  flex: 1;
  min-width: 300px;
  text-align: center;
  margin: 0 auto;
}
.extracted-style-205 {
  font-size: 1.15rem;
  color: #475569;
  max-width: 700px;
  margin: 0 auto 30px;
}
.extracted-style-206 {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.extracted-style-207 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  padding: 20px 30px;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 800;
  color: white;
  background: var(--laranja);
  text-decoration: none;
  text-align: center;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}
.extracted-style-208 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  padding: 20px 30px;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 800;
  color: var(--azul-escuro);
  background: white;
  text-decoration: none;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}
.extracted-style-209 {
  justify-content: center;
}
.extracted-style-210 {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}
.extracted-style-211 {
  text-align: center;
  margin-bottom: 50px;
}
.extracted-style-212 {
  font-size: 36px;
  font-weight: 800;
  color: var(--azul-escuro);
  margin-bottom: 20px;
}
.extracted-style-213 {
  color: var(--laranja);
}
.extracted-style-214 {
  font-size: 18px;
  color: var(--cinza-texto);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.extracted-style-215 {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  padding: 50px 30px;
  text-align: center;
  border: 1px solid var(--cinza-borda);
  overflow: hidden;
}
.extracted-style-216 {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid var(--cinza-borda);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  color: var(--azul-escuro);
  transition: all 0.3s ease;
}
.extracted-style-217 {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid var(--cinza-borda);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  color: var(--azul-escuro);
  transition: all 0.3s ease;
}
.extracted-style-216:hover,
.extracted-style-216:active,
.extracted-style-217:hover,
.extracted-style-217:active {
  background: var(--verde);
  color: white;
  border-color: var(--verde);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.extracted-style-218 {
  display: flex;
  transition: transform 0.5s ease;
  align-items: center;
}
.extracted-style-219 {
  min-width: 100%;
  flex-shrink: 0;
  padding: 0 20px;
}
.extracted-style-220 {
  width: 80px;
  height: 80px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  margin: 0 auto 25px;
}
.extracted-style-221 {
  font-size: 26px;
  color: var(--azul-escuro);
  margin-bottom: 20px;
  font-weight: 800;
}
.extracted-style-222 {
  color: var(--cinza-texto);
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 20px;
}
.extracted-style-223 {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}
.extracted-style-224 {
  margin-bottom: 12px;
  color: #475569;
  font-size: 15px;
}
.extracted-style-225 {
  color: #3b82f6;
  margin-right: 10px;
}
.extracted-style-226 {
  width: 80px;
  height: 80px;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  margin: 0 auto 25px;
}
.extracted-style-227 {
  color: #059669;
  margin-right: 10px;
}
.extracted-style-228 {
  width: 80px;
  height: 80px;
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  margin: 0 auto 25px;
}
.extracted-style-229 {
  color: #dc2626;
  margin-right: 10px;
}
.extracted-style-230 {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--sucesso);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  margin: 0 auto 25px;
}
.extracted-style-231 {
  color: var(--sucesso);
  margin-right: 10px;
}
.extracted-style-232 {
  width: 100%;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}
.extracted-style-233 {
  text-align: center;
  margin-bottom: 40px;
}
.extracted-style-234 {
  font-size: 32px;
  color: var(--azul-escuro);
  font-weight: 800;
  margin-bottom: 15px;
}
.extracted-style-235 {
  color: var(--cinza-texto);
  font-size: 18px;
}
.extracted-style-236 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 800px;
    max-width: 90vw;
    margin: 0 auto;
    align-items: stretch;
}
.extracted-style-237 {
  background: white;
  border: 1px solid var(--cinza-borda);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}
.extracted-style-238 {
  font-size: 18px;
  font-weight: 600;
  color: var(--azul-escuro);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.extracted-style-239 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--laranja);
  background: rgba(16, 185, 129,0.1);
  padding: 4px 12px;
  border-radius: 20px;
}
.extracted-style-240 {
  margin-top: 15px;
  color: var(--cinza-texto);
  line-height: 1.6;
  min-height: 75px;
  display: flex;
  align-items: center;
}
.extracted-style-241 {
  opacity: 0.7;
}
.extracted-style-242 {
  display:none;
}
.extracted-style-243 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 40px;
}
.extracted-style-244 {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--branco);
  cursor: pointer;
  padding-right: 10px;
}
.extracted-style-245 {
  display:none;
  background:var(--erro);
}
.extracted-style-246 {
  color: #3b82f6;
}
.extracted-style-247 {
  font-weight: bold;
}
.extracted-style-248 {
  color: #f59e0b;
}
.extracted-style-249 {
  margin-top:20px;
}
.extracted-style-250 {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}
.extracted-style-251 {
  width: 50px;
  height: 50px;
  background: var(--laranja);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  overflow: hidden;
}
.extracted-style-252 {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: var(--azul-escuro);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid white;
  z-index: 10;
}
.extracted-style-253 {
  font-size: 10px;
}
.extracted-style-254 {
  display: none;
}
.extracted-style-255 {
  margin-right: 5px;
}
.extracted-style-256 {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  border-bottom: 1px solid var(--cinza-borda);
  background: white;
}
.extracted-style-257 {
  display: flex;
  align-items: center;
}
.extracted-style-258 {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--azul-escuro);
  cursor: pointer;
  margin-right: 15px;
}
.extracted-style-259 {
  margin: 0;
  font-size: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.extracted-style-260 {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.extracted-style-261 {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.extracted-style-262 {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--azul-escuro);
  cursor: pointer;
  position: relative;
}
.extracted-style-263 {
  display: none;
  position: absolute;
  top: -5px;
  right: -8px;
  background: var(--erro);
  color: white;
  font-size: 10px;
  font-weight: bold;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
}
.extracted-style-264 {
  display: none;
  position: absolute;
  top: 40px;
  right: -15px;
  width: 320px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.15);
  border: 1px solid var(--cinza-borda);
  z-index: 1000;
  overflow: hidden;
  flex-direction: column;
}
.extracted-style-265 {
  padding: 15px;
  border-bottom: 1px solid var(--cinza-borda);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F8FAFC;
}
.extracted-style-266 {
  margin: 0;
  font-size: 14px;
  color: var(--azul-escuro);
}
.extracted-style-267 {
  background: none;
  border: none;
  font-size: 12px;
  color: var(--azul-mapa);
  cursor: pointer;
  text-decoration: underline;
}
.extracted-style-268 {
  max-height: 350px;
  overflow-y: auto;
}
.extracted-style-269 {
  padding: 20px;
  text-align: center;
  color: var(--texto-mutado);
  font-size: 13px;
}
.extracted-style-270 {
  background: #DCFCE7;
  color: #166534;
  border: 1px solid #BBF7D0;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  width: max-content;
}
.extracted-style-271 {
  width: 10px;
  height: 10px;
  background: #16A34A;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(22, 163, 74, 0.5);
}
.extracted-style-272 {
  display: none;
  background: linear-gradient(90deg, #F59E0B 0%, #D97706 100%);
  padding: 12px 20px;
  color: white;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: -15px;
  position: relative;
  z-index: 99;
}
.extracted-style-273 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 14px;
}
.extracted-style-274 {
  font-size: 18px;
  color: #FEF3C7;
}
.extracted-style-275 {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 18px;
  opacity: 0.8;
  transition: 0.2s;
}
.extracted-style-276 {
  background: linear-gradient(90deg, #FEF3C7 0%, #FDE68A 100%);
  border-left: 5px solid #D97706;
  padding: 15px 20px;
  border-radius: 8px;
  margin: 20px 20px 65px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  flex-wrap: wrap;
  gap: 15px;
}
.extracted-style-277 {
  display: flex;
  align-items: center;
  gap: 15px;
}
.extracted-style-278 {
  background: #FFF;
  padding: 10px;
  border-radius: 50%;
  color: #D97706;
  font-size: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.extracted-style-279 {
  margin: 0;
  color: #92400E;
  font-size: 16px;
  font-weight: 800;
}
.extracted-style-280 {
  margin: 3px 0 0 0;
  color: #B45309;
  font-size: 14px;
}
.extracted-style-281 {
  background: var(--azul-escuro);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  width: 100%;
  max-width: 250px;
}
.extracted-style-282 {
  color: #FBBF24;
}
.extracted-style-283 {
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px dashed #cbd5e1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.extracted-style-284 {
  color: #334155;
  margin-bottom: 5px;
  font-size: 18px;
}
.extracted-style-285 {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}
.extracted-style-286 {
  color: #ff9800;
}
.extracted-style-287 {
  background-color: #94A3B8;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 250px;
}
.extracted-style-288 {
  background: linear-gradient(to right, var(--azul-escuro), #111827);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  box-shadow: var(--sombra-leve);
  flex-wrap: wrap;
  gap: 15px;
}
.extracted-style-289 {
  margin: 0 0 5px 0;
  font-size: 18px;
  color: var(--laranja);
}
.extracted-style-290 {
  margin: 0;
  font-size: 14px;
  color: #cbd5e1;
}
.extracted-style-291 {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 450px;
}
.extracted-style-292 {
  flex: 1;
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  
  font-weight: bold;
  color: var(--azul-escuro);
  background: white;
}
.extracted-style-293 {
  background: var(--azul-escuro);
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}
.extracted-style-294 {
  background: var(--laranja);
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}
.extracted-style-295 {
  color: var(--cinza-texto);
}
.extracted-style-296 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
  margin-top: 30px;
}
.extracted-style-297 {
  background: var(--branco);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid var(--cinza-borda);
}
.extracted-style-298 {
  color: var(--azul-escuro);
  margin-bottom: 15px;
  font-size: 18px;
}
.extracted-style-299 {
  color: var(--laranja);
  margin-right: 10px;
}
.extracted-style-300 {
  color: var(--azul-escuro);
  margin-right: 10px;
}
.extracted-style-301 {
  background: white;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid var(--cinza-borda);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.extracted-style-302 {
  width: 100px;
  height: 100px;
  background: var(--laranja);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #f1f5f9;
}
.extracted-style-303 {
  margin-bottom: 5px;
  color: var(--azul-escuro);
  font-size: 18px;
}
.extracted-style-304 {
  font-size: 13px;
  color: var(--cinza-texto);
  margin-bottom: 15px;
}
.extracted-style-305 {
  background: var(--azul-escuro);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
}
.extracted-style-306 {
  background: var(--branco);
  border-radius: 16px;
  padding: 40px;
  max-width: 900px;
  border: 1px solid var(--cinza-borda);
}
.extracted-style-307 {
  margin-bottom: 30px;
  color: var(--azul-escuro);
  font-size: 24px;
  font-weight: 800;
}
.extracted-style-308 {
  color:var(--sucesso);
  font-size:11px;
}
.extracted-style-309 {
  color:var(--erro);
}
.extracted-style-310 {
  height: 100px;
}
.extracted-style-311 {
  color:var(--azul-escuro);
}
.extracted-style-312 {
  color:#E1306C;
}
.extracted-style-313 {
  color:#0077B5;
}
.extracted-style-314 {
  margin-top: 20px;
}
.extracted-style-315 {
  margin-bottom: 10px;
  color: var(--azul-escuro);
  font-size: 16px;
}
.extracted-style-316 {
  border: 2px dashed var(--cinza-borda);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  background: #F8FAFC;
}
.extracted-style-317 {
  font-size: 30px;
  color: var(--cinza-texto);
  margin-bottom: 10px;
}
.extracted-style-318 {
  margin: 0;
  color: var(--cinza-texto);
  font-weight: bold;
}
.extracted-style-319 {
  margin: 5px 0 0 0;
  font-size: 12px;
  color: #94A3B8;
}
.extracted-style-320 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
  margin-top: 15px;
}
.extracted-style-321 {
  display:none;
  margin-top: 15px;
}
.extracted-style-322 {
  background: #F8FAFC;
  padding: 25px;
  border-radius: 12px;
  border: 1px dashed var(--azul-escuro);
  margin-bottom: 10px;
  margin-top: 10px;
}
.extracted-style-323 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.extracted-style-324 {
  color: var(--azul-escuro);
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}
.extracted-style-325 {
  color: var(--laranja);
  margin-right: 8px;
}
.extracted-style-326 {
  font-size: 18px;
  font-weight: 800;
  color: var(--azul-escuro);
  background: white;
  padding: 5px 15px;
  border-radius: 8px;
  border: 1px solid var(--cinza-borda);
}
.extracted-style-327 {
  width: 100%;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--azul-escuro);
}
.extracted-style-328 {
  font-size: 13px;
  color: var(--cinza-texto);
  margin-top: 12px;
  margin-bottom: 0;
}
.extracted-style-329 {
  background: #FFFBEB;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--laranja);
  margin-top: 20px;
}
.extracted-style-330 {
  display: flex;
  gap: 10px;
}
.extracted-style-331 {
  text-transform: uppercase;
}
.extracted-style-332 {
  background: var(--azul-escuro);
  color: white;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
}
.extracted-style-333 {
  margin-top: 10px;
  font-size: 13px;
  font-weight: bold;
  display: none;
}
.extracted-style-334 {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--cinza-borda);
}
.extracted-style-335 {
  font-size: 13px;
  color: var(--cinza-texto);
  margin-bottom: 20px;
}
.extracted-style-336 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.extracted-style-337 {
  width: 100%;
  max-width: 300px;
  padding: 15px 30px;
  margin-top: 30px;
}
.extracted-style-338 {
  margin-top: 40px;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--cinza-borda);
  background: #f8f9fa;
}
.extracted-style-339 {
  margin-top: 0;
  color: var(--azul-escuro);
  font-size: 18px;
}
.extracted-style-340 {
  color: var(--cinza-texto);
  font-size: 14px;
  margin-bottom: 20px;
}
.extracted-style-341 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.extracted-style-342 {
  padding: 10px 15px;
  border: 1px solid var(--cinza-borda);
  border-radius: 8px;
  background: white;
  cursor: pointer;
}
.extracted-style-343 {
  border-top: 2px dashed var(--erro);
  padding-top: 40px;
  margin-top: 50px;
  width: 100%;
}
.extracted-style-344 {
  color:var(--erro);
  margin-bottom:15px;
  font-size: 20px;
}
.extracted-style-345 {
  color:var(--cinza-escuro);
  font-size:14px;
  margin-bottom:20px;
}
.extracted-style-346 {
  background:#FEE2E2;
  color:var(--erro);
  border:1px solid #FECACA;
  padding:15px 25px;
  border-radius:8px;
  font-weight:bold;
  cursor:pointer;
}
.extracted-style-347 {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--sombra-forte);
  border: 1px solid var(--cinza-borda);
  margin-top: 30px;
}
.extracted-style-348 {
  margin-top:0;
  color: var(--azul-escuro);
  font-size: 20px;
}
.extracted-style-349 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.extracted-style-350 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  background: #F8FAFC;
  padding: 15px;
  border-radius: 8px;
  border: 1px dashed var(--azul-escuro);
}
.extracted-style-351 {
  flex: 2;
  min-width: 150px;
  padding: 10px;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
}
.extracted-style-352 {
  flex: 1;
  min-width: 80px;
  padding: 10px;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
}
.extracted-style-353 {
  background: var(--laranja-mapa);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
.extracted-style-354 {
  margin-top: 15px;
  text-align: right;
}
.extracted-style-355 {
  background: var(--sucesso);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
}
.extracted-style-356 {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  border-bottom: 1px solid var(--cinza-borda);
  padding-bottom: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}
.extracted-style-357 {
  color:var(--azul-escuro);
  font-size: 24px;
  font-weight: 800;
}
.extracted-style-358 {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
}
.extracted-style-359 {
  color: #2563EB;
  font-size: 24px;
}
.extracted-style-360 {
  color: #1E3A8A;
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}
.extracted-style-361 {
  text-align:center;
  background:#FFFBEB;
  padding:15px 30px;
  border-radius:12px;
  border:1px solid #FEF3C7;
  min-width: 150px;
  flex-grow: 1;
}
.extracted-style-362 {
  font-size:36px;
  font-weight:800;
  color:#92400E;
}
.extracted-style-363 {
  color:var(--laranja);
  font-size: 18px;
}
.extracted-style-364 {
  padding:20px 0;
  border-bottom:1px solid var(--cinza-borda);
}
.extracted-style-365 {
  display:flex;
  justify-content:space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.extracted-style-366 {
  color:var(--laranja);
}
.extracted-style-367 {
  color:var(--cinza-escuro);
  margin-top:10px;
}
.extracted-style-368 {
  display: flex;
  flex-wrap: wrap;
  background: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sombra-leve);
}
.extracted-style-369 {
  flex: 1;
  min-width: 300px;
  max-height: 350px;
  border-right: 1px solid var(--cinza-borda);
  border-bottom: 1px solid var(--cinza-borda);
  background: #FAFAFA;
  display: flex;
  flex-direction: column;
}
.extracted-style-370 {
  padding: 15px;
  border-bottom: 1px solid var(--cinza-borda);
}
.extracted-style-371 {
  width:100%;
  padding:10px;
  border-radius:8px;
  border:1px solid var(--cinza-borda);
  
}
.extracted-style-372 {
  flex:1;
  overflow-y:auto;
}
.extracted-style-373 {
  background: white;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
}
.extracted-style-374 {
  height: 24px;
  width: 40%;
  margin-bottom: 15px;
  border-radius: 4px;
}
.extracted-style-375 {
  height: 16px;
  width: 100%;
  margin-bottom: 8px;
  border-radius: 4px;
}
.extracted-style-376 {
  height: 16px;
  width: 80%;
  border-radius: 4px;
}
.extracted-style-377 {
  flex: 2;
  min-width: 300px;
  height: 600px;
  display: flex;
  flex-direction: column;
  background: var(--cinza-fundo);
}
.extracted-style-378 {
  padding: 20px;
  background: var(--branco);
  border-bottom: 1px solid var(--cinza-borda);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.extracted-style-379 {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.extracted-style-380 {
  padding: 15px;
  background: var(--branco);
  border-top: 1px solid var(--cinza-borda);
  display: flex;
  gap: 10px;
  align-items: center;
}
.extracted-style-381 {
  display: none;
  cursor: pointer;
  color: var(--laranja);
  font-size: 22px;
  padding: 5px;
  transition: 0.2s;
}
.extracted-style-382 {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--cinza-borda);
  
  background: #F8FAFC;
  resize: none;
  overflow-y: auto;
  min-height: 45px;
  max-height: 100px;
  font-size: 16px !important;
}
.extracted-style-383 {
  color: var(--azul-escuro);
  font-size: 24px;
  margin-bottom: 10px;
}
.extracted-style-384 {
  color: var(--cinza-texto);
  margin-bottom: 25px;
}
.extracted-style-385 {
  width:auto;
  margin:0 auto;
}
.extracted-style-386 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}
.extracted-style-387 {
  color: var(--azul-escuro);
  font-size: 24px;
  margin-bottom: 5px;
}
.extracted-style-388 {
  color: var(--cinza-texto);
  font-size: 14px;
  margin: 0;
}
.extracted-style-389 {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.extracted-style-390 {
  display:flex;
  align-items:center;
  gap:8px;
}
.extracted-style-391 {
  font-size:14px;
  font-weight:bold;
  color:var(--azul-escuro);
}
.extracted-style-392 {
  width: 70px;
  padding: 10px;
  font-weight: bold;
}
.extracted-style-393 {
  width: auto;
  font-weight: bold;
  padding: 10px 15px;
}
.extracted-style-394 {
  background: var(--azul-escuro);
}
.extracted-style-395 {
  background: white;
  border: 1px solid var(--cinza-borda);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sombra-leve);
}
.extracted-style-396 {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
.extracted-style-397 {
  background: #F1F5F9;
  border-bottom: 1px solid var(--cinza-borda);
}
.extracted-style-398 {
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 4000;
}
.extracted-style-399 {
  max-width: 500px;
  padding: 0;
}
.extracted-style-400 {
  background: #F8FAFC;
  padding: 25px;
  border-bottom: 1px solid #E2E8F0;
  border-radius: 16px 16px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.extracted-style-401 {
  margin: 0;
  color: var(--azul-escuro);
  font-size: 20px;
}
.extracted-style-402 {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--cinza-texto);
}
.extracted-style-403 {
  padding: 25px;
}
.extracted-style-404 {
  margin-bottom: 15px;
}
.extracted-style-405 {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 14px;
}
.extracted-style-406 {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.extracted-style-407 {
  flex: 1;
}
.extracted-style-408 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  padding: 15px;
  background: #F0FDF4;
  border-radius: 8px;
  border: 1px solid #BBF7D0;
}
.extracted-style-409 {
  margin: 0;
}
.extracted-style-410 {
  font-weight: 600;
  font-size: 14px;
  color: #16A34A;
}
.extracted-style-411 {
  width: 100%;
  justify-content: center;
  font-size: 16px;
}
.extracted-style-412 {
  flex-wrap: wrap;
  gap: 15px;
}
.extracted-style-413 {
  flex: 1;
  min-width: 250px;
}
.extracted-style-414 {
  width: 100%;
  max-width: 200px;
  padding: 15px;
  margin-top: 0;
  background: #10b981;
}
.extracted-style-415 {
  width: 100%;
  max-width: 200px;
  padding: 15px;
  margin-top: 0;
  background: var(--azul-escuro);
}
.extracted-style-416 {
  width: 100%;
  max-width: 250px;
  padding: 15px;
  margin-top: 0;
  background: var(--laranja);
}
.extracted-style-417 {
  display: none;
  background: var(--branco);
  padding: 35px;
  border-radius: 16px;
  border: 2px solid var(--laranja);
  margin-bottom: 30px;
}
.extracted-style-418 {
  color: var(--azul-escuro);
  margin-bottom: 25px;
  font-size: 20px;
}
.extracted-style-419 {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.extracted-style-420 {
  width: 100%;
  max-width: 250px;
  padding: 15px;
  margin-top: 0;
}
.extracted-style-421 {
  background: none;
  border: none;
  font-weight: 700;
  color: var(--cinza-texto);
  cursor: pointer;
  padding: 15px;
  width: 100%;
  max-width: 250px;
}
.extracted-style-422 {
  background: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sombra-leve);
}
.extracted-style-423 {
  padding: 25px 35px;
  border-bottom: 1px dashed var(--cinza-borda);
  background: var(--cinza-fundo);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.extracted-style-424 {
  color: var(--azul-escuro);
  font-size: 22px;
  margin-bottom: 5px;
}
.extracted-style-425 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-end;
}
.extracted-style-426 {
  background: white;
  color: var(--azul-escuro);
  border: 2px solid var(--azul-escuro);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
  max-width: 300px;
}
.extracted-style-427 {
  position: relative;
  width: 100%;
  max-width: 300px;
}
.extracted-style-428 {
  width: 100%;
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}
.extracted-style-429 {
  padding: 35px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  border-bottom: 1px solid var(--cinza-borda);
}
.extracted-style-430 {
  background: var(--sucesso-fundo);
  padding: 30px;
  border-radius: 16px;
  border-left: 6px solid var(--sucesso);
}
.extracted-style-431 {
  color: #166534;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.extracted-style-432 {
  font-size: 42px;
  font-weight: 800;
  color: var(--azul-escuro);
}
.extracted-style-433 {
  background: #EFF6FF;
  padding: 30px;
  border-radius: 16px;
  border-left: 6px solid #2563EB;
}
.extracted-style-434 {
  color: #1E40AF;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.extracted-style-435 {
  padding: 20px 35px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--cinza-borda);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.extracted-style-436 {
  margin: 0;
  color: var(--azul-escuro);
  font-size: 16px;
}
.extracted-style-437 {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-end;
}
.extracted-style-438 {
  margin: 0;
  width: 100%;
  max-width: 250px;
}
.extracted-style-439 {
  width:100%;
  max-width: 200px;
  margin: 0;
}
.extracted-style-440 {
  padding: 20px 35px;
}
.extracted-style-441 {
  width:15%;
}
.extracted-style-442 {
  width:35%;
}
.extracted-style-443 {
  width:15%;
  text-align:center;
}
.extracted-style-444 {
  width:15%;
  text-align:right;
}
.extracted-style-445 {
  width:20%;
  text-align:center;
}
.extracted-style-446 {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 31, 63, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 15px;
}
.extracted-style-447 {
  background: white;
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  padding: 30px;
  position: relative;
}
.extracted-style-448 {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F1F5F9;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
}
.extracted-style-449 {
  color: var(--azul-escuro);
  margin-bottom: 20px;
  font-size: 22px;
}
.extracted-style-450 {
  background: var(--sucesso);
  margin-top: 20px;
  width: 100%;
}
.extracted-style-451 {
  margin-bottom: 25px;
}
.extracted-style-452 {
  margin: 0;
  color: var(--azul-escuro);
}
.extracted-style-453 {
  color: var(--cinza-texto);
  margin-top: 5px;
}
.extracted-style-454 {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--cinza-borda);
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.extracted-style-455 {
  display:flex;
  gap:20px;
  align-items:center;
}
.extracted-style-456 {
  width:60px;
  height:60px;
  border-radius:12px;
  background:#fef3c7;
  color:#d97706;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:24px;
}
.extracted-style-457 {
  margin:0;
  font-size:18px;
}
.extracted-style-458 {
  margin:0;
  color:#64748b;
  font-size:14px;
}
.extracted-style-459 {
  text-align:right;
}
.extracted-style-460 {
  font-size:20px;
  font-weight:bold;
  color:#10b981;
}
.extracted-style-461 {
  background:transparent;
  border:none;
  color:#3b82f6;
  font-weight:bold;
  cursor:pointer;
  margin-top:5px;
  text-decoration:underline;
}
.extracted-style-462 {
  display:none;
}
.extracted-style-463 {
  background: white;
  border-radius: 12px;
  border: 1px dashed #cbd5e1;
  padding: 40px;
  text-align: center;
}
.extracted-style-464 {
  margin-bottom:20px;
  filter: grayscale(100%);
  opacity:0.6;
  max-width:100%;
  object-fit:contain;
}
.extracted-style-465 {
  margin:0 0 10px 0;
  color:#334155;
}
.extracted-style-466 {
  color:#64748b;
  max-width:600px;
  margin:0 auto 20px auto;
}
.extracted-style-467 {
  background: var(--branco);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--sombra-forte);
  max-width: 1050px;
  margin: 0 auto;
  border: 1px solid var(--cinza-borda);
}
.extracted-style-468 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--cinza-borda);
  padding-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}
.extracted-style-469 {
  font-size: 24px;
  font-weight: 800;
  color: var(--azul-escuro);
}
.extracted-style-470 {
  width: 100%;
  max-width: 200px;
  padding: 10px 20px;
  margin: 0;
  background: var(--azul-escuro);
}
.extracted-style-471 {
  display: none;
  gap: 15px;
  background: #F8FAFC;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px dashed var(--azul-escuro);
  align-items: flex-end;
  flex-wrap: wrap;
}
.extracted-style-472 {
  flex: 2;
  min-width: 200px;
  width: 100%;
}
.extracted-style-473 {
  flex: 1;
  min-width: 100px;
  width: 100%;
}
.extracted-style-474 {
  width: 100%;
  max-width: 100px;
  padding: 12px 20px;
  margin: 0;
  background: var(--sucesso);
}
.extracted-style-475 {
  background: var(--erro-fundo);
  color: var(--erro);
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  max-width: 100px;
}
.extracted-style-476 {
  width: 40%;
}
.extracted-style-477 {
  width: 20%;
  text-align: center;
}
.extracted-style-478 {
  width: 15%;
  text-align: right;
}
.extracted-style-479 {
  width: 15%;
  text-align: center;
}
.extracted-style-480 {
  width: 10%;
  text-align: center;
}
.extracted-style-481 {
  margin-top: 40px;
  border-top: 2px dashed var(--cinza-borda);
  padding-top: 30px;
}
.extracted-style-482 {
  font-size: 20px;
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 20px;
}
.extracted-style-483 {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.extracted-style-484 {
  flex: 1;
  min-width: 200px;
}
.extracted-style-485 {
  padding: 12px 20px;
  margin: 0;
  background: var(--azul-escuro);
}
.extracted-style-486 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.extracted-style-487 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--cinza-borda);
  flex-wrap: wrap;
}
.extracted-style-488 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--azul-escuro), #0f172a);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-size: 28px;
}
.extracted-style-489 {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.extracted-style-490 {
  height: 120px;
  resize: none;
  flex: 1;
  min-width: 0;
}
.extracted-style-491 {
  width: 80px;
  flex-shrink: 0;
  background: #FFFBEB;
  border: 2px solid #FDE68A;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.2s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.extracted-style-492 {
  font-size: 28px;
  color: var(--laranja);
}
.extracted-style-493 {
  font-size: 11px;
  font-weight: 800;
  color: var(--laranja);
}
.extracted-style-494 {
  background: var(--azul-escuro);
  margin-top: 30px;
  width: 100%;
}
.extracted-style-495 {
  display: none;
  margin-top: 10px;
}
.extracted-style-496 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.extracted-style-497 {
  color: var(--azul-escuro);
  font-size: 18px;
}
.extracted-style-498 {
  background: none;
  border: none;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 700;
  width: 100%;
  text-align: left;
}
.extracted-style-499 {
  border: 1px solid var(--cinza-borda);
  border-radius: 12px;
  margin-bottom: 25px;
}
.extracted-style-500 {
  min-width: 850px;
}
.extracted-style-501 {
  background: #F1F5F9;
}
.extracted-style-502 {
  width: 30%;
}
.extracted-style-503 {
  width: 15%;
  text-align: right;
  color: var(--erro);
}
.extracted-style-504 {
  width: 15%;
  text-align: right;
  color: var(--sucesso);
}
.extracted-style-505 {
  width: 12%;
  text-align: center;
}
.extracted-style-506 {
  width: 13%;
  text-align: right;
}
.extracted-style-507 {
  width: 5%;
  text-align: center;
}
.extracted-style-508 {
  margin-bottom: 25px;
  margin-top: 20px;
}
.extracted-style-509 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F8FAFC;
  padding: 30px;
  border-radius: 12px;
  border: 1px dashed var(--cinza-borda);
  flex-wrap: wrap;
  gap: 20px;
}
.extracted-style-510 {
  width: 100%;
  background: var(--branco);
  border: 2px dashed var(--azul-escuro);
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 800;
  color: var(--azul-escuro);
  cursor: pointer;
}
.extracted-style-511 {
  width: 100%;
  background: #FFFBEB;
  border: 1px solid #FEF3C7;
  padding: 15px 25px;
  border-radius: 12px;
  text-align: center;
}
.extracted-style-512 {
  font-size: 12px;
  color: #92400E;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.extracted-style-513 {
  font-size: 22px;
  font-weight: 900;
  color: #D97706;
}
.extracted-style-514 {
  font-size: 13px;
  color: #B45309;
  font-weight: bold;
  margin-top: 2px;
}
.extracted-style-515 {
  width: 100%;
  text-align: right;
}
.extracted-style-516 {
  font-size: 15px;
  color: var(--cinza-texto);
}
.extracted-style-517 {
  font-weight: 800;
  color: var(--azul-escuro);
}
.extracted-style-518 {
  font-size: 32px;
  font-weight: 800;
  color: var(--azul-escuro);
  margin-top: 10px;
}
.extracted-style-519 {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.extracted-style-520 {
  background: var(--branco);
  color: var(--azul-escuro);
  border: 2.5px solid var(--azul-escuro);
  flex: 1;
  min-width: 250px;
}
.extracted-style-521 {
  background: var(--sucesso);
  flex: 2;
  min-width: 250px;
}
.extracted-style-522 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}
.extracted-style-523 {
  background:none;
  border:none;
  font-weight:bold;
  cursor:pointer;
  text-decoration:underline;
  color: var(--cinza-texto);
  width: 100%;
  text-align: left;
}
.extracted-style-524 {
  background: var(--branco);
  border: 1px solid var(--cinza-borda);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  color: var(--azul-escuro);
  width: 100%;
}
.extracted-style-525 {
  background: var(--branco);
  border: 1px solid #CBD5E1;
  padding: 30px;
  margin: 0 auto;
  max-width: 800px;
  min-width: 600px;
  font-family: 'Times New Roman', serif;
  box-shadow: var(--sombra-forte);
}
.extracted-style-526 {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 45px;
  flex-wrap: wrap;
}
.extracted-style-527 {
  width: 100%;
  max-width: 300px;
  padding: 20px;
  background: var(--azul-escuro);
}
.extracted-style-528 {
  width: 100%;
  max-width: 300px;
  background: #10B981;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
  font-size: 15px;
}
.extracted-style-529 {
  background: var(--branco);
  border-radius: 16px;
  padding: 50px;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--cinza-borda);
  box-shadow: var(--sombra-leve);
}
.extracted-style-530 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.extracted-style-531 {
  color: var(--azul-escuro);
  font-size: 28px;
  font-weight: 800;
  margin: 0;
}
.extracted-style-532 {
  background: #FFFBEB;
  border: 1px solid #FEF3C7;
  padding: 20px;
  border-radius: 12px;
  text-align:center;
  color: #92400E;
  font-weight: bold;
  margin-bottom: 40px;
  font-size: 16px;
}
.extracted-style-533 {
  margin-right: 8px;
}
.extracted-style-534 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.extracted-style-535 {
  border: 2px solid var(--sucesso);
  background: white;
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  position: relative;
}
.extracted-style-536 {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sucesso);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  display:none;
}
.extracted-style-537 {
  color: var(--azul-escuro);
  font-size: 20px;
  margin-bottom: 15px;
}
.extracted-style-538 {
  font-size: 38px;
  font-weight: 800;
  color: var(--azul-escuro);
  margin-bottom: 5px;
}
.extracted-style-539 {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
  text-align: left;
  font-size: 14px;
  line-height: 2;
}
.extracted-style-540 {
  color: var(--sucesso);
}
.extracted-style-541 {
  width: 100%;
  background: #DCFCE7;
  color: #166534;
  border: 1px solid #BBF7D0;
  padding: 16px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition:0.3s;
}
.extracted-style-542 {
  border: 1px solid var(--cinza-borda);
  background: white;
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  position: relative;
}
.extracted-style-543 {
  border: 2.5px solid var(--laranja);
  background: white;
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  position: relative;
}
.extracted-style-544 {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--laranja);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
}
.extracted-style-545 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.extracted-style-546 {
  background: white;
  border-radius: 20px;
  padding: 35px 25px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.extracted-style-547 {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #10B981;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: none;
}
.extracted-style-548 {
  color: #0f172a;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 5px 0;
}
.extracted-style-549 {
  color: #64748b;
  font-size: 13px;
  margin: 0 0 20px 0;
  min-height: 38px;
}
.extracted-style-550 {
  font-size: 42px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 25px;
}
.extracted-style-551 {
  font-size: 16px;
  color: #94a3b8;
  font-weight: 500;
}
.extracted-style-552 {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}
.extracted-style-553 {
  margin-bottom: 12px;
  color: #475569;
  font-size: 14px;
  display: flex;
}
.extracted-style-554 {
  color: #10B981;
  margin-top: 3px;
  margin-right: 10px;
  font-size: 14px;
}
.extracted-style-555 {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  border: 2px solid #10B981;
  background: transparent;
  color: #10B981;
  cursor: pointer;
  transition: all 0.2s;
}
.extracted-style-556 {
  color: #3b82f6;
  margin-top: 3px;
  margin-right: 10px;
  font-size: 14px;
}
.extracted-style-557 {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  background: #0f172a;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
}
.extracted-style-558 {
  background: white;
  border-radius: 20px;
  padding: 35px 25px;
  border: 2px solid #f97316;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.1), 0 10px 10px -5px rgba(16, 185, 129, 0.04);
  z-index: 5;
}
.extracted-style-559 {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #10B981;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: none;
  z-index: 6;
}
.extracted-style-560 {
  color: #f97316;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 20px 0;
  min-height: 38px;
}
.extracted-style-561 {
  color: #f97316;
  margin-top: 3px;
  margin-right: 10px;
  font-size: 14px;
}
.extracted-style-562 {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-weight: 800;
  border: none;
  background: #f97316;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.extracted-style-563 {
  color: #8b5cf6;
  margin-top: 3px;
  margin-right: 10px;
  font-size: 14px;
}
.extracted-style-564 {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  background: #8b5cf6;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
}
.extracted-style-565 {
  color: #64748b;
  margin-top: 5px;
}
.extracted-style-566 {
  display:grid;
  gap:20px;
}
.extracted-style-567 {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
}
.extracted-style-568 {
  margin-bottom:15px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom:15px;
}
.extracted-style-569 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.extracted-style-570 {
  background: #eff6ff;
  color: #3b82f6;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight:800;
  font-size: 11px;
  margin-bottom: 5px;
  display:inline-block;
}
.extracted-style-571 {
  margin:0;
  color: #0f172a;
  font-size: 18px;
}
.extracted-style-572 {
  margin:5px 0 0 0;
  color: #64748b;
  font-size: 14px;
}
.extracted-style-573 {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.extracted-style-574 {
  background: white;
  color: #64748b;
  border: 1px solid #e2e8f0;
  padding: 5px 10px;
  margin-bottom: 10px;
}
.extracted-style-575 {
  font-size: 24px;
  color: var(--azul-escuro);
}
.extracted-style-576 {
  background: #10b981;
}
.extracted-style-577 {
  opacity: 0.5;
}
.extracted-style-578 {
  opacity: 0.5;
  border: 2px solid var(--laranja);
}
.extracted-style-579 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 31, 63, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 15px;
}
.extracted-style-580 {
  font-size: 13px;
  font-weight: bold;
  color: var(--cinza-texto);
}
.extracted-style-581 {
  color:red;
}
.extracted-style-582 {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.extracted-style-583 {
  flex: 1;
  min-width: 150px;
}
.extracted-style-584 {
  background: var(--azul-escuro);
  margin-top: 10px;
}
.extracted-style-585 {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  text-align: center;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 20px;
}
.extracted-style-586 {
  background: white;
  padding: 50px 40px;
  border-radius: 24px;
  max-width: 450px;
}
.extracted-style-587 {
  background: #FEE2E2;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}
.extracted-style-588 {
  font-size: 35px;
  color: #DC2626;
}
.extracted-style-589 {
  color: var(--azul-escuro);
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 800;
}
.extracted-style-590 {
  color: var(--cinza-texto);
  font-size: 15px;
  margin-bottom: 25px;
}
.extracted-style-591 {
  background: var(--azul-escuro);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}
.extracted-style-592 {
  display: none;
  opacity: 0;
}
.extracted-style-593 {
  position: relative;
}
.extracted-style-594 {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
}
.extracted-style-595 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}
.extracted-style-596 {
  text-align: center;
  margin-bottom: 25px;
}
.extracted-style-597 {
  color: var(--azul-escuro);
  font-size: 20px;
}
.extracted-style-598 {
  color: var(--cinza-texto);
  font-size: 14px;
}
.extracted-style-599 {
  justify-content: space-between;
  align-items: center;
}
.extracted-style-600 {
  background: none;
  color: var(--cinza-texto);
  font-size: 13px;
}
.extracted-style-601 {
  color: var(--laranja);
  font-size: 20px;
}
.extracted-style-602 {
  display: flex;
  gap: 15px;
  width: 100%;
}
.extracted-style-603 {
  flex: 4;
}
.extracted-style-604 {
  position: fixed;
  bottom: 20px;
  right: 15px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: calc(100vw - 30px);
}
.extracted-style-605 {
  display: none;
  width: 350px;
  max-width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  margin-bottom: 15px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #E2E8F0;
}
.extracted-style-606 {
  background: var(--azul-escuro);
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px 20px 0 0;
}
.extracted-style-607 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.extracted-style-608 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.extracted-style-609 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}
.extracted-style-610 {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s;
}
.extracted-style-611 {
  font-size: 22px;
  line-height: 1;
  font-weight: bold;
}
.extracted-style-612 {
  padding: 20px;
  background: #F8FAFC;
  height: 300px;
  overflow-y: auto;
}
.extracted-style-613 {
  background: white;
  border: 1px solid #E2E8F0;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 15px;
}
.extracted-style-614 {
  font-size: 11px;
  color: #94A3B8;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}
.extracted-style-615 {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.extracted-style-616 {
  background: white;
  border: 1px solid var(--cinza-borda);
  padding: 5px 10px;
  border-radius: 6px;
  cursor:pointer;
}
.extracted-style-617 {
  display: none;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.extracted-style-618 {
  background: var(--verde);
  color: white;
  border: 1px solid var(--verde);
  padding: 5px 10px;
  border-radius: 6px;
  cursor:pointer;
  font-weight: bold;
  width: 100%;
}
.extracted-style-619 {
  padding: 12px;
  background: white;
  border-top: 1px solid var(--cinza-borda);
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.extracted-style-620 {
  flex: 1;
  min-width: 0;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--cinza-borda);
  
  font-size: 16px !important;
}
.extracted-style-621 {
  background: none;
  border: none;
  color: var(--cinza-texto);
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0 5px;
}
.extracted-style-622 {
  background: var(--laranja);
  color: white;
  border: none;
  border-radius: 8px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.extracted-style-623 {
  font-size: 20px;
  line-height: 1;
}
.extracted-style-624 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
  background: var(--laranja);
}
.extracted-style-625 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid white;
}
.extracted-style-626 {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 31, 63, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: flex-end;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 15px;
  padding-bottom: 30px;
}
.extracted-style-627 {
  background: white;
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  padding: 25px;
  position: relative;
  text-align: center;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
  animation: subirModal 0.3s ease-out;
}
.extracted-style-628 {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #F1F5F9;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
}
.extracted-style-629 {
  color: var(--azul-escuro);
  margin-bottom: 20px;
  font-size: 18px;
}
.extracted-style-630 {
  background: #E8F4FD;
  color: #007EE5;
  border: 2px solid #007EE5;
  padding: 15px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.extracted-style-631 {
  font-size: 20px;
}
.extracted-style-632 {
  background: #E6F4EA;
  color: #137333;
  border: 2px solid #137333;
  padding: 15px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.extracted-style-633 {
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  z-index:9999;
  justify-content:center;
  align-items:center;
}
.extracted-style-634 {
  max-width:400px;
}
.extracted-style-635 {
  margin-top:0;
  color:var(--azul-escuro);
}
.extracted-style-636 {
  display:block;
  margin-bottom:5px;
  font-weight:bold;
  font-size:14px;
  margin-top:15px;
}
.extracted-style-637 {
  width:100%;
  padding:10px;
  border:1px solid var(--cinza-borda);
  border-radius:8px;
}
.extracted-style-638 {
  width:100%;
  margin-top:20px;
}
.extracted-style-639 {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--cinza-borda);
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:20px;
}
.extracted-style-640 {
  width:60px;
  height:60px;
  border-radius:12px;
  background:#e0f2fe;
  color:#0284c7;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:24px;
}
.extracted-style-641 {
  font-size:24px;
  font-weight:bold;
  color:var(--azul-escuro);
}
.extracted-style-642 {
  font-size:12px;
  color:#64748b;
}
.extracted-style-643 {
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.8);
  z-index:9999;
  justify-content:center;
  align-items:center;
  flex-direction:column;
}
.extracted-style-644 {
  background:white;
  padding:20px;
  border-radius:15px;
  width:90%;
  max-width:500px;
  position:relative;
}
.extracted-style-645 {
  position:absolute;
  top:15px;
  right:15px;
  background:none;
  border:none;
  font-size:24px;
  cursor:pointer;
  z-index:100;
}
.extracted-style-646 {
  margin-top:0;
  color:var(--azul-escuro);
  text-align:center;
}
.extracted-style-647 {
  text-align:center;
  color:#64748b;
}
.extracted-style-648 {
  width:100%;
}
.extracted-style-649 {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 31, 63, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 15px;
}
.extracted-style-650 {
  background: white;
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  text-align: center;
  box-shadow: var(--sombra-forte);
}
.extracted-style-651 {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F1F5F9;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}
.extracted-style-652 {
  width: 70px;
  height: 70px;
  background: #EFF6FF;
  color: #2563EB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px auto;
}
.extracted-style-653 {
  color: var(--azul-escuro);
  margin-bottom: 10px;
  font-size: 22px;
}
.extracted-style-654 {
  color: var(--cinza-texto);
  font-size: 14px;
  margin-bottom: 30px;
}
.extracted-style-655 {
  text-align: left;
}
.extracted-style-656 {
  padding: 15px;
  font-size: 16px;
  background: #F8FAFC;
  border: 2px solid var(--cinza-borda);
  width: 100%;
}
.extracted-style-657 {
  background: var(--azul-escuro);
  margin-top: 20px;
  width: 100%;
  padding: 15px;
  font-size: 16px;
}
.extracted-style-658 {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  text-align: center;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 20px;
}
.extracted-style-659 {
  background: #FEF08A;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}
.extracted-style-660 {
  font-size: 35px;
  color: #CA8A04;
}
.extracted-style-661 {
  background: var(--laranja);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}
.extracted-style-662 {
  display: none;
  position: absolute;
  left: -9999px;
  width: 450px;
  height: 750px;
  background-color: #0f172a;
  color: white;
  font-family: 'Inter', sans-serif;
  border-radius: 20px;
  padding: 40px 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.extracted-style-663 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}
.extracted-style-664 {
  color: white;
}
.extracted-style-665 {
  color: #f97316;
}
.extracted-style-666 {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #f1f5f9;
  border: 4px solid #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  overflow: hidden;
}
.extracted-style-667 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.extracted-style-668 {
  font-size: 60px;
  color: #94a3b8;
}
.extracted-style-669 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px 0;
  text-align: center;
  width: 100%;
}
.extracted-style-670 {
  font-size: 16px;
  color: #cbd5e1;
  margin: 0 0 20px 0;
  text-align: center;
}
.extracted-style-671 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}
.extracted-style-672 {
  color: #f97316;
  font-size: 18px;
}
.extracted-style-673 {
  font-size: 18px;
  font-weight: 700;
  color: white;
}
.extracted-style-674 {
  font-size: 14px;
  font-weight: 400;
  color: #94a3b8;
}
.extracted-style-675 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: auto;
  padding-left: 20px;
}
.extracted-style-676 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
}
.extracted-style-677 {
  color: #f97316;
  font-size: 18px;
  width: 20px;
  text-align: center;
}
.extracted-style-678 {
  width: 100%;
  background-color: #1e293b;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
  margin-top: 30px;
}
.extracted-style-679 {
  background: white;
  padding: 8px;
  border-radius: 10px;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.extracted-style-680 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 700;
  color: white;
}
.extracted-style-681 {
  margin: 0;
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.4;
}
.extracted-style-682 {
  max-width: 500px;
}
.extracted-style-683 {
  margin-top: 0;
}
.extracted-style-684 {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 20px;
}
.extracted-style-685 {
  margin-top: 15px;
  display: block;
}
.extracted-style-686 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.extracted-style-687 {
  background: #f1f5f9;
  padding: 5px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}
.extracted-style-688 {
  margin-top: 15px;
}
.extracted-style-689 {
  background: #eff6ff;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}
.extracted-style-690 {
  accent-color: #2563eb;
  width: 16px;
  height: 16px;
}
.extracted-style-691 {
  width: 100%;
  margin-top: 20px;
  font-size: 16px;
}
.extracted-style-692 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.extracted-style-693 {
  background: white;
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.extracted-style-694 {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #64748b;
}
.extracted-style-695 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 10005;
  align-items: center;
  justify-content: center;
}
.extracted-style-696 {
  background: white;
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  padding: 30px;
  position: relative;
}
.extracted-style-697 {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.extracted-style-698 {
  flex: 1;
  background: #f8fafc;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.extracted-style-699 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #ef4444;
  font-weight: bold;
  cursor: pointer;
}
.extracted-style-700 {
  width: 18px;
  height: 18px;
}
.extracted-style-701 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #94a3b8;
}
.extracted-style-702 {
  background: var(--azul-escuro);
  width: 100%;
  margin-top: 20px;
  font-size: 16px;
}
.extracted-style-703 {
  margin-top:8px;
}
.extracted-style-704 {
  background:#fef08a;
  color:#854d0e;
  padding:3px 8px;
  border-radius:6px;
  font-size:11px;
  font-weight:bold;
  margin-right:5px;
  border:1px solid #fde047;
}
.extracted-style-705 {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
}
.extracted-style-706 {
  color: #0f172a;
  font-size: 15px;
}
.extracted-style-707 {
  color: #64748b;
  font-size: 13px;
  margin-top:3px;
}
.extracted-style-708 {
  text-align: right;
}
.extracted-style-709 {
  background: #10b981;
  color: white;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
}
.extracted-style-710 {
  color:#94a3b8;
  font-size:14px;
  text-align:center;
  padding: 20px;
}
.extracted-style-711 {
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 40px;
  text-align: center;
}
.extracted-style-712 {
  width: 80px;
  height: 80px;
  background: #F1F5F9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #94A3B8;
  font-size: 30px;
}
.extracted-style-713 {
  color: #1e293b;
  margin-bottom: 10px;
}
.extracted-style-714 {
  font-size:12px;
  background:#e2e8f0;
  padding:3px 8px;
  border-radius:10px;
}
.extracted-style-715 {
  background:#e0f2fe;
  color:#0369a1;
  padding:3px 8px;
  border-radius:6px;
  font-size:11px;
  font-weight:bold;
  margin-right:5px;
  border:1px solid #bae6fd;
}
.extracted-style-716 {
  background: #eff6ff;
  color: #3b82f6;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight:bold;
  font-size: 12px;
}
.extracted-style-717 {
  background: white;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}
.extracted-style-718 {
  display:flex;
  gap:40px;
  overflow-x:auto;
  padding:20px 0;
}
.extracted-style-719 {
  color:#64748b;
  margin-bottom:15px;
}
.extracted-style-720 {
  font-size:10px;
  color:#94a3b8;
  margin-bottom:5px;
}
.extracted-style-721 {
  /* background: ${bg}; */
  border: 1px solid #e2e8f0;
  border-radius:8px;
  padding:10px;
  width:220px;
  margin-bottom:15px;
  cursor:pointer;
}
.extracted-style-722 {
  display:flex;
  justify-content:space-between;
  margin-bottom:5px;
}
.extracted-style-723 {
  /* dynamic style removed */
}
.extracted-style-724 {
  display:flex;
  justify-content:space-between;
}
.extracted-style-725 {
  /* dynamic style removed */
}
.extracted-style-726 {
  padding:30px;
  text-align:center;
  color:#94a3b8;
}
.extracted-style-727 {
  background:#dcfce7;
  color:#166534;
  padding:5px 10px;
  border-radius:20px;
  font-size:12px;
  font-weight:bold;
}
.extracted-style-728 {
  background:#fee2e2;
  color:#991b1b;
  padding:5px 10px;
  border-radius:20px;
  font-size:12px;
  font-weight:bold;
}
.extracted-style-729 {
  background:none;
  border:1px solid #e2e8f0;
  color:#64748b;
  padding:5px 15px;
  border-radius:8px;
  cursor:pointer;
}
.extracted-style-730 {
  background:#0f172a;
  border:none;
  color:white;
  padding:5px 15px;
  border-radius:8px;
  cursor:pointer;
  margin-left: 5px;
}
.extracted-style-731 {
  background:#10b981;
  border:none;
  color:white;
  padding:5px 15px;
  border-radius:8px;
  cursor:pointer;
}
.extracted-style-732 {
  /* background:${bgBadge}; */
  /* color:${corBadge}; */
  padding:4px 8px;
  border-radius:6px;
  font-size:12px;
  font-weight:bold;
}
.extracted-style-733 {
  border-bottom: 1px solid #f1f5f9;
}
.extracted-style-734 {
  padding:15px 20px;
  font-weight:bold;
  color:#0f172a;
}
.extracted-style-735 {
  padding:15px 20px;
}
.extracted-style-736 {
  padding:15px 20px;
  color:#64748b;
}
.extracted-style-737 {
  padding:15px 20px;
  color:#0f172a;
}
.extracted-style-738 {
  padding:15px 20px;
  text-align:right;
}
.extracted-style-739 {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.extracted-style-740 {
  display: none;
  width: 350px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  margin-bottom: 20px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #E2E8F0;
}
.extracted-style-741 {
  background: var(--azul-escuro);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.extracted-style-742 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}
.extracted-style-743 {
  margin: 0;
  font-size: 16px;
}
.extracted-style-744 {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}
.extracted-style-745 {
  padding: 20px;
  background: #F8FAFC;
  overflow-y: auto;
  height: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.extracted-style-746 {
  background: white;
  border: 1px solid #E2E8F0;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  max-width: 85%;
  align-self: flex-start;
}
.extracted-style-747 {
  padding: 15px;
  background: white;
  border-top: 1px solid #E2E8F0;
  display: flex;
  gap: 10px;
}
.extracted-style-748 {
  flex: 1;
  padding: 10px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
}
.extracted-style-749 {
  background: var(--laranja);
  color: white;
  border: none;
  width: 40px;
  border-radius: 8px;
  cursor: pointer;
}
.extracted-style-750 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--azul-escuro);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  font-size: 24px;
  border: 2px solid white;
}
.extracted-style-751 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.extracted-style-752 {
  padding: 15px;
  width: 100px;
  text-align: center;
  color: var(--azul-escuro);
  font-weight: 800;
}
.extracted-style-753 {
  padding: 15px;
  color: var(--azul-escuro);
  font-weight: 800;
  border-left: 1px solid var(--cinza-borda);
  text-align: center;
}
.extracted-style-754 {
  padding: 15px;
  text-align: center;
  font-weight: bold;
  color: var(--cinza-texto);
  border-bottom: 1px solid var(--cinza-borda);
}
.extracted-style-755 {
  padding: 10px;
  border-left: 1px solid var(--cinza-borda);
  border-bottom: 1px solid var(--cinza-borda);
  text-align: center;
}
.extracted-style-756 {
  background: rgba(239, 68, 68, 0.1);
  color: var(--erro);
  padding: 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: bold;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.extracted-style-757 {
  padding: 10px;
  border-left: 1px solid var(--cinza-borda);
  border-bottom: 1px solid var(--cinza-borda);
  text-align: center;
  transition: 0.3s;
}
.extracted-style-758 {
  color: #CBD5E1;
  font-size: 12px;
  cursor: pointer;
  display:block;
  padding:8px;
}
.extracted-style-759 {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 31, 63, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.extracted-style-760 {
  background: white;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y:auto;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.extracted-style-761 {
  background: rgba(16, 185, 129, 0.1);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
.extracted-style-762 {
  font-size: 30px;
  color: var(--laranja);
}
.extracted-style-763 {
  color: var(--azul-escuro);
  font-size: 22px;
}
.extracted-style-764 {
  color: var(--cinza-texto);
  font-size: 14px;
  margin-top: 5px;
}
.extracted-style-765 {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}
.extracted-style-766 {
  font-weight:bold;
  color:var(--azul-escuro);
  margin-bottom:10px;
  display:block;
}
.extracted-style-767 {
  color:var(--laranja);
  margin-right:8px;
}
.extracted-style-768 {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid var(--cinza-borda);
  font-weight:bold;
  color:var(--azul-escuro);
  cursor:pointer;
}
.extracted-style-769 {
  display:none;
  margin-bottom: 20px;
  padding: 15px;
  background: white;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
}
.extracted-style-770 {
  font-weight:bold;
  color:var(--azul-escuro);
  margin-bottom:10px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.extracted-style-771 {
  color:#10b981;
  margin-right:8px;
}
.extracted-style-772 {
  font-size:12px;
  font-weight:normal;
  color:#64748b;
}
.extracted-style-773 {
  max-height: 150px;
  overflow-y:auto;
  border:1px solid #e2e8f0;
  border-radius:8px;
  padding:10px;
}
.extracted-style-774 {
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px;
  border-bottom:1px solid #f1f5f9;
  cursor:pointer;
}
.extracted-style-775 {
  width:16px;
  height:16px;
  accent-color:var(--sucesso);
}
.extracted-style-776 {
  font-weight:bold;
}
.extracted-style-777 {
  font-size:11px;
  color:white;
  background:#ef4444;
  padding:2px 6px;
  border-radius:10px;
  margin-left:auto;
}
.extracted-style-778 {
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:20px;
}
.extracted-style-779 {
  padding:10px 20px;
  background:white;
  color:var(--cinza-texto);
  border:1px solid #cbd5e1;
  border-radius:8px;
  font-weight:bold;
  cursor:pointer;
}
.extracted-style-780 {
  padding:10px 20px;
  background:var(--sucesso);
  color:white;
  border:none;
  border-radius:8px;
  font-weight:bold;
  cursor:pointer;
}
.extracted-style-781 {
  color:#64748b;
}
.extracted-style-782 {
  font-size:11px;
  color:#64748b;
  background:#f1f5f9;
  padding:2px 6px;
  border-radius:10px;
  margin-left:auto;
}
.extracted-style-783 {
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px;
  cursor:pointer;
}
.extracted-style-784 {
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px;
  cursor:pointer;
  opacity: 0.5;
}
.extracted-style-785 {
  width:16px;
  height:16px;
}
.extracted-style-786 {
  color:#94a3b8;
  text-decoration:line-through;
}
.extracted-style-787 {
  font-size:11px;
  color:white;
  background:#94a3b8;
  padding:2px 6px;
  border-radius:10px;
  margin-left:auto;
}
.extracted-style-788 {
  font-weight:bold;
  color:var(--cinza-escuro);
}
.extracted-style-789 {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid var(--cinza-borda);
}
.extracted-style-790 {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid var(--cinza-borda);
  resize: none;
}
.extracted-style-791 {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  background: var(--sucesso);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.extracted-style-792 {
  background: var(--azul-escuro);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}
.extracted-style-793 {
  text-align:center;
  padding: 30px;
  border-radius:12px;
  border: 1px dashed #cbd5e1;
}
.extracted-style-794 {
  color:#64748b;
  margin-bottom: 15px;
}
.extracted-style-795 {
  background:white;
  color:var(--laranja);
  border:2px solid var(--laranja);
  padding:10px 20px;
  border-radius:8px;
  font-weight:bold;
  cursor:pointer;
}
.extracted-style-796 {
  color: var(--azul-escuro);
  margin-bottom: 20px;
  border-bottom:1px solid #e2e8f0;
  padding-bottom:10px;
}
.extracted-style-797 {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap:20px;
  margin-bottom: 20px;
}
.extracted-style-798 {
  font-weight:bold;
  font-size:14px;
  margin-bottom:5px;
  display:block;
  color:var(--cinza-escuro);
}
.extracted-style-799 {
  width:100%;
  padding:12px;
  border:1px solid #cbd5e1;
  border-radius:8px;
  box-sizing:border-box;
}
.extracted-style-800 {
  background:#f8fafc;
  padding:25px;
  border-radius:12px;
  margin-bottom:25px;
  border:1px solid #e2e8f0;
}
.extracted-style-801 {
  margin-top:0;
  color:var(--azul-escuro);
  margin-bottom:5px;
}
.extracted-style-802 {
  color:var(--sucesso);
  margin-right:8px;
}
.extracted-style-803 {
  font-size:13px;
  color:#64748b;
  margin-bottom:20px;
  line-height:1.5;
}
.extracted-style-804 {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap:20px;
  margin-bottom:15px;
}
.extracted-style-805 {
  margin-top:15px;
}
.extracted-style-806 {
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--cinza-escuro);
  cursor:pointer;
}
.extracted-style-807 {
  width:18px;
  height:18px;
  accent-color:var(--sucesso);
}
.extracted-style-808 {
  margin-bottom: 30px;
}
.extracted-style-809 {
  width:100%;
  padding:12px;
  border:1px dashed #cbd5e1;
  border-radius:8px;
  background:white;
  cursor:pointer;
}
.extracted-style-810 {
  display:flex;
  gap:15px;
  justify-content:flex-end;
}
.extracted-style-811 {
  padding:15px 30px;
  border-radius:12px;
  border:1px solid #cbd5e1;
  background:white;
  color:#64748b;
  font-weight:bold;
  cursor:pointer;
}
.extracted-style-812 {
  background: var(--sucesso);
  color: white;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.extracted-style-813 {
  margin-right:8px;
}
.extracted-style-814 {
  display:none;
  margin-top:20px;
}
.extracted-style-815 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 15px;
}
.extracted-style-816 {
  background:none;
  border:none;
  color:var(--azul-escuro);
  font-weight:bold;
  cursor:pointer;
  font-size:15px;
  display:flex;
  align-items:center;
  gap:8px;
}
.extracted-style-817 {
  display:flex;
  align-items:center;
  gap:15px;
}
.extracted-style-818 {
  margin:0;
  color:var(--azul-escuro);
  font-size:22px;
}
.extracted-style-819 {
  background:var(--sucesso);
  color:white;
  padding:5px 15px;
  border-radius:20px;
  font-size:12px;
  font-weight:bold;
}
.extracted-style-820 {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:20px;
  margin-bottom:35px;
}
.extracted-style-821 {
  background:#f1f5f9;
  padding:25px;
  border-radius:12px;
  text-align:center;
  border:1px solid #e2e8f0;
}
.extracted-style-822 {
  font-size:32px;
  font-weight:900;
  color:var(--azul-escuro);
}
.extracted-style-823 {
  font-size:16px;
  font-weight:normal;
  color:#64748b;
}
.extracted-style-824 {
  font-size:13px;
  color:#64748b;
  font-weight:bold;
  margin-top:5px;
  text-transform:uppercase;
}
.extracted-style-825 {
  background:#fff7ed;
  padding:25px;
  border-radius:12px;
  text-align:center;
  border:1px solid #ffedd5;
}
.extracted-style-826 {
  font-size:32px;
  font-weight:900;
  color:#ea580c;
}
.extracted-style-827 {
  font-size:13px;
  color:#ea580c;
  font-weight:bold;
  margin-top:5px;
  text-transform:uppercase;
}
.extracted-style-828 {
  background:#f0fdf4;
  padding:25px;
  border-radius:12px;
  text-align:center;
  border:1px solid #dcfce7;
}
.extracted-style-829 {
  font-size:32px;
  font-weight:900;
  color:#16a34a;
}
.extracted-style-830 {
  font-size:13px;
  color:#16a34a;
  font-weight:bold;
  margin-top:5px;
  text-transform:uppercase;
}
.extracted-style-831 {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:15px;
}
.extracted-style-832 {
  color:var(--azul-escuro);
  margin:0;
  font-size:18px;
}
.extracted-style-833 {
  display:flex;
  gap:10px;
}
.extracted-style-834 {
  padding:10px 15px;
  border:1px solid #cbd5e1;
  border-radius:8px;
  width:250px;
}
.extracted-style-835 {
  background:white;
  border:1px solid #cbd5e1;
  padding:10px 15px;
  border-radius:8px;
  color:#64748b;
  cursor:pointer;
  font-weight:bold;
}
.extracted-style-836 {
  color:#10b981;
  margin-right:5px;
}
.extracted-style-837 {
  overflow-x:auto;
  background:white;
  border-radius:12px;
  border:1px solid #e2e8f0;
}
.extracted-style-838 {
  width:100%;
  border-collapse:collapse;
  text-align:left;
}
.extracted-style-839 {
  background:#f8fafc;
  border-bottom:1px solid #e2e8f0;
}
.extracted-style-840 {
  padding:15px;
  color:#475569;
  font-size:13px;
}
.extracted-style-841 {
  padding:15px;
  color:#475569;
  font-size:13px;
  text-align:right;
}
.extracted-style-842 {
  border-bottom:1px solid #e2e8f0;
  transition:0.2s;
}
.extracted-style-843 {
  padding:15px;
}
.extracted-style-844 {
  font-weight:bold;
  color:var(--azul-escuro);
  margin-bottom:3px;
}
.extracted-style-845 {
  padding:15px;
  color:#475569;
  font-size:14px;
}
.extracted-style-846 {
  padding:15px;
  color:#64748b;
  font-size:14px;
}
.extracted-style-847 {
  background:#fee2e2;
  color:#991b1b;
  padding:6px 12px;
  border-radius:20px;
  font-size:12px;
  font-weight:bold;
}
.extracted-style-848 {
  margin-right:5px;
}
.extracted-style-849 {
  padding:15px;
  text-align:right;
}
.extracted-style-850 {
  background:var(--sucesso);
  color:white;
  border:none;
  padding:8px 15px;
  border-radius:6px;
  cursor:pointer;
  font-size:13px;
  font-weight:bold;
  box-shadow:0 2px 5px rgba(16,185,129,0.2);
}
.extracted-style-851 {
  display:none;
  background:#f1f5f9;
  color:#64748b;
  border:1px solid #cbd5e1;
  padding:8px 15px;
  border-radius:6px;
  cursor:pointer;
  font-size:13px;
}
.extracted-style-852 {
  background:#dcfce7;
  color:#166534;
  padding:6px 12px;
  border-radius:20px;
  font-size:12px;
  font-weight:bold;
}
.extracted-style-853 {
  background:#f1f5f9;
  color:#94a3b8;
  border:none;
  padding:8px 15px;
  border-radius:6px;
  font-size:13px;
  font-weight:bold;
  cursor:default;
}
.extracted-style-854 {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  width: 320px;
  z-index: 999999;
  border-left: 4px solid #fbbf24;
}
.extracted-style-855 {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 18px;
  color: #94a3b8;
  cursor: pointer;
}
.extracted-style-856 {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.extracted-style-857 {
  background: #fef3c7;
  color: #d97706;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.extracted-style-858 {
  margin: 0 0 5px 0;
  color: #0f172a;
  font-size: 15px;
}
.extracted-style-859 {
  color: #64748b;
  font-size: 13px;
  margin: 0 0 15px 0;
  line-height: 1.4;
}
.extracted-style-860 {
  text-decoration: none;
}
.extracted-style-861 {
  background: #1e293b;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 13px;
  cursor: pointer;
  width: 100%;
}
.extracted-style-862 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 9999;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}
.extracted-style-863 {
  position: relative;
  z-index: 100;
  background:white;
  border-radius:20px;
  padding:40px;
  width:100%;
  max-width:500px;
  margin: 40px auto;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}
.extracted-style-864 {
  position:absolute;
  top:15px;
  right:15px;
  background:none;
  border:none;
  font-size:28px;
  cursor:pointer;
  color:#64748B;
  line-height:1;
}
.extracted-style-865 {
  display:flex;
  gap:0;
  margin-bottom:30px;
  border-bottom:2px solid var(--cinza-borda);
  padding-bottom:0;
}
.extracted-style-866 {
  flex:1;
  padding:12px;
  background:none;
  border:none;
  font-weight:700;
  font-size:14px;
  color:#10B981;
  cursor:pointer;
  border-bottom:3px solid #10B981;
  transition:all 0.2s;
}
.extracted-style-867 {
  flex:1;
  padding:12px;
  background:none;
  border:none;
  font-weight:700;
  font-size:14px;
  color:#9ca3af;
  cursor:pointer;
  border-bottom:3px solid transparent;
  transition:all 0.2s;
}
.extracted-style-868 {
  text-align:center;
  margin-bottom:24px;
}
.extracted-style-869 {
  font-size:24px;
  font-weight:800;
  color:#1e293b;
  margin-bottom:4px;
}
.extracted-style-870 {
  color:#10B981;
}
.extracted-style-871 {
  color:#6b7280;
  font-size:14px;
  margin:0;
}
.extracted-style-872 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}
.extracted-style-873 {
  border:2px solid #e2e8f0;
  border-radius:12px;
  padding:14px 10px;
  cursor:pointer;
  text-align:center;
  transition:all 0.2s;
  background:white;
}
.extracted-style-874 {
  display:block;
  font-size:22px;
  margin-bottom:8px;
  color:#94a3b8;
}
.extracted-style-875 {
  font-size:13px;
  font-weight:700;
  color:#64748b;
}
.extracted-style-876 {
  border:2px solid #10B981;
  border-radius:12px;
  padding:14px 10px;
  cursor:pointer;
  text-align:center;
  transition:all 0.2s;
  background:#f0fdf4;
}
.extracted-style-877 {
  display:block;
  font-size:22px;
  margin-bottom:8px;
  color:#10B981;
}
.extracted-style-878 {
  font-size:13px;
  font-weight:700;
  color:#1e293b;
}
.extracted-style-879 {
  margin-bottom:12px;
}
.extracted-style-880 {
  display:block;
  margin-bottom:5px;
  font-weight:600;
  font-size:13px;
  color:#374151;
}
.extracted-style-881 {
  color:#ef4444;
}
.extracted-style-882 {
  width:100%;
  padding:11px 14px;
  border:2px solid #e5e7eb;
  border-radius:10px;
  box-sizing:border-box;
  font-size:14px;
  
}
.extracted-style-883 {
  margin-bottom:24px;
}
.extracted-style-884 {
  display:none;
  background:#fef2f2;
  color:#dc2626;
  border-radius:8px;
  padding:10px 14px;
  font-size:13px;
  margin-bottom:12px;
  border-left:3px solid #dc2626;
}
.extracted-style-885 {
  width:100%;
  padding:13px;
  border-radius:12px;
  background:linear-gradient(135deg,#10B981,#059669);
  color:white;
  font-weight:700;
  border:none;
  cursor:pointer;
  font-size:15px;
}
.extracted-style-886 {
  margin-bottom:6px;
}
.extracted-style-887 {
  text-align:right;
  margin:0 0 14px 0;
}
.extracted-style-888 {
  background:none;
  border:none;
  color:#10B981;
  font-size:13px;
  cursor:pointer;
  font-weight:600;
}
.extracted-style-889 {
  width:100%;
  padding:13px;
  border-radius:12px;
  background:var(--azul-escuro);
  color:white;
  font-weight:700;
  border:none;
  cursor:pointer;
  font-size:15px;
  margin-bottom:15px;
}

/* --- Extracted Inline Styles from torneio.html --- */
.extracted-style-900 {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  background: rgba(30, 41, 59, 0.9);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.extracted-style-901 {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
}
.extracted-style-902 {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 8px;
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 5px;
  min-width: 120px;
}
.extracted-style-903 {
  color: white;
  padding: 10px;
  cursor: pointer;
  display: block;
}
.extracted-style-904 {
  display: none;
}
.extracted-style-905 {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.extracted-style-906 {
  display: none;
  background: var(--success);
}
.extracted-style-907 {
  background: var(--accent);
  display: none;
}
.extracted-style-908 {
  position: relative;
}
.extracted-style-909 {
  margin-top: 0;
}
.extracted-style-910 {
  width: 100%;
}
.extracted-style-911 {
  margin-top: 0;
  color: white;
}
.extracted-style-912 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.extracted-style-913 {
  flex: 1;
  padding-right: 10px;
}
.extracted-style-914 {
  color: white;
  font-size: 12px;
  font-weight: bold;
}
.extracted-style-915 {
  margin-top: 5px;
}
.extracted-style-916 {
  flex: 1;
  padding-left: 10px;
}
.extracted-style-917 {
  margin-top: 5px;
  background: var(--bg);
}
.extracted-style-918 {
  margin-top: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.extracted-style-919 {
  width: 18px;
  height: 18px;
}
.extracted-style-920 {
  color: white;
  font-size: 14px;
  margin: 0;
}
.extracted-style-921 {
  background: rgba(16, 185, 129, 0.1);
  color: #f59e0b;
  border: 1px solid #f59e0b;
}
.extracted-style-922 {
  background: #3b82f6;
  color: white;
}
.extracted-style-923 {
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
}
.extracted-style-924 {
  margin-top: 10px;
  margin-bottom: 5px;
}
.extracted-style-925 {
  color: var(--muted);
}
.extracted-style-926 {
  color:var(--muted);
}
.extracted-style-927 {
  text-align:center;
  padding: 40px;
  background: var(--card);
  border-radius:12px;
  margin-top:20px;
  border:1px dashed #334155;
}
.extracted-style-928 {
  font-size:40px;
  color:#334155;
  margin-bottom:15px;
}
.extracted-style-929 {
  color: var(--muted);
  font-size:16px;
}
.extracted-style-930 {
  color:#ef4444;
  font-weight:bold;
}
.extracted-style-931 {
  margin-top: 20px;
}
.extracted-style-932 {
  color:var(--muted);
  margin-bottom:15px;
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:13px;
}
.extracted-style-933 {
  font-size:10px;
  color:#94a3b8;
  margin-top:5px;
  margin-bottom: 5px;
}
.extracted-style-934 {
  /* color:${color1}; */
}
.extracted-style-935 {
  /* color:${color2}; */
}
.extracted-style-936 {
  cursor:pointer;
}
.extracted-style-937 {
  /* background: ${bgt}; */
  /* border: ${border}; */
  position: relative;
  padding-top: 15px;
  /* ${isAdmin ?; */
}
.extracted-style-938 {
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.extracted-style-939 {
  flex:1;
}
.extracted-style-940 {
  /* ${styleN1} */ margin-bottom:5px;
  font-size:14px;
  text-overflow:ellipsis;
  overflow:hidden;
  white-space:nowrap;
  max-width:110px;
}
.extracted-style-941 {
  font-size:10px;
  color:#ef4444;
  margin-left:5px;
}
.extracted-style-942 {
  /* ${styleN2} */ font-size:14px;
  text-overflow:ellipsis;
  overflow:hidden;
  white-space:nowrap;
  max-width:110px;
}

/* --- Extracted Inline Styles from angariador.html --- */
.extracted-style-1000 {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  background: rgba(30, 41, 59, 0.9);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.extracted-style-1001 {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
}
.extracted-style-1002 {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 8px;
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 5px;
  min-width: 120px;
}
.extracted-style-1003 {
  color: white;
  padding: 10px;
  cursor: pointer;
  display: block;
}
.extracted-style-1004 {
  display: none;
}
.extracted-style-1005 {
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 10px 0;
}
.extracted-style-1006 {
  color: var(--texto-claro);
}
.extracted-style-1007 {
  color: var(--laranja-mapa);
}
.extracted-style-1008 {
  color: var(--texto-mutado);
  margin-bottom: 30px;
  font-size: 14px;
}
.extracted-style-1009 {
  margin-left: 8px;
}
.extracted-style-1010 {
  color: var(--erro);
  font-size: 13px;
  margin-top: 15px;
  font-weight: bold;
  display: none;
}
.extracted-style-1011 {
  display: flex;
  align-items: center;
  gap: 15px;
}
.extracted-style-1012 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
}
.extracted-style-1013 {
  font-weight: bold;
  color: var(--texto-mutado);
}
.extracted-style-1014 {
  background: var(--bg-input);
  border: 1px solid var(--borda);
  color: var(--texto-claro);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}
.extracted-style-1015 {
  background: transparent;
  border: 1px solid var(--borda);
  color: var(--erro);
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}
.extracted-style-1016 {
  margin: 0 0 30px 0;
}
.extracted-style-1017 {
  border-top: 4px solid var(--laranja-mapa);
}
.extracted-style-1018 {
  margin: 0;
  font-size: 13px;
  color: var(--texto-mutado);
}
.extracted-style-1019 {
  color: var(--sucesso);
}
.extracted-style-1020 {
  color: var(--azul-brand);
}
.extracted-style-1021 {
  margin-bottom: 40px;
}
.extracted-style-1022 {
  margin: 0 0 10px 0;
}
.extracted-style-1023 {
  color: var(--texto-mutado);
  margin: 0;
  font-size: 14px;
}
.extracted-style-1024 {
  margin: 0 0 15px 0;
}
.extracted-style-1025 {
  text-align: center;
  color: var(--texto-mutado);
}
.extracted-style-1026 {
  margin-left: 8px;
}
.extracted-style-1027 {
  background: rgba(16,185,129,0.2);
  color: var(--sucesso);
}
.extracted-style-1028 {
  background: rgba(16, 185, 129,0.2);
  color: var(--laranja-mapa);
}
.extracted-style-1029 {
  font-weight: bold;
}
.extracted-style-1030 {
  text-align: center;
  color: var(--texto-mutado);
}

/* --- Extracted Inline Styles from arbitro.html --- */
.extracted-style-1100 {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  border-radius: 8px;
  background: rgba(30, 41, 59, 0.9);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.extracted-style-1101 {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
}
.extracted-style-1102 {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 8px;
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 5px;
  min-width: 120px;
}
.extracted-style-1103 {
  color:white;
  padding: 10px;
  cursor: pointer;
  display:block;
}
.extracted-style-1104 {
  display:none;
}
.extracted-style-1105 {
  text-align:center;
  color:#EF4444;
}
.extracted-style-1106 {
  text-align:center;
}
.extracted-style-1107 {
  font-size:11px;
  color:#64748b;
  margin-top:5px;
}
.extracted-style-1108 {
  text-align:center;
  margin-bottom: 15px;
  color:#94A3B8;
  font-size:12px;
  font-weight:bold;
  text-transform:uppercase;
}
.extracted-style-1109 {
  /* ${styleN1}; */
}
.extracted-style-1110 {
  font-size:10px;
  color:#ef4444;
}
.extracted-style-1111 {
  border-bottom:1px dashed #E2E8F0;
  margin:15px 0;
}
.extracted-style-1112 {
  /* ${styleN2}; */
}


/* ============================================================
   FASE 1 — FUNDAÇÃO PREMIUM (skills-main / Emil Kowalski)
   ============================================================ */

/* --- Feedback de pressão global em todos os botões --- */
button,
[role="button"],
.btn-cliente,
.btn-laranja,
.btn-verde,
.btn-outline,
.btn-danger,
.btn-secundario,
.btn-cancelar,
.btn-salvar {
  transition: transform 160ms var(--ease-out), background-color 200ms var(--ease-out), opacity 200ms var(--ease-out);
}

button:active,
[role="button"]:active,
.btn-cliente:active,
.btn-laranja:active,
.btn-verde:active,
.btn-outline:active,
.btn-danger:active,
.btn-secundario:active,
.btn-cancelar:active,
.btn-salvar:active {
  transform: scale(0.97);
}

/* --- Tipografia premium — tracking size-specific --- */
h1 {
  letter-spacing: -0.025em;
  line-height: 1.1;
}
h2 {
  letter-spacing: -0.015em;
  line-height: 1.2;
}
h3 {
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* ============================================================
   FASE 2 — COMPONENTES E NAVBAR (skills-main / Emil Kowalski)
   ============================================================ */

/* --- Acordeão FAQ animado --- */
details > *:not(summary) {
  animation: accordionOpen 200ms var(--ease-out) both;
}

@keyframes accordionOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

details summary {
  cursor: pointer;
  list-style: none;
  transition: color 150ms var(--ease-out);
}

details summary::-webkit-details-marker {
  display: none;
}

/* --- Animação de entrada para modais --- */
.modal-overlay,
[class*="modal-conteudo"],
[class*="modal-body"],
[class*="painel-modal"] {
  animation: modalEntrar 250ms var(--ease-out) both;
}

@keyframes modalEntrar {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(4px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ============================================================
   FASE 3 — SCROLL REVEAL E DELIGHT (páginas de marketing)
   ============================================================ */

/* --- Scroll reveal (aplicar classe .reveal-scroll em secções do index/software) --- */
.reveal-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 500ms var(--ease-out),
    transform 500ms var(--ease-out);
}

.reveal-scroll.visivel {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger para grupos */
.reveal-scroll:nth-child(2) { transition-delay: 60ms; }
.reveal-scroll:nth-child(3) { transition-delay: 120ms; }
.reveal-scroll:nth-child(4) { transition-delay: 180ms; }
.reveal-scroll:nth-child(5) { transition-delay: 240ms; }

/* --- Stagger de entrada de cards de resultados --- */
.resultado-card {
  animation: cardEntrar 300ms var(--ease-out) both;
}

@keyframes cardEntrar {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   FASE 4 — BOTÕES CTA PREMIUM (hover lift + press — MapaPro style)
   ============================================================ */

/* Hover "saltinho" — apenas em dispositivos com rato real */
@media (hover: hover) and (pointer: fine) {
  .btn-laranja:hover,
  .btn-cliente:hover,
  .btn-procurar:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.4);
  }
  .btn-verde:hover,
  .btn-pro:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.4);
  }
  .btn-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.3);
  }
  .btn-sou-profissional:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.35);
  }
  .btn-secundario:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  /* Cards de marketing com hover lift */
  .card-missao:hover,
  .stat-card:hover,
  .feature-card:hover,
  .bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }
}

/* Press feedback — todos os botões de CTA */
.btn-laranja:active,
.btn-cliente:active,
.btn-procurar:active,
.btn-verde:active,
.btn-pro:active,
.btn-principal:active,
.btn-sou-profissional:active {
  transform: scale(0.96) translateY(0) !important;
}

/* Shimmer nos botões de destaque (efeito brilho a deslizar) */
.btn-cta-shimmer {
  position: relative;
  overflow: hidden;
}
.btn-cta-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  animation: shimmer-slide 2.8s infinite 1.2s;
  pointer-events: none;
}
@keyframes shimmer-slide { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }


/* Stagger extra para grupos grandes */
.reveal-scroll:nth-child(6) { transition-delay: 300ms; }
.reveal-scroll:nth-child(7) { transition-delay: 360ms; }
.reveal-scroll:nth-child(8) { transition-delay: 420ms; }

/* --- Acessibilidade: prefers-reduced-motion (DEVE SER O ÚLTIMO BLOCO) --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}



/* ESTILOS PARA OS BOTOES DE SUGESTAO DA MARIA (CHAT) */
.btn-opcao-ia {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 10px 16px;
    color: #334155;
    font-size: 13.5px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    display: block;
    width: 100%;
    margin-bottom: 6px;
}
.btn-opcao-ia:hover {
    background: #10b981;
    border-color: #10b981;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.2);
}
.btn-opcao-ia:active {
    transform: scale(0.98);
}
\n
/* ========================================================================= */
/* MELHORIAS DE UI/UX - TRANSIÇÕES SUAVES (REANIMATED-STYLE)                 */
/* ========================================================================= */

/* 1. Transições Nativas entre Ecrãs (Chrome 126+) */
@view-transition {
  navigation: auto;
}

/* 2. Suavidade no carregamento de qualquer página */
body {
  animation: pageFadeIn 0.4s ease-out forwards;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* 3. Transições Suaves ao mudar de Menu no Painel (Tabs) */
.tab-content.ativo {
  display: block !important;
  animation: tabFadeIn 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) forwards !important;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 4. Garantir transições suaves globais nos botões e menus */
.btn-principal, 
.btn-pro, 
.btn-outline-priv, 
.menu-item,
.card,
.price-card {
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s, border-color 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}
\n
/* ========================================================================= */
/* VERCEL AUDIT FIXES                                                        */
/* ========================================================================= */

/* 1. Typography */
h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}
.table-pro, .table-pro td, .tabular-data {
    font-variant-numeric: tabular-nums;
}


/* 2. Focus States (Accessibility) */
:focus-visible {
    outline: 2px solid var(--laranja) !important;
    outline-offset: 2px !important;
    border-radius: 4px;
}

/* ========================================================================= */
/* FIX: MARIA CHAT WIDGET — Z-INDEX E COR DE TEXTO                           */
/* Resolve sobreposição de botões e letras ilegíveis no painel               */
/* ========================================================================= */

/* Janela do chat Maria — z-index explícito para não tapar botões do painel */
#chatIAPublico,
#chatIA {
  z-index: 150 !important;
  max-height: 75vh;
  overflow-y: hidden;
}

/* Chat body com scroll interno */
#chatIABodyPublico,
#chatIABody {
  overflow-y: auto;
  max-height: calc(75vh - 120px);
}

/* Cor das mensagens da Maria (IA) — legível em qualquer fundo */
.msg-ia {
  color: var(--azul-escuro, #1e293b) !important;
  background: #f0fdf4 !important;
  border: 1px solid #d1fae5 !important;
}

/* Mascote/botão flutuante — sempre acima do conteúdo mas abaixo de modais */
.mascote-btn {
  z-index: 140 !important;
}

/* ========================================================================= */
/* FIX: SHIMMER (BRILHO) APLICADO AOS BOTÕES PRINCIPAIS CTA                 */
/* O CSS da animação já existia (.btn-cta-shimmer), agora é auto-aplicado   */
/* ========================================================================= */

/* Aplicar shimmer automaticamente nos botões de destaque principais */
.btn-principal,
.btn-pro,
#btn-reg-clube,
#btn-log-clube,
#btn-certificar,
[class*="btn-upgrade"],
[class*="btn-cta"] {
  position: relative;
  overflow: hidden;
}

.btn-principal::after,
.btn-pro::after,
#btn-reg-clube::after,
#btn-certificar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  animation: shimmer-slide 2.8s infinite 1.2s;
  pointer-events: none;
}


@media (max-width: 900px) {
  .landing-hero-title {
    font-size: 32px !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
  }
  .landing-hero-subtitle {
    font-size: 16px !important;
  }
  .carousel-slide {
    width: 100vw !important;
    max-width: 100% !important;
    padding: 20px !important;
    box-sizing: border-box !important;
  }
  .landing-hero-title-mobile-fix {}
}
/* Fade Out Transition */
body.fade-out {
  opacity: 0 !important;
  transition: opacity 0.3s ease-in !important;
}


/* Filter Chips Container (Mobile & Desktop) */
.filter-chips-container { display: flex; width: 100%; max-width: 100vw; justify-content: flex-start;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.filter-chips-container::-webkit-scrollbar {
    display: none;
}

/* Chip Base Styles */
.filter-chip-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cinza-texto);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}
.filter-chip-wrapper:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}
.filter-chip-wrapper i {
    margin-right: 8px;
}

/* Wrapper Específico p/ Select (Acesso, Classificação) */
.filter-chip-select-wrap {
    padding-right: 12px;
}
.filter-chip-select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    outline: none;
    color: inherit;
    font-weight: 600;
    font-size: 14px;
    padding-right: 15px;
    cursor: pointer;
}
/* Ícone seta p/ baixo */
.filter-chip-select-wrap::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 14px;
    pointer-events: none;
}

/* Toggle Checkbox (Adaptado) */
.filter-chip-toggle input[type="checkbox"] {
    display: none;
}
.filter-chip-toggle:has(input:checked) {
    background: var(--brand-primary, #059669);
    color: white;
    border-color: var(--brand-primary, #059669);
}
.filter-chip-toggle:has(input:checked) i {
    color: white !important;
}

@media (min-width: 769px) {
    .filter-chips-container {
        flex-wrap: wrap; /* em desktop podem enrolar */
    }
}


@media (max-width: 900px) {
  .extracted-style-215 {
    padding: 30px 15px !important;
    width: 100% !important;
    border-radius: 16px !important;
  }
  .extracted-style-210 {
    padding: 0 15px !important;
  }
  .extracted-style-212 {
    font-size: 28px !important;
  }
  .extracted-style-214 {
    font-size: 16px !important;
  }
  .extracted-style-219 {
    padding: 0 10px !important;
  }
  .extracted-style-216 {
    left: 5px !important;
  }
  .extracted-style-217 {
    right: 5px !important;
  }
}
