@font-face {
    font-family: "Poppins";
    src:
        url(/analise/assets/css/font/Poppins-Regular.woff2) format("woff2"),
        url(/analise/assets/css/font/Poppins-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
:root {
    --bg-outer: #f1f5f9;
    --bg-chat: #23c78e;
    --bg-bot: #f3f4f6;
    --bubble-user: #dbeafe;
    --bubble-user-dark: #bfdbfe;
    --text-user: #1e40af;
    --header-bg: #ffffff;
    --header-text: #1e293b;
    --header-border: #e2e8f0;
    --accent: #10b981;
    --accent-hover: #059669;
    --accent-soft: #ecfdf5;
    --text-main: #334155;
    --text-muted: #94a3b8;
    --bg-quick: #ffffff;
    --border-subtle: #aee5bd;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {   
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-outer);
  color: var(--text-main);  	  
	  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 16px;
  padding-bottom: 16px;
	  
}

@media (max-height:780px){	
	body {
		padding: 0;
	}
}

h1 {
	max-width: 230px;
    text-align: center;
    margin: 0 auto;
	font-size: .95rem;
	font-weight: 600;
	color: #334155;
	flex: 1
	}
	
	.chat-header-left a {
	text-decoration: none;
}

.funil-ad-label {
  display: block;
  margin: 0 auto;	
  font-size: 0.75rem;
  color: #242426;
  padding-left: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}
.ad-slot {
    display: block;
	margin: 0 auto 15px auto;
	text-align: center;
}
.funil-ad {
  position: relative;
  max-width: 336px;
  max-height: 280px;
  width: 100%;
  margin: 0 auto -10px auto;
  text-align: center;
  overflow: hidden;
  font-size: 14px;
  color: #a3a0a0;
  /*
  border-radius: 10px;
  border: 2px dotted;
  height: 250px;
  */
}

.funil-list li.alt {
  list-style: none;
  display: flex;
  justify-content: center;
}

.chat-shell {		
    width: 100%;
    max-width: 440px;    
    align-items: center;
    justify-content: center;		
}
.chat-frame {
    width: 100%;
    max-width: 440px;
    max-height: 95svh;
	height: 100%;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: rgb(35 199 142 / 0.85);
    box-shadow:
        0 20px 25px -5px rgb(0 0 0 / 0.1),
        0 10px 10px -5px rgb(0 0 0 / 0.04);
    border: 1px solid rgb(255 255 255 / 0.5);
	border-radius: 10px 10px 30px 30px;
    backdrop-filter: blur(6px);
overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

@media (max-height:780px){
	.chat-frame {		
		max-height: 100svh; 
		border-radius: 10px 10px 0 0;
	}
}

.chat-header {
	position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 5px 3px 5px;
    background: var(--header-bg);
    color: var(--header-text);
    border-bottom: 1px solid var(--header-border);
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.02);
}
.chat-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.chat-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
	position: absolute;
	right: 6px;
	bottom: 5px;
	}

.ad_container {
	padding: 0 !important;
	margin-top: 6px;
}
.ad_container:before {
	display: none;
	margin: 6px auto;
}

.chat-avatar {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, #34d399, #059669);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 3px 8px rgb(0 0 0 / 0.15);
}
.chat-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.chat-title-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f172a;
}
.chat-title-status {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 2px rgb(16 185 129 / 0.2);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(16 185 129 / 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px #fff0;
    }
    100% {
        box-shadow: 0 0 0 0 #fff0;
    }
}
.icon-btn {
    width: 32px;
    height: 32px;    
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0;
    color: var(--text-muted);
    font-size: 16px;
    transition: background 0.2s;
    font-weight: 700;
    cursor: pointer;	
	border-left: 2px solid #aee5bd;
	border-top: 2px solid #aee5bd;
	border-right: 0;
	border-bottom: 0;
	border-radius: 15px 0 0 0;	
}

.icon-btn:hover {
    background: #f1f5f9;
    color: var(--text-main);
}

.kebab {
	font-weight: 900;
	color: #000;
	font-size: 1.3em;
}

