/* =============================
VARIÁVEIS GLOBAIS E ROOT
============================= */
:root {
	--primary-color: #00C2FF; /* Cor primária da marca */
	--secondary-color: #121212; /* Cor de fundo secundária (escura) */
	--font-family: Arial, sans-serif; /* Fonte principal padrão */
}

/* =============================
RESET BÁSICO E CONFIGURAÇÃO DO BODY
============================= */
html, body {
	margin: 0; /* Remove margens padrão */
	padding: 0; /* Remove espaçamentos padrão */
	font-family: var(--font-family); /* Aplica fonte global */
	background-color: #000000; /* Cor de fundo neutra */
}

body {
	min-height: 540px; /* Altura mínima em dispositivos menores */
}

body[orient="portrait"] {
	min-height: 540px; /* Modo retrato */
}

body[orient="landscape"] {
	min-height: 400px; /* Modo paisagem */
}

/* =============================
BOTÕES PRINCIPAIS
============================= */
.add-button {
	margin: 0 auto; /* Centraliza horizontalmente */
	cursor: pointer; /* Ícone de clique */
	float: right; /* Alinha à direita */
}

.cancel-button {
	float: left; /* Alinha à esquerda */
	cursor: pointer; /* Ícone de clique */
}

.modal-buttons {
	border: 1px solid #542CFC; /* Borda destacada */
	border-radius: 4px; /* Bordas arredondadas */
	background-color: transparent; /* Fundo transparente */
	color: #6C4AF9; /* Cor do texto */
	font-size: 12px; /* Tamanho da fonte */
	font-weight: bold; /* Negrito */
}

/* =============================
POPUP E MODAL
============================= */
.popup {
	width: 100%;
	text-align: center; /* Centraliza conteúdo */
	position: absolute;
	top: 65%; /* Posiciona verticalmente */
}

.popup-modal {
	width: 300px;
	margin: 0 auto; /* Centraliza horizontalmente */
}

#modal div {
	font-size: 14px; /* Define tamanho da fonte */
}

/* =============================
CAIXA DE INFORMAÇÕES
============================= */
.box {
	height: 75px; /* Altura fixa */
	width: 100%; /* Largura total */
	float: left; /* Alinha à esquerda */
	background-color: rgba(255, 255, 255, 0.8); /* Fundo semi-transparente */
	border: 1px solid silver; /* Borda leve */
	border-radius: 5px; /* Cantos arredondados */
}

/* =============================
ÁREA DO LOGO
============================= */
.logo {
	float: left; /* Alinha à esquerda */
	width: 30%; /* Ocupa 30% da largura */
}

.logo button {
	margin-top: 14px; /* Espaço superior */
}

/* =============================
ÁREA DE TEXTO
============================= */
.text {
	float: left; /* Alinha à esquerda */
	width: 60%; /* Ocupa 60% da largura */
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; /* Fonte moderna e responsiva */
}

.text-info {
	letter-spacing: 2px; /* Espaçamento entre letras */
	font-size: 15px;
	margin-bottom: 0;
	font-weight: bold;
}

/* =============================
SLIDESHOW - IFRAME GOOGLE
============================= */
#googleSlideshow {
	width: 100vw; /* Largura total da viewport */
	height: 100vh; /* Altura total da viewport */
	overflow: hidden; /* Esconde overflow */
	position: relative; /* Posicionamento relativo */
}

#googleSlideshow iframe {
	width: 100vw;
	height: calc(100% + 29px); /* Compensação de barra de rolagem */
	border: none;
}

/* =============================
BOTÃO DE INSTALAÇÃO PWA
https://linkscard.com.br/rdeti/img/android-icon-192x192.png
============================= */
.install-button {
	border: none;
	background-image: url('https://linkscard.com.br/rdeti/img/android-icon-192x192.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	color: #FFF;
	background-color: #000000;
	font-size: 15px;
	border-radius: 5px;
	cursor: pointer;
	width: 50px;
	height: 50px;
	font-weight: bold;
	z-index: 99;
	margin: 0 auto;
}

/* =============================
BOTÕES GERAIS
============================= */
.buttons {
	margin-top: 10px;
	width: 100%;
}

/* =============================
COMPONENTE DE LGPD
============================= */
.CookieMessage {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--secondary-color);
	z-index: 999;
	display: none; /* Visível apenas quando necessário */
}

.CookieMessage-content {
	color: white;
	max-width: 900px;
	margin: 0 auto;
	padding: 20px 20px 0;
	font-family: sans-serif;
	line-height: 1.5;
	font-size: 12px;
}

.CookieMessage-content a {
	color: white; /* Links no mesmo tom do texto */
}

.CookieMessage-content p {
	margin: 0 0 20px 0;
}

.CookieMessage-button {
	background: var(--primary-color);
	transition: background 0.3s ease; /* Animação suave */
	display: inline-block;
	text-decoration: none;
	padding: 5px 20px;
	border-radius: 5px;
	text-transform: uppercase;
}

.CookieMessage-button:hover {
	background: #5cd9ff; /* Efeito hover mais claro */
}

/* =============================
BOTÃO WHATSAPP FIXO
============================= */
.whatsapp-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #25d366;
	color: white;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 30px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	z-index: 1000;
}
