:root { 
 --primary-color: #4EBFFC;
 --hover-color: #A9D96B;
 --secondary-color: #A9D96B;
 --background-light: #f9f9f9; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, sans-serif; background: linear-gradient(to right, #56606C 0%, #272935 100%); 
color: #333; margin: 0; padding-bottom: 60px; }
a { color: var(--primary-color); text-decoration: none; font-family: Arial, sans-serif; }
a:visited { color: var(--primary-color); }
a:hover { color: var(--hover-color); text-decoration: underline; cursor: pointer; }
a:focus { outline-offset: 2px; }
a:active { color: var(--primary-color); text-decoration: none; }
a.disabled { color: #999999; text-decoration: none; pointer-events: none; cursor: default; }
h1, h2, h3, h4, h5, h6 { color: var(--primary-color); margin: 0; }
/* Layout para dispositivos muito pequenos (até 300px) */
@media (max-width: 300px) {
    h1, h2, h3, h4, h5, h6 { font-size:12px !important; } }
/* Layout para dispositivos entre 301px e 480px */
@media (min-width: 301px) and (max-width: 480px) {
    h1, h2, h3, h4, h5, h6 { font-size: 1rem !important; } }
/* Layout para dispositivos entre 481px e 768px */
@media (min-width: 481px) and (max-width: 768px) {
    h1, h2, h3, h4, h5, h6 { font-size: 3vw !important; } }
/* Layout para dispositivos com largura superior a 1200px */
@media (min-width: 1200px) { h1, h2, h3, h4, h5, h6 { font-size: 2vw !important; } }

.box-shadow { box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);  }
.off { background-color: #f0f0f0; opacity: 0.6; }
.btnbloqueado { cursor: not-allowed; pointer-events: none; }
.tags { display: inline-block; background-color: #e0e0e0; color: #333; padding: 2px 5px; margin: 0 2px 2px 0; border-radius: 15px; }
.responsive-circle { display: block; width: 90%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 50%; margin: 0 auto; }
.responsive-img { display: block; width: 80%; aspect-ratio: 1 / 1; object-fit: cover; margin: 0 auto; }
small { font-family: Verdana, 'Courier New', monospace; font-size: 11px; color: #333; line-height: 1.4; }
.clear { clear: both; }
/* -------------------CORPO--------------------*/
.container, .container-do-site, .card { @extend .box-shadow; }
/* Centraliza a logo */
.logo {
    text-align: center; /* Alinha o conteúdo no centro */
    margin-bottom:10px; /* Adiciona um pequeno espaço abaixo da logo */
    clear: both;
}
/* Container principal (do site) */
.container-do-site {
    width: 100%;
    max-width: 90%;
    position: relative;
    background: #fff;
    border-radius: 20px;
    margin-top: 0px;
    padding-top: 5px;
    padding: 10px;
    min-height: 400px;
    margin-left: auto; /* Garante que o container fica centralizado */
    margin-right: auto; /* Garante que o container fica centralizado */
	margin-bottom:20px;
}

/* Se você deseja centralizar o conteúdo dentro do .container-do-site */
.container-do-site > * {
    margin-left: auto;
    margin-right: auto;
    max-width: 95%; /* Ajusta o conteúdo para não ultrapassar os limites do container */
}

/* -------------------CHAT--------------------*/
.caixa-chat { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.8); z-index: 9999; width: 100%; height: 100%; }
.caixa-chat.open { display: block; transform: translateY(0); }
.cabecalho-chat { display: flex; justify-content: space-between; align-items: center; background-color: #f1f1f1; padding: 10px; border-bottom: 1px solid #ccc; }
.minimizar-chat { background: none; border: none; cursor: pointer; font-size: 16px; }
.caixa-chat.minimizado .mensagens, .caixa-chat.minimizado .entrada-chat { display: none; }
	.mensagens { height: 300px; overflow-y: auto; border: 1px solid #ccc; border-radius: 10px; padding: 10px; margin-bottom: 10px; background-color: #f9f9f9; }
	.mensagens .mensagem { margin-bottom: 10px; }
	.mensagens .mensagem.self { text-align: right; }
	.entrada-chat { display: flex; }
	.entrada-chat input { flex-grow: 1; padding: 10px; border: 1px solid #ccc; border-radius: 5px; }
	.entrada-chat button { padding: 10px; background-color: #FF4D4D; color: #fff; border: none; border-radius: 5px; margin-left: 10px; cursor: pointer; }
	.mensagem { margin: 5px 0; padding: 10px; border-radius: 5px; }
	.mensagem.enviada { background-color: #d4f4ff; text-align: right; }
	.mensagem.recebida { background-color: #f4f4f4; text-align: left; }
	.mensagem:nth-child(odd) { background-color: #e1f5e7; }
	.mensagem:nth-child(even) { background-color: #e1f1f7; }
	.mensagem:before { content: ""; display: block; clear: both; }
	.foto-chat { width: 40px; height: 40px; border-radius: 20px; }
	.mensagem { display: flex; align-items: center; margin-bottom: 10px; padding: 5px; }
	.mensagem.direita { flex-direction: row-reverse; }
	.foto-usuario { margin-right: 10px; }
	.foto-usuario img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
	.conteudo-mensagem { background-color: #f1f1f1; padding: 10px; border-radius: 10px; max-width: 75%; }
	.mensagem.direita .conteudo-mensagem { background-color: #d0f0d0; }
/* -------------------FORM --------------------*/
.form-group { margin-bottom: 10px; display: flex; flex-direction: column; }
.form-group label { font-weight: bold; margin-bottom: 3px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 5px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #66afe9; outline: none; }
/* -------------------MODAL --------------------*/
.modal { display: none; position: fixed; z-index: 1; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); padding-top: 60px; }
.modal-content { background-color: #fff; margin: 5% auto; padding: 20px; border: 1px solid #888; width: 80%; max-width: 500px; text-align: left; max-height: 70vh; overflow-y: auto; border-radius: 15px; }
.modal-header, .modal-footer { text-align: center; }
.close { color: #aaa; float: right; font-size: 28px; font-weight: bold; }
.close:hover, .close:focus { color: black; text-decoration: none; cursor: pointer; }
.modal ul { list-style-type: none; padding-left: 0; }
.modal li { margin-bottom: 10px; font-size: 11px; }
/* -------------------FOOTER--------------------*/
.footer-menu { position: fixed; bottom: 0; left: 0; width: 100%; background-color: #fff; display: flex; justify-content: space-around; align-items: center; padding: 5px 0; box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2); }
.menu-item { color: #333; text-align: center; text-decoration: none; flex: 1; }
.menu-item i, .menu-item img { font-size: 24px; margin-bottom: 5px; }
.menu-item span { display: block; font-size: 12px; }
.profile-icon { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }


/* -------------------BUTTON EFEITO MATCHBELL--------------------*/
/* From Uiverse.io by SelfMadeSystem */ 
.frutiger-button {
  cursor: pointer;
  position: relative;
  padding: 2px;
  border-radius: 6px;
  border: 0;
  text-shadow: 1px 1px #000a;
  background: linear-gradient(#006caa, #00c3ff);
  box-shadow: 0px 4px 6px 0px #0008;
  transition: 0.3s all;
}

.frutiger-button:hover {
  box-shadow: 0px 6px 12px 0px #0009;
}

.frutiger-button:active {
  box-shadow: 0px 0px 0px 0px #0000;
}

.inner {
  position: relative;
  inset: 0px;
  padding: 1em;
  border-radius: 4px;
  background: radial-gradient(circle at 50% 100%, #30f8f8 10%, #30f8f800 55%),
    linear-gradient(#00526a, #009dcd);
  overflow: hidden;
  transition: inherit;
}

.inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-65deg, #0000 40%, #fff7 50%, #0000 70%);
  background-size: 200% 100%;
  background-repeat: no-repeat;
  animation: thing 3s ease infinite;
}

@keyframes thing {
  0% {
    background-position: 130%;
    opacity: 1;
  }

  to {
    background-position: -166%;
    opacity: 0;
  }
}

.top-white {
  position: absolute;
  border-radius: inherit;
  inset: 0 -8em;
  background: radial-gradient(
    circle at 50% -270%,
    #fff 45%,
    #fff6 60%,
    #fff0 60%
  );
  transition: inherit;
}

.inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: inherit;
  box-shadow: inset 0px 2px 8px -2px #0000;
}

.frutiger-button:active .inner::after {
  box-shadow: inset 0px 2px 8px -2px #000a;
}

.text {
  position: relative;
  z-index: 1;
  color: white;
  font-weight: 550;
  transition: inherit;
}

	.botoes .botao-whatsapp { background-color: green; color: white; border: none; padding: 10px 15px; cursor: pointer; font-size: 14px; }
	.botoes .botao-whatsapp i { margin-right: 5px; }
.button:hover .bell { animation: bellRing 0.9s both; }
@keyframes bellRing { 0%, 100% { transform-origin: top; } 15% { transform: rotateZ(10deg); } 30% { transform: rotateZ(-10deg); } 45% { transform: rotateZ(5deg); } 60% { transform: rotateZ(-5deg); } 75% { transform: rotateZ(2deg); } }

/*.button:active { transform: scale(0.8); }
.container-circle { width: 40px; height: 20px; position: relative; z-index: 1; }
.circle { width: 5px; height: 5px; position: absolute; border-radius: 50%; background-color: #fff; left: 15%; transform-origin: 50%; animation: circle7124 .5s alternate infinite ease; }
@keyframes circle7124 { 0% { top: 10px; height: 5px; border-radius: 50px 50px 25px 25px; transform: scaleX(1.7); } 40% { height: 20px; border-radius: 50%; transform: scaleX(1); } 100% { top: 0%; } }
.circle:nth-child(2) { left: 45%; animation-delay: .2s; }
.circle:nth-child(3) { left: auto; right: 15%; animation-delay: .3s; }
.shadow { width: 10px; height: 2px; border-radius: 50%; background-color: rgba(0, 0, 0, 0.9); position: absolute; top: 22px; transform-origin: 50%; z-index: -1; left: 15%; filter: blur(1px); animation: shadow046 .5s alternate infinite ease; }
@keyframes shadow046 { 0% { transform: scaleX(1.5); } 40% { transform: scaleX(1); opacity: .7; } 100% { transform: scaleX(.2); opacity: .4; } }
.shadow:nth-child(4) { left: 45%; animation-delay: .2s; }
.shadow:nth-child(5) { left: auto; right: 15%; animation-delay: .3s; }
.AREA-div-badge { position: relative; }
.AREA-div-badge2 { top: -23px; left: 68%; position: relative; float: left; }
.badge { position: absolute; top: -5px; right: 5px; background-color: red; color: white; border-radius: 50%; font-size: 60%; padding: .2em; line-height: 1em; }
.badge:after { content: ''; position: absolute; top: -.1rem; left: -.1rem; border: 2px solid rgba(255, 0, 0, .5); opacity: 0; border-radius: 50%; width: 100%; height: 100%; animation: sonar 1.5s infinite; }
@keyframes sonar { 0% { transform: scale(.9); opacity: 1; } 100% { transform: scale(2); opacity: 0; } }
@keyframes pulse { 0% { transform: scale(1); } 20% { transform: scale(1.4); } 50% { transform: scale(.9); } 80% { transform: scale(1.2); } 100% { transform: scale(1); } }
*/


/* -------------------outros--------------------

.card { position: absolute; width: 90%; height: 65%; background: #fff; border-radius: 20px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transition: transform 0.3s ease, opacity 0.3s ease; }
.card img { width: 90%; height: 60%; object-fit: cover; border-radius: 15px; }
.card h3 { margin-top: 10px; color: #FF4D4D; }
.card p { color: #666; }
	button { transition: background-color 0.3s ease, transform 0.2s ease; }
	button:hover { transform: scale(1.05); }
	.buttons { position: absolute; bottom: 20px; width: 100%; display: flex; justify-content: space-evenly; }
	.buttons button { width: 60px; height: 60px; background: #FF4D4D; border: none; border-radius: 50%; color: #fff; font-size: 20px; display: flex; justify-content: center; align-items: center; cursor: pointer; transition: background 0.2s ease; }
	.buttons button:hover { background: #e60000; }
.lista-matches { list-style: none; padding: 0; }
.item-match { display: flex; align-items: center; margin-bottom: 15px; border-bottom: 1px solid #ccc; padding-bottom: 10px; }
.item-match img { width: 50px; height: 50px; border-radius: 50%; margin-right: 15px; }
.item-match h4 { margin: 0; color: #FF4D4D; flex-grow: 1; }
.item-match h6 { margin-top: 10px; margin-bottom: 5px; text-align: center; color: #FF4D4D; }
	.botoes { display: flex; gap: 5px; justify-content: flex-end; width: 100%; margin-top: 5px; }
	.botoes button { background-color: #FF4D4D; color: #fff; border: none; padding: 5px 10px; border-radius: 5px; cursor: pointer; }
	.botoes button:hover { background-color: #e60000; }*/
	
	
/* Layout Geral */
.lista-operadores { list-style: none; padding: 0; margin: 0; }
.item-operador { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; border-bottom: 1px solid #ddd; padding: 10px; }
.info-operador { margin-left: 10px; }
.botoes { display: flex; gap: 10px; }
.botao-chat { background-color: #007bff; color: white; padding: 10px; border: none; cursor: pointer; }
.botao-chat:hover { background-color: #0056b3; }
.item-operador img { width: 50px; height: 50px; border-radius: 50%; }

/* Modal */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 1000; }
.modal-content { background: white; padding: 20px; width: 50%; margin: 50px auto; border-radius: 5px; }
.close { position: absolute; top: 10px; right: 10px; font-size: 25px; cursor: pointer; }
.user-details { display: flex; align-items: center; }
.user-details img { width: 60px; height: 60px; border-radius: 50%; margin-right: 20px; }

/* Caixa de Chat */
.caixa-chat { display: none; position: fixed; bottom: 10px; right: 10px; width: 300px; background: #fff; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); border-radius: 8px; padding: 10px; }
.cabecalho-chat { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #ddd; font-weight: bold; }
.mensagens {  height:70vh; overflow-y: auto; margin-bottom: 10px; }
.entrada-chat { display: flex; gap: 10px; }
#mensagem-chat { width: 80%; padding: 8px; border-radius: 4px; border: 1px solid #ddd; }
#enviar-mensagem { background-color: #007bff; color: white; padding: 10px; border: none; cursor: pointer; }
#enviar-mensagem:hover { background-color: #0056b3; }
.minimizar-chat { background-color: transparent; border: none; cursor: pointer; }
.minimizar-chat i { font-size: 20px; color: #333; }

/* Animações */
@keyframes pulsar { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }
@keyframes slideInFromLeft { 0% { transform: translateX(-100%); } 100% { transform: translateX(0); } }

/* Responsividade */
@media (max-width: 768px) {
    .modal-content { width: 80%; }
    .caixa-chat { width: 100%; }
}