.chat-body {
    flex: 1;
    min-height: 0;
    padding: 8px 12px 4px;
    background: url(/crediapp/cartao/assets/img/bg7.jpg);
    background-size: 465px;
    background-repeat: round;
    display: flex;
    flex-direction: column;
    position: relative;
}
.chat-body:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(255 255 255 / 0.3);
    pointer-events: none;
}
.chat-body-inner {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #fff0;
    max-width: 100%;
    overflow-wrap: break-word;
}
.chat-body-inner::-webkit-scrollbar {
    width: 5px;
}
.chat-body-inner::-webkit-scrollbar-track {
    background: #fff0;
}
.chat-body-inner::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}
.chat-day-divider {
    position: relative;
    text-align: center;
    margin-bottom: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgb(255 255 255 / 0.8);
    display: inline-block;
    padding: 2px 10px;
    border-radius: 10px;
    align-self: center;
    width: 92%;
}
.message-row {
    display: flex;
    margin-bottom: 12px;
    max-width: 100%;
    animation: fadeUp 0.35s ease;
}
.message-row.bot {
    justify-content: flex-start;
    padding-right: 25px;
}
.message-row.user {
    justify-content: flex-end;
    padding-left: 40px;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.message-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}
.message-bubble.bot {
    background: #f5f7fa;
    border: 1px solid rgb(0 0 0 / 0.04);
    backdrop-filter: blur(2px);
}
.message-bubble.user {
    position: relative;
    background: linear-gradient(135deg, var(--bubble-user), var(--bubble-user-dark));
    color: var(--text-user);
    border-top-right-radius: 4px;
    border: 1px solid #bfdbfe;
}
.message-meta {
    margin-top: 4px;
    font-size: 0.68rem;
    text-align: right;
    opacity: 0.7;
}
.message-highlight {
    font-weight: 600;
    color: var(--accent);
}
.message-muted {
    color: var(--text-muted);
}
.quick-replies {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.chip {
    padding: 12px 14px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgb(0 0 0 / 0.06);
    font-size: 1rem;
    color: var(--text-main);
    cursor: pointer;
    transition: 0.22s ease;
    line-height: 1.35;
    box-shadow: 0 3px 6px rgb(0 0 0 / 0.16);
    opacity: 0;
    transform: translateY(6px);
    animation: chipIn 0.45s ease forwards;
}
@keyframes chipIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.chip:hover {
    background: #f2f6fa;
    border-color: rgb(0 0 0 / 0.12);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgb(0 0 0 / 0.08);
}
.chip .destaq {
    font-weight: 600;
    font-size: 1rem;
}
.chip .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
    margin-right: 6px;
}
.funil-wrapper {
    display: flex;
    justify-content: flex-start;
    max-width: 100%;
    overflow: hidden;
    padding-right: 0;
    margin-bottom: 8px;
}
.funil-card {
    width: 100%;
    max-width: 100%;
    background: #fff;
    color: var(--text-main);
    border-radius: 16px 16px 16px 4px;
    border: 1px solid var(--border-subtle);
    padding: 12px;
    box-shadow: var(--shadow-soft);
    box-sizing: border-box;
    overflow: hidden;
}
.funil-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    color: #1e293b;
    margin-bottom: 8px;
}

.funil-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  width: 100%;
  padding: 0 15px 0 15px;
  border: 1px solid var(--border-subtle); 
  border-radius: 0 10px 10px 0;
  border-top: 2px solid var(--border-subtle);
  border-right: 2px solid var(--border-subtle);
  border-bottom: 2px solid var(--border-subtle);
  border-left: 0;
  margin-top: 0;
}
.funil-card-img {
  max-width: 100px;
  height: auto;  
  border-radius: 10px 0 0 10px;
  border-top: 2px solid var(--border-subtle);
  border-left: 2px solid var(--border-subtle);
  border-bottom: 2px solid var(--border-subtle);  
}
.funil-card-header h2 {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    flex: 1;
}
h2 {
	font-size: 1rem;
	color: green;
}
.funil-card h3 {
    margin-top: 15px;
    font-size: 1rem;
	color: green;
}
.funil-list {
    margin: 12px 0 8px;
    padding-left: 20px;
    font-size: 1rem;
    color: #4e5c72;
}
.funil-list li {
    margin-bottom: 4px;
}
.funil-note {
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 20px;
    line-height: 1.4;
    padding: 10px;
}
.funil-link-oficial {
    color: #23b258;
    font-weight: 700;
    text-decoration: none;
}
.answer-row {
    margin-top: 8px;
}
.answer-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.answer-chip {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(0deg, #f9fefa 0%, rgb(179 237 195 / 0.16) 7%, #ffffff 100%);
    color: #074e36;
    cursor: pointer;
    box-shadow: 0 2px 4px rgb(0 0 0 / 0.05);
    transition: 0.2s;
    width: 100%;
    text-align: center;
}
.answer-chip:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
}

.optButton {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #989898ab;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(0deg, #f9fefa 0%, rgba(179, 237, 195, 0.16) 7%, #fff 100%);
  color: #074e36;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: 0.2s;
  width: 100%;
  text-align: center; 
  margin-top: 10px;
}

