@charset "utf-8";
	/* CSS Document 
	body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	}*/

	#chat-container {
    width:100%;
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
	margin:0 0 10px;
	background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

	/* Estilos para a div chat */
	#chat {
	width:70%;
	height:54%;
	margin:14px auto;
	padding:10px;
	border:1px solid #ccc;
	background-color:rgba(0, 0, 0, 0.7);
	overflow-y:auto;
	color: inherit;
	border-radius:10px;
	position:relative; /* Necessário para o posicionamento da overlay */
	}
	/* Ajustes específicos para dispositivos móveis */
	@media (max-width: 600px) {
    #chat {
	width: 90%;
	margin-top:-100px !important;
    }
}

	#chat a{
	color:#FF0 !important;
	display: contents;
	}
	#chat a:hover {
	color:#fff !important;
	}

	/* Estilos para chat */
	p.user {
    background-color: #fff;
    border-radius: 2px 10px 10px 10px;
    padding: 10px;
    margin: 10px;
    text-align: justify;
    float: left;
    clear: both;
    max-width: 50%;
    position: relative;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
	}
	
	p.user::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    width: 10px;
    height: 10px;
    background-color: #fff;
    clip-path: polygon(100% 100%, 0 0, 100% 0);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
	}

	p.ia {
    background-color: #0b7417;
    color: #fff;
    border-radius: 10px 2px 10px 10px;
    padding: 10px;
    margin: 10px;
    text-align: justify;
    float: right;
    clear: both;
    max-width: 50%;
    position: relative;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
	}


	p.ia::before {
    content: "";
    position: absolute;
    top:0;
    right: -10px;
    width: 10px;
    height: 10px;
    background-color: #0b7417;
    clip-path: polygon(0 0, 0 100%, 100% 0);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
	}


	/* Ajustes específicos para dispositivos móveis */
	@media (max-width: 600px) {
	p.user {
    max-width:80%;
	font-size: .7em;
	}
	p.ia {
    max-width:80%;
	font-size: .7em;
	}
	}

	/* BOF Icons dentro div chat */
	.chat {
	position: relative;
	}

	.icons {
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	gap: 10px; /* Espaçamento entre os ícones */
	}

	.icons a img {
	width: 24px; /* Pode ajustar o tamanho para o desejado */
	height: auto;
	filter: brightness(0) saturate(100%) invert(92%) sepia(83%) saturate(358%) hue-rotate(1deg) brightness(108%) contrast(105%); /* Cor amarela */
	}

	.icons a img:hover {
	opacity: 0.8; /* Efeito de hover */
	}

	@media (max-width: 768px) {
	.icons a img {
    width: 20px; /* Ajuste de tamanho para telas menores */
	}
	}
	/* EOF Icons dentro div chat */

	/* Estilos para a overlay */
	#chat #overlay {
	position: absolute; /* Garante que a overlay fique dentro da div chat */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	z-index: 10; /* Garante que a overlay esteja acima do conteúdo da div chat */
	border-radius: 10px;
	text-align: center;
	}
	/* Ajustes específicos para dispositivos móveis */
	@media (max-width: 600px) {
    #overlay {
	padding: 0 10px;
    }
}
	/* Estilos para a mensagem na overlay */
	.text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 18px;
	color: white;
	text-align: center;
	}


/* Estilos para a mensagem na overlay */
.mov {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: white;
    text-align: center;
    z-index: 2; /* Mantém o texto acima das ondas */
}

/* Ondas animadas abaixo do texto */
.mov::after {
    content: '';
    position: absolute;
    bottom: -20px;
	top:86%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 30px;
    background: radial-gradient(circle, #00BFFF 15%, transparent 16%);
    background-size: 50px 50px;
    animation: ondas-animadas 3s infinite linear;
    z-index: 10000; /* Ondas ficam atrás do texto */
}

/* Animação das ondas correndo da esquerda para a direita */
@keyframes ondas-animadas {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 150px 0;
    }
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    .mov {
        font-size: 14px; /* Ajusta o tamanho do texto */
    }

    .mov::after {
        width: 100%; /* Tamanho total do container */
        height: 30px; /* Mantém ondas visíveis */
		top: 85%;
    }
}






























	
	.spot {
	font-size:small;
	color:#fff;
	margin-bottom:0;
    text-shadow:1px 1px 1px rgba(0, 0, 0, 0.8); 
    background: rgba(0, 0, 0, 0.7);
    padding:3px 10px;
    border-radius: 5px;
    display: inline-block;
	}
	.spot a {
	color:#FF0;	
	}
	.spot a:hover {
	color:#FFF;	
	}
	
	/* Estilos para a barra de botões */
	.buttons-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top:14px;
	z-index:12;
	}
	/* Ajustes específicos para dispositivos móveis */
	@media (max-width: 600px) {
	.buttons-container {

	}
}

	/* Estilos para a div buttons */
	.buttons {
	display: flex;
	background-color: #e65c00;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	}
	
	/* Estilos para os botões */
	.buttons button {
	font-size: 14px;
	padding:10px 24px;
	margin: 0;
	cursor: pointer;
	background-color: transparent;
	border: none;
	transition: background-color 0.3s ease, transform 0.3s ease;
	outline: none;
	}

	.buttons button:first-child {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	}

	.buttons button:last-child {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	}

	/* Estilos de hover para os botões */
	.buttons button:hover {
	background-color: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
	}

	/* Estilos de foco para os botões */
	.buttons button:focus {
	outline: none;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
	}

	/* Estilos para ícones SVG dentro dos botões */
	.buttons svg {
	width:15px;
	height:15px;
	fill: #fff;
	}
	button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
	color:#000;
	}
	button:hover:not(:disabled) {
    /*background-color: #e65c00;*/
	}
	/* Ajustes específicos para dispositivos móveis */
	@media (max-width: 600px) {
	button {
	padding:10px 24px;
	margin:3px 0;
	}
}
	#timer, #remainingTime {
    font-size:14px;
    margin-top: 10px;
    background-color: rgba(0, 0, 0, 0.5);
	color:#fff;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
	}

	.full-screen-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	}

	.mensagem-inicial {
    text-align: center;
    padding: 20px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 16px;
    color: #333;
	}