/* Painel Digital - Visual Moderno, Escuro, Responsivo */

:root {
  --primary: #00A86B;
  --secondary: #4F9AFF;
  --bg: #181c23;
  --bg-card: #232a34;
  --bg-light: #232a34;
  --text: #f5f5f5;
  --text-muted: #b0b8c1;
  --danger: #ff4f4f;
  --success: #00A86B;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.13);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.10);
  --transition: 0.18s cubic-bezier(.4,0,.2,1);
}

html, body {
  width: 100%;
  min-height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

.painel-layout {
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  overflow-x: hidden;
}

.menu-lateral {
  width: 220px;
  background: var(--bg-card);
  padding: 2.2rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  box-shadow: var(--shadow-card);
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  transition: left var(--transition);
}
.menu-lateral .logo {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,168,107,0.10);
}
.menu-lateral nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.menu-lateral nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 0.85rem 1.2rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.08rem;
  transition: background var(--transition), color var(--transition);
}
.menu-lateral nav a.active, .menu-lateral nav a:hover {
  background: var(--primary);
  color: #fff;
}
.logout-btn {
  margin-top: 2.5rem;
  width: 100%;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.9rem 0;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  box-shadow: var(--shadow-card);
}
.logout-btn:hover {
  background: #9B59B6;
}
.top-bar {
  width: 100%;
  background: var(--bg-card);
  padding: 1.1rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 9;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
}
.saldo {
  font-size: 1.18rem;
  color: var(--primary);
  font-weight: 800;
  margin-right: 1.2rem;
}
.painel-content {
  flex: 1;
  padding: 2.5rem 2.2rem 2.2rem 2.2rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
.card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 1.2rem;
  margin: 0 0.5rem 1.5rem 0.5rem;
  min-width: 180px;
  max-width: 240px;
  text-align: center;
  color: var(--text);
  font-size: 1.13rem;
  font-weight: 700;
  text-decoration: none;
  transition: box-shadow var(--transition), background var(--transition), color var(--transition);
  border: 1.5px solid transparent;
}
.card-link:hover {
  background: #181c23;
  color: var(--primary);
  box-shadow: 0 8px 32px rgba(0,168,107,0.13);
  border: 1.5px solid var(--primary);
}
.form-painel {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2.2rem 2rem 1.5rem 2rem;
  max-width: 500px;
  margin: 0 auto 2.5rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-painel label {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.3rem;
  font-size: 1.08rem;
}
.form-painel input, .form-painel select, .form-painel textarea {
  background: #181c23;
  color: var(--text);
  border: 1.5px solid #4F9AFF44;
  border-radius: 8px;
  padding: 0.8rem 1.1rem;
  font-size: 1.09rem;
  margin-bottom: 0.7rem;
  outline: none;
  transition: border var(--transition);
  font-family: 'Inter', Arial, sans-serif;
}
.form-painel input:focus, .form-painel select:focus, .form-painel textarea:focus {
  border: 1.5px solid var(--primary);
}
.form-painel button, .btn, .btn-adicionar-saldo {
  background: linear-gradient(90deg, var(--primary) 60%, var(--secondary) 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 1rem 0;
  font-size: 1.18rem;
  font-weight: 800;
  cursor: pointer;
  margin-top: 0.7rem;
  box-shadow: 0 2px 8px rgba(0,168,107,0.08);
  transition: background var(--transition), box-shadow var(--transition);
  display: inline-block;
  letter-spacing: 0.5px;
}
.form-painel button:hover, .btn:hover, .btn-adicionar-saldo:hover {
  background: linear-gradient(90deg, #9B59B6 0%, var(--secondary) 100%);
  box-shadow: 0 4px 16px rgba(155,89,182,0.13);
  color: #fff;
}
.alerta-erro, .alert-erro {
  background: var(--danger);
  color: #fff;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  margin-bottom: 1.2rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(255,79,79,0.10);
}
.alerta-sucesso, .alert-sucesso {
  background: var(--success);
  color: #fff;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  margin-bottom: 1.2rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(0,168,107,0.10);
}
.tabela-historico {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.tabela-historico th, .tabela-historico td {
  padding: 1.1rem 1.1rem;
  text-align: left;
  font-size: 1.08rem;
}
.tabela-historico th {
  background: var(--secondary);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.tabela-historico tr:nth-child(even) {
  background: var(--bg-card);
}
.tabela-historico tr:nth-child(odd) {
  background: var(--bg);
}
.tabela-historico td a {
  color: var(--primary);
  text-decoration: underline;
}
@media (max-width: 1100px) {
  .painel-content {
    max-width: 100vw;
    padding: 2rem 0.7rem;
  }
}
@media (max-width: 900px) {
  .painel-layout {
    flex-direction: column;
    width: 100vw;
    min-width: 0;
    overflow-x: hidden;
  }
  .menu-lateral {
    position: fixed;
    left: -260px;
    top: 0;
    height: 100vh;
    width: 80vw;
    max-width: 270px;
    min-width: 180px;
    z-index: 1001;
    background: var(--bg-card);
    box-shadow: var(--shadow-card);
    transition: left var(--transition);
    flex-direction: column;
    align-items: flex-start;
    padding: 2.2rem 1.2rem 1.2rem 1.2rem;
    border-radius: 0 16px 16px 0;
  }
  .menu-lateral.open {
    left: 0;
  }
  .menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
  }
  .top-bar {
    position: relative;
    min-height: 60px;
    border-radius: 0 0 16px 16px;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }
  body, html {
    overflow-x: hidden !important;
    width: 100vw;
    max-width: 100vw;
  }
  .painel-content {
    padding: 1.2rem 0.7rem;
    width: 100vw;
    min-width: 0;
    box-sizing: border-box;
    overflow-x: hidden;
  }
}
@media (max-width: 600px) {
  .form-painel,
  .login-container,
  .card-link,
  .painel-content {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    margin: 0 !important;
  }
  .card-link {
    min-width: unset !important;
    max-width: unset !important;
    margin: 0 0 1.2rem 0 !important;
  }
  .painel-content > div,
  .painel-content > .form-painel,
  .painel-content > .card-link {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
  }
  .painel-content {
    padding: 0.7rem 0.2rem !important;
    width: 100vw !important;
    min-width: 0 !important;
    box-sizing: border-box;
    overflow-x: hidden !important;
  }
  .tabela-historico th, .tabela-historico td {
    padding: 0.7rem 0.4rem;
    font-size: 0.99rem;
  }
}
.login-bg {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-container {
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 3.2rem 2.5rem 2.5rem 2.5rem;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: center;
}
.login-container h2 {
  color: var(--primary);
  margin-bottom: 1.2rem;
  font-weight: 800;
}
.login-container input {
  width: 100%;
  background: #181c23;
  color: var(--text);
  border: 1.5px solid #4F9AFF44;
  border-radius: 8px;
  padding: 0.8rem 1.1rem;
  font-size: 1.09rem;
  margin-bottom: 0.7rem;
  outline: none;
  transition: border var(--transition);
  font-family: 'Inter', Arial, sans-serif;
}
.login-container input:focus {
  border: 1.5px solid var(--primary);
}
.login-container button {
  width: 100%;
  background: linear-gradient(90deg, var(--primary) 60%, var(--secondary) 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 1rem 0;
  font-size: 1.18rem;
  font-weight: 800;
  cursor: pointer;
  margin-top: 0.7rem;
  box-shadow: 0 2px 8px rgba(0,168,107,0.08);
  transition: background var(--transition), box-shadow var(--transition);
  display: inline-block;
  letter-spacing: 0.5px;
}
.login-container button:hover {
  background: linear-gradient(90deg, #9B59B6 0%, var(--secondary) 100%);
  box-shadow: 0 4px 16px rgba(155,89,182,0.13);
  color: #fff;
}
.erro-msg, .sucesso-msg {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  margin-bottom: 1.1rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.08rem;
}
.erro-msg {
  background: var(--danger);
  color: #fff;
}
.sucesso-msg {
  background: var(--success);
  color: #fff;
}
.fade-in {
  animation: fadeIn 0.7s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- INÍCIO DAS MELHORIAS DE RESPONSIVIDADE --- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Garantir que formulários, containers e cards ocupem toda a largura em telas pequenas */
@media (max-width: 600px) {
  .form-painel,
  .login-container,
  .card-link,
  .painel-content {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    box-sizing: border-box;
  }
  .card-link {
    min-width: unset;
    max-width: unset;
    margin: 0 0 1.2rem 0;
  }
}
/* --- FIM DAS MELHORIAS DE RESPONSIVIDADE --- */

/* --- MELHORIA: Fontes e Títulos Responsivos --- */
@media (max-width: 600px) {
  h1, h2, h3 {
    font-size: 1.25rem !important;
    line-height: 1.2;
    word-break: break-word;
  }
  p, label, .form-painel label, .tabela-historico th, .tabela-historico td {
    font-size: 0.98rem !important;
  }
  .saldo {
    font-size: 1.01rem !important;
  }
  .card-link {
    font-size: 1.01rem !important;
    padding: 1.2rem 0.7rem !important;
  }
  .btn, .btn-adicionar-saldo, .form-painel button {
    font-size: 1.01rem !important;
    padding: 0.8rem 0 !important;
  }
  .top-bar {
    padding: 0.7rem 0.5rem !important;
  }
}
/* --- FIM MELHORIA: Fontes e Títulos Responsivos --- */

/* --- MELHORIA: Tabelas responsivas como cards no mobile --- */
@media (max-width: 600px) {
  .tabela-historico, .tabela-historico thead, .tabela-historico tbody, .tabela-historico tr, .tabela-historico th, .tabela-historico td {
    display: block;
    width: 100%;
  }
  .tabela-historico thead {
    display: none;
  }
  .tabela-historico tr {
    margin-bottom: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: var(--bg-card);
    padding: 1rem 0.5rem;
  }
  .tabela-historico td {
    position: relative;
    padding-left: 48%;
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid #3332;
    min-height: 2.2rem;
    margin-bottom: 0.5rem;
    box-sizing: border-box;
  }
  .tabela-historico td:before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    top: 0;
    font-weight: bold;
    color: var(--secondary);
    white-space: nowrap;
    font-size: 0.97rem;
  }
  .tabela-historico td:last-child {
    border-bottom: none;
  }
}
/* --- FIM MELHORIA: Tabelas responsivas como cards no mobile --- */

/* --- MELHORIA: Menu Hamburger e UX Mobile --- */
.menu-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background var(--transition);
}

.menu-hamburger:hover {
  background: rgba(255,255,255,0.1);
}

.menu-hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .menu-hamburger {
    display: block;
    position: relative;
    z-index: 1002;
  }
  
  /* Animação do hamburger quando menu está aberto */
  .menu-lateral.open + div .menu-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-lateral.open + div .menu-hamburger span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-lateral.open + div .menu-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* Overlay para fechar menu ao clicar fora */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
  }
  
  .menu-overlay.active {
    display: block;
  }
  
  /* Melhorar acessibilidade dos links do menu */
  .menu-lateral nav a {
    padding: 1rem 1.2rem;
    font-size: 1.1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}
/* --- FIM MELHORIA: Menu Hamburger e UX Mobile --- */

.painel-titulo {
  margin-bottom: 2.2rem;
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.painel-titulo-destaque {
  color: var(--primary);
}
.painel-subtitulo {
  margin-bottom: 2.5rem;
  font-size: 1.18rem;
  color: var(--text-muted);
}
.painel-cards-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.card-icon {
  font-size: 2.7rem;
}
@media (max-width: 600px) {
  .painel-titulo {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }
  .painel-subtitulo {
    font-size: 1.01rem;
    margin-bottom: 1.1rem;
  }
  .painel-cards-container {
    gap: 1rem;
  }
  .card-icon {
    font-size: 2rem;
  }
}

.perfil-estatisticas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.perfil-estatistica-card {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  border-left: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.perfil-estatistica-card.gasto { border-left-color: var(--secondary); }
.perfil-estatistica-card.pedidos { border-left-color: #ffa500; }
.perfil-estatistica-card.concluidos { border-left-color: var(--primary); }
.perfil-estatistica-icone { font-size: 2rem; margin-bottom: 0.5rem; }
.perfil-estatistica-titulo { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.perfil-estatistica-valor { font-size: 1.5rem; font-weight: 800; }
.perfil-estatistica-valor.saldo { color: var(--primary); }
.perfil-estatistica-valor.gasto { color: var(--secondary); }
.perfil-estatistica-valor.pedidos { color: #ffa500; }
.perfil-estatistica-valor.concluidos { color: var(--primary); }

.perfil-formularios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.perfil-form-titulo {
  color: var(--primary);
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  font-weight: 800;
}
.input-readonly {
  background: #333 !important;
  color: #888 !important;
}
.input-info {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  display: block;
}
.perfil-info-adicional {
  max-width: 800px;
  margin-top: 2rem;
}
.perfil-info-adicional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.perfil-info-card {
  background: #181c23;
  padding: 1rem;
  border-radius: 8px;
}
.perfil-info-titulo {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.perfil-info-valor {
  color: var(--text-muted);
  font-family: monospace;
}
.perfil-info-valor.status {
  color: var(--primary);
  font-weight: 600;
}
@media (max-width: 600px) {
  .perfil-estatisticas-grid,
  .perfil-formularios-grid,
  .perfil-info-adicional-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .perfil-info-adicional {
    max-width: 100% !important;
    margin: 0 !important;
  }
}

/* ====== RESPONSIVIDADE AVANÇADA ====== */

/* Tablet: 601px a 1024px */
@media (min-width: 601px) and (max-width: 1024px) {
  .painel-content {
    max-width: 98vw;
    padding: 1.5rem 1.2rem;
  }
  .form-painel {
    max-width: 90vw;
    padding: 1.5rem 1.2rem;
  }
  .card-link {
    min-width: 140px;
    max-width: 220px;
    font-size: 1.05rem;
    padding: 1.5rem 0.8rem;
  }
  .painel-cards-container {
    gap: 1.2rem;
  }
  .perfil-estatisticas-grid,
  .perfil-formularios-grid,
  .perfil-info-adicional-grid {
    gap: 1.2rem;
  }
  .menu-lateral {
    width: 170px;
    min-width: 120px;
    padding: 1.5rem 0.7rem 1rem 0.7rem;
  }
  .top-bar {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
  }
  .painel-titulo {
    font-size: 1.7rem;
  }
}

/* Desktop: acima de 1024px */
@media (min-width: 1025px) {
  .painel-content {
    max-width: 900px;
    padding: 2.5rem 2.2rem 2.2rem 2.2rem;
  }
  .form-painel {
    max-width: 500px;
    padding: 2.2rem 2rem 1.5rem 2rem;
  }
  .card-link {
    min-width: 180px;
    max-width: 240px;
    font-size: 1.13rem;
    padding: 2.2rem 1.2rem;
  }
  .painel-cards-container {
    gap: 2rem;
  }
  .perfil-estatisticas-grid,
  .perfil-formularios-grid,
  .perfil-info-adicional-grid {
    gap: 1.5rem;
  }
  .menu-lateral {
    width: 220px;
    min-width: 180px;
    padding: 2.2rem 1.2rem 1.2rem 1.2rem;
  }
  .top-bar {
    padding: 1.1rem 2.2rem;
    font-size: 1.18rem;
  }
  .painel-titulo {
    font-size: 2.3rem;
  }
}

/* ====== Suporte Flutuante WhatsApp ====== */
.suporte-whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.suporte-whatsapp-btn:hover {
  background: #128c7e;
  box-shadow: 0 8px 32px rgba(37,211,102,0.18);
}
.suporte-whatsapp-popup {
  position: fixed;
  right: 24px;
  bottom: 94px;
  z-index: 10000;
  background: #232a34;
  color: #f5f5f5;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 1.3rem 1.1rem 1.1rem 1.1rem;
  width: 320px;
  max-width: 90vw;
  display: none;
  flex-direction: column;
  gap: 1rem;
  animation: fadeIn 0.3s;
}
.suporte-whatsapp-popup.ativo {
  display: flex;
}
.suporte-whatsapp-popup .suporte-fechar {
  position: absolute;
  top: 10px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}
.suporte-whatsapp-popup .suporte-titulo {
  font-weight: 800;
  font-size: 1.15rem;
  color: #25d366;
  margin-bottom: 0.3rem;
}
.suporte-whatsapp-popup .suporte-msg {
  font-size: 1.01rem;
  color: #f5f5f5;
  margin-bottom: 0.7rem;
}
.suporte-whatsapp-popup .suporte-wpp-link {
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.8rem 0;
  font-size: 1.09rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 0.5rem;
  display: block;
}
.suporte-whatsapp-popup .suporte-wpp-link:hover {
  background: #128c7e;
}
@media (max-width: 600px) {
  .suporte-whatsapp-btn {
    right: 12px;
    bottom: 12px;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  .suporte-whatsapp-popup {
    right: 8px;
    bottom: 68px;
    width: 96vw;
    min-width: 0;
    padding: 1rem 0.7rem 0.7rem 0.7rem;
  }
}