.iconOpt {
	width: 43px;
  position: absolute;
  left: 15px;
  margin: -8px 0 0 0;
  filter: brightness(110%) contrast(100%) sepia(50%) invert(77%);
}

.optButton:hover .iconOpt {
    filter: none;
}

.btnAlt {
	margin: 0;
}

.chat-footer {
    padding: 10px 12px 14px;
    border-top: 1px solid var(--border-subtle);
    background: #fff;
	text-align: center;
}
.chat-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 15px;
    border-radius: 24px;
    border: 1px solid var(--border-subtle);
    background: #f8fafc;
    transition: border-color 0.2s;
}
.chat-input-row:focus-within {
    border-color: #cbd5e1;
    background: #fff;
}
.icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd5e1;
    font-size: 16px;
    color: #64748b;
    background: #fff;
	margin-left: -10px;
}
.chat-input-row input {
    flex: 1;
    background: #fff0;
    border: none;
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
}
.chat-input-row input::placeholder {
    color: #94a3b8;
}
.send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ade80, #16a34a);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 2px 5px rgb(22 163 74 / 0.3);
    cursor: pointer;
    transition: transform 0.1s;
	position: absolute;
	right: 15px;
}
.send-btn:active {
    transform: scale(1);
}
.send-btn span {
    font-size: 16px;
    margin-left: 2px;
}
.termos {
    margin-top: 8px;
    text-align: center;
    font-size: 0.85rem;
}
.termos a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 6px;
    transition: color 0.2s;
}
.termos a:hover {
    color: var(--accent);
}
.typing-bubble {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-bot);
    border-radius: 16px;
    padding: 10px 14px;
    width: auto;
    border: none;
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}
.typing-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #6ee7b7, #34d399);
    border-radius: 50%;
    animation: blink 1.4s infinite ease-in-out;
}
.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}
.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes blink {
    0% {
        opacity: 0.3;
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        transform: translateY(-3px);
    }
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }
}
.destaq {
    color: #000;
    font-weight: 700;
}
.cadastro-form {
    margin-top: 12px;
    background: #fffc;
    backdrop-filter: blur(4px);
    border-radius: 14px;
    padding: 14px 16px;
    border: 1px solid rgb(0 0 0 / 0.06);
    box-shadow: 0 3px 6px rgb(0 0 0 / 0.05);
    font-size: 1rem;
    line-height: 1.4;
}
.cadastro-form p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #334155;
}
.cadastro-form label {
    display: block;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
}
.cadastro-form input {
    width: 100%;
    margin-top: 4px;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #f8fafc;
    font-size: 1rem;
    transition: 0.2s;
}
.cadastro-form input:focus {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 2px rgb(16 185 129 / 0.15);
    outline: none;
}
.cadastro-actions {
    margin-top: 12px;
    display: flex;
    justify-content: center;
}
.cadastro-submit {
    padding: 10px 20px;
    background: linear-gradient(135deg, #4ade80, #16a34a);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 3px 6px rgb(0 0 0 / 0.15);
    transition: 0.2s;
}
.cadastro-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgb(0 0 0 / 0.2);
}
.cadastro-status {
    margin-top: 10px;
    font-size: 0.85rem;
    text-align: center;
    color: var(--text-muted);
}

.start {
	  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  font-size: .95rem;
  font-weight: 700;
  background: linear-gradient(0deg,#f9fefa 0%,rgb(179 237 195 / .16) 7%,#ffffff 100%);
  color: #074e36;
  cursor: pointer;
  box-shadow: 0 2px 4px rgb(0 0 0 / .05);
  transition: 0.2s;
  width: 100%;
  text-align: center;
  }
  .quick-replies a {
	   width: 100%;
  text-decoration: none;
  color: green;
  }
  .back {
	font-weight: bold;
	color: #0000006e;
  }
  .back a {
	text-decoration: none;
  color: green;
  }
  .titleMenu {
	  text-align: center;
  display: block;
  color: #616161;
  font-weight: bold;
  font-size: 16px;
  border-bottom: 1px solid #d3d3d3;
  margin-top: 10px;
  }
  
  
.theme-menu {
    position: absolute;
	width: 100%;
	max-width: 440px;
    top: 0; 
	left: 0;
	right: 0;	
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgb(15 23 42 / 0.15);
    padding: 6px 0;
    display: none;
    z-index: 50;    
    font-size: 0.85rem;
}
.theme-menu.open {
    display: grid;
}
.theme-menu a {
    width: 100%;
    text-align: left;
    padding: 6px 12px;
    border: none;
    background: #fff0;
    cursor: pointer;
    color: #1b2baf;
    font-size: 1rem;
	text-align: center;
}
.theme-menu a:hover {
    background: #f3f4f6;
}

.theme-menu button {
    width: 100%;
    text-align: left;
    padding: 6px 12px;
    border: none;
    background: #fff0;
    cursor: pointer;
    color: #1b2baf;
    font-size: 1rem;
	text-align: center;
}
.theme-menu button:hover {
    background: #f3f4f6;
}


.oficial {
    text-align: center;
}
.mark {
    border: 1px solid #1bb27f;
    border-radius: 50%;
    padding: 1px;
    width: 20px;
    height: 20px;
    display: inline-block;
    line-height: 17px;
    margin: 5px 0 0 -5px;
    color: #fff;
    background-color: #1bb27f;
}
.iconMenu {
    position: absolute;
    left: 8%;
    border: 1px solid #b8e7c5;
    width: 30px;
    height: 30px;
    line-height: 28px;
    border-radius: 50%;
    margin-top: -3px;
    color: #bbe8c7;
}
.strongChat {
    color: #c78d44;
}
.btn-confirmado,
.btn-finalizado {
    text-decoration: none;
    background-color: #36de2d;
    padding: 10px;
    color: #465dd4;
    font-weight: 700;
    font-size: 1.3em;
    border-radius: 10px;
    margin-top: 3px;
    display: inline-block;
}
.modal-oculto {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 0.5);
}
.modal-conteudo {
    background: #fff;
    margin: 0 auto;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
    text-align: center;
    position: relative;
}
.fechar {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    background-color: green;
    width: 30px;
    color: #fff;
    height: 30px;
    line-height: 30px;
    border-top-left-radius: 5px;
}
.acoes-termos,
.acoes-saida {
    margin-top: 20px;
}
.acoes-termos button,
.acoes-saida button {
    margin: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
}
.btn-aceitar {
    background-color: #4caf50;
    color: #fff;
}
.btn-discordar {
    background-color: #f44336;
    color: #fff;
}
button, a {
    font-family: "Poppins", sans-serif;	
}
a {
	color: #1d1a1a;
	text-decoration: none;
}
.quiz-btn,
.quiz-btn-outline {
    font-family: "Poppins", sans-serif;
    display: block;
    width: 100%;
    margin: 0.5rem 0;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
}
.overlayContato {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0.7);
    z-index: 999;
}
.modalContato {
    display: none;
    position: fixed;
    height: 100svh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    width: 400px;
    max-width: 90%;
    z-index: 1000;
    border-radius: 8px;
    box-shadow: 0 0 20px rgb(0 0 0 / 0.4);
	max-height: 600px;
}
.closeContato {
    background-color: #d4af37;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 9;
    color: #fff;
    font-size: 27px;
    width: 40px;
    height: 40px;
    border: none;
    border-bottom-right-radius: 8px;
}
b {
    color: #1c9835;
}

.optButton span {
color: #42af2c;
}

.cat-menu {
display: none;
  position: absolute;
  max-width: 360px;
  bottom: 50px;
left: 50px;
  z-index: 50;
  background-color: #f8fafc;
}

.cat-menu button {
	border: 1px solid #d2dae5;
  background-color: #f8fafc;
  color: #40d275;
  border-radius: 10px;
  width: 100px;
  padding: 3px 0 3px 0;
}

.cat-menu.open {
    display: block;
}

.f-input {
	display: block;
  color: #cdc6c6;
  font-size: 0.9rem;
  width: 225px;
}



/* Estilos para o mini menu simples - Versão 1.0.2 */
.mini-menu-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  padding: 8px 12px;
  border-top: 1px solid #eaeaea;
  z-index: 1000;
  display: none;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.05);
}

.mini-menu-buttons {
  display: flex;
  gap: 6px;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.mini-menu-btn {
  flex: 1;
  min-width: 0;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  background: #f8f9fa;
  color: #495057;
}

.mini-menu-btn .text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Botão "Ver Outro" */
.mini-menu-btn.btn-outro {
  background: #f8f9fa;
  color: #495057;
  border-color: #dee2e6;
}

.mini-menu-btn.btn-outro:hover {
  background: #e9ecef;
  transform: translateY(-1px);
}

/* Botão "Alterar Perfil" */
.mini-menu-btn.btn-perfil {
  background: #f8f9fa;
  color: #495057;
  border-color: #dee2e6;
}

.mini-menu-btn.btn-perfil:hover {
  background: #bbdefb;
  transform: translateY(-1px);
}

/* Botão "Solicitar" */
.mini-menu-btn.btn-solicitar {
  background: #f8f9fa;
  color: #495057;
  border-color: #dee2e6;
}

.mini-menu-btn.btn-solicitar:hover {
  background: #c3e6cb;
  transform: translateY(-1px);
}

/* Estados de hover para todos os botões */
.mini-menu-btn:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chat-footer a {
  color: #94a3b8;
  text-decoration: none;
  margin: 0 3px;
  transition: color 0.2s;
  font-size: 0.78em;
  text-align: center;
}

.overlayLoad {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: 100vh;
  background-color: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

  .loading-message {
	  position: absolute;
  top: 50px;
    text-align: center;
    font-size: 18px;
    color: #222;
	min-height: 500px;
	padding: 0 20px 0 20px;
  }

  .loading-message img {
    max-width: 80vw;
    margin-bottom: 20px;
    width: 170px;
    height: auto;
    border-radius: 50%;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

    .loading-message p {
  font-weight: 500;
  font-size: 18px;
  margin: 12px 0 0 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  color: #000;
  font-size: 1.3em;
}

/* ajustes para as páginas de empréstimos */

a {
	 text-decoration: none;
 }
.chat-body {
	padding: 0 5px 20px;
	background: #fff;
	background-color: #bdbef3;
	overflow-y: auto;
	scrollbar-width: thin;
  scrollbar-color: #eceeef91 #fff0;
}
.chat-body::before {
	background: none;
}
.h1ini {
	display: flex;
  text-align: center;
  max-width: 430px;
  width: 100%;
  margin: 0 auto;
}
#funis-templates {
	background-color: #eefaf9;
  border-radius: 0 0 15px 15px;
  padding: 10px;
}
.funil-list {
	margin: 0 auto;
}	
#funis-templates h2 {
	margin: 10px 0 10px 0;
}
.optButton {
  display: block;
  margin: 10px auto 0 auto;
  max-width: 330px;
  line-height: 40px;
  padding: 2px;
}
.iconOpt {
	position: relative;
  float: left;
  margin: 0 -5px 0 -16px;
}
.btnAlt {
  margin: 10px auto !important;
  max-width: 90px;
  height: 40px;
  line-height: 35px;
}
.divAlt {
	display: flex;
	margin-top: -10px;	
}
.divAlt a {
	display: contents;
}
.divSol button {
max-width: 230px;
  height: 40px;
  line-height: 35px;
  margin: 5px auto 5px auto;
}

.divSol img {
width: 39px;
  margin: -1px 0 0 -17px;
}

.ads-label {
	display: none;
}

.warn {
	font-size: 0.8rem;
  padding: 5px;
  color: #1944a9;
}
  
/* fim dos ajustes */

.footer-menu {
position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  border-top: 2px solid #95aded;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
  z-index: 9;
  transition: all 0.5s ease;
  opacity: 0;
  display: none;
}


.menu-topo {
display: none;  
}

.menu-footer {
display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  
  border-top: 1px solid rgba(71,85,105,.2);
  
}

.footer-menu a {
  flex: 1;
  text-align: center;
  padding: 6px 0 8px;
  color: #444;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}
.footer-menu a span {
  display: block;
  font-size: 0.9rem;
  margin-top: 4px;
}
.footer-menu a:hover {
  background: #7d93cf;
  color: #fff;
}
@media (min-width: 768px) {
  .footer-menu a span {
    font-size: 0.9rem;
  }
}


.footer-menu button {
  flex: 1;
  text-align: center;
  padding: 6px 0 8px;
  color: #444;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  border: none;
    background: transparent;
    cursor: pointer;
}
.footer-menu button span {
  display: block;
  font-size: 0.9rem;
  margin-top: 4px;
}
.footer-menu button:hover {
  background: #7d93cf;
  color: #fff;
}
@media (min-width: 768px) {
  .footer-menu button span {
    font-size: 0.9rem;
  }
}

.footer-menu.mostrar {
  transform: translateY(0);
  opacity: 1;
  height: auto;
  display: flex;
}

.footer-menu.flash {
  
}

.footer-menu.flash span {
 
}

.footer-menu a.forcado {
  background: #ecf8ef !important;
  color: #444 !important;
  transition: background 0.3s ease;
}

.imgFooter {
	margin: -40px auto;
}






.vistos {
  margin: 20px 0;
  padding: 16px;
  border-radius: 12px;
  background: #eef9f4;
  border: 1px solid #bfe6d3;
}

.vistos h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #0a7a4a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vistos ul {
  list-style: inside;
  padding: 0;
  margin: 0;
}

.vistos li {
  margin: 6px 0;
}

.vistos a {
  text-decoration: none;
  color: #145c3a;
  font-weight: 500;
}

.vistos a:hover {
  text-decoration: underline;
}
