
/* Index.php e Padrões */
body {
	background: #181818;
	color: #eee;
	font-family: Arial, sans-serif;
	margin: 0;;
	}
header {
	background: #222;
	padding: 20px 0;
	text-align: center;
	border-bottom: 2px solid #900;;
	}
nav a {
	width: 500px;
	text-align: center;
	padding: 10px 18px;
	background: rgba(144, 0, 0, 0.2);
	color: #fff;
	border: 1px solid #900;
	border-radius: 6px;
	font-weight: bold;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	}
nav a:hover {
	background: #900;
	color: #fff;
	border-color: #c00;
	transform: scale(1.05);
	box-shadow: 0 0 10px #900;;
	}
.hero {
	background: url('mapa.jpeg') center center repeat;
	background-color: #1c1c1c;
	padding: 100px 20px 60px;
	text-align: center;;
	}
.hero h1 {
	font-size: 42px;
	color: #fff;
	margin-bottom: 16px;
	margin-top: 10px;;
	}
.hero p {
	font-size: 18px;
	color: #ccc;
	max-width: 700px;
	margin: auto;;
	}
.btn {
	background: #900;
	color: #fff;
	padding: 12px 28px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	}
.btn:hover {
	background: #c00;
	}
.services {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	padding: 60px 40px;
	background: #222;;
	}
.service {
	background: #2a2a2a;
	padding: 24px;
	border-radius: 8px;
	border: 1px solid #900;
	text-align: center;
	transition: all 0.3s ease-in-out;
	}
.service h3 {
	color: #fff;
	margin-bottom: 12px;;
	}
.service p {
	color: #ccc;
	font-size: 14px;;
	}
.service-icon {
	font-size: 40px;
	margin-bottom: 12px;
	color: #ff4444;;
	}
footer {
	text-align: center;
	padding: 20px;
	background: #181818;
	color: #888;
	border-top: 1px solid #900;;
	}
nav {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 10px;
	flex-wrap: wrap;;
	}
.hero-content {
	backdrop-filter: blur(6px);
	background-color: rgba(0, 0, 0, 0.4);
	padding: 0px 20px 20px 40px;
	border-radius: 20px;
	max-width: 600px;
	margin: auto;;
	}
.hero-flex {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
	background-color: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(6px);
	padding: 40px;
	border-radius: 12px;
	max-width: 1000px;
	margin: auto;;
	}
.hero-image img {
	max-width: 300px;;
	}
.hero-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;;
	}
.hero-text {
	flex: 1;
	text-align: center;
	}
.hero-img img {
	max-width: 280px;;
	}
.service:hover {
	background: rgba(144, 0, 0, 0.1); /* vermelho bem suave e translúcido */
	transform: scale(1.02);
	box-shadow: 0 0 10px rgba(144, 0, 0, 0.2);
	transition: all 0.3s ease-in-out;
	}
.hero-text a {
	display: inline-block;
	margin-top: 20px;
	}
.menu {
	position: relative;
	}
.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 28px;
	color: #fff;
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1001;
	cursor: pointer;
	}
.menu-items {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin-top: 10px;
	}
.menu-items li a {
	padding: 10px 18px;
	background: rgba(144, 0, 0, 0.2);
	color: #fff;
	border: 1px solid #900;
	border-radius: 6px;
	font-weight: bold;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	}
.menu-items li a:hover {
	background: #900;
	color: #fff;
	border-color: #c00;
	transform: scale(1.05);
	box-shadow: 0 0 10px #900;
	}
.icon-social {
	width: 32px;
	height: 32px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	vertical-align: middle;
	}
.icon-social:hover {
	transform: scale(1.5) translateY(-4px);
	box-shadow: 0 6px 12px rgba(255, 255, 255, 0.15);
	cursor: pointer;
	}

/* Mobile */

@media (max-width: 768px) {

header img {
	height: 100px;
	}
.menu-items {
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;				 
	position: fixed;
	top: 0;
	right: -100%;
	width: 50%;
	height: 100%;
	background: #222;
	padding: 50px;
	gap: 12px;
	transition: right 0.3s ease-in-out;
	z-index: 1000;
}
.menu-items li a {
	display: block;
	width: 100%;
	min-width: 150px;
	padding: 10px 20px;
	font-size: 16px;
	margin: 0 0 10px 0;
	background: rgba(144, 0, 0, 0.2);
	color: #fff;
	border: 1px solid #900;
	border-radius: 6px;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease-in-out;
	}
.menu-items.active {
	right: 0;
	}
.menu-toggle {
	display: block;
	position: fixed;
	top: 20px;
	right: 20px;
	font-size: 28px;
	color: #fff;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1001;
	}
nav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 10px 20px;
	}
nav a {
	width: auto !important;
	padding: 10px 14px;
	font-size: 14px;
	background: rgba(144, 0, 0, 0.2);
	border: 1px solid #900;
	border-radius: 6px;
	transition: all 0.3s ease-in-out;
	text-align: center;
	}
.hero {
	padding: 60px 10px 40px;
	}
.hero-box {
	flex-direction: column;
	width: 100%;
	align-items: center;
	gap: 20px;
	}
.hero-content {
	max-width: 90%;		 
	width: 100%;
	padding: 20px;
	}
.hero-text {
	text-align: center;
	}
.hero-text h1 {
	font-size: 28px;
	}
.hero-text p {
	font-size: 16px;
	}
.hero-img img {
	max-width: 100%;
	height: auto;
	}
.services {
	padding: 30px 20px;
	grid-template-columns: 1fr;
	}
.service {
	padding: 20px;
	}
footer {
	font-size: 14px;
	padding: 15px;
	}
}

/* Login e Cdastro.php */

.container { 
	margin: 100px auto; 
	max-width: 400px; 
	background: #222; 
	padding: 32px; 
	border-radius: 8px; 
	box-shadow: 0 2px 10px #900; 
	}
.container input, 
.container button { 
	width: 95%; 
	margin: 10px 0; 
	padding: 10px; 
	border-radius: 4px; 
	border: 1px solid #900; 
	}
.container button { 
	background: #900; 
	color: #fff; 
	border: none; 
	cursor: pointer; 
	}
.container button:hover { 
	background: #c00; 
	}
.container.links { 
	margin-top: 10px; 
	}
.container .links a { 
	display: block; 
	color: #fff; 
	text-decoration: none; 
	margin-top: 5px; 
	}
.container .links a:hover { 
	text-decoration: underline; 
	}
.erro { 
	background: #900; 
	padding: 10px; 
	border-radius: 4px; 
	margin-bottom: 10px; 
	color: #fff; 
	font-weight: bold;
	}
.mensagem { 
	margin-top: 10px; 
	color: #0f0; 
	}

/* Banco.php */

.banco h2 {
	color: #fff;
    }
.banco table {
    width: 100%;
    border-collapse: collapse;
    background: #222;
    color: #eee;
	}
.banco th, 
.banco td {
    padding: 12px;
    border: 1px solid #900;
    text-align: left;
    }
.banco th {
    background: #900;
    }
.banco input[type="text"], 
.banco input[type="email"] {
    width: 100%;
    padding: 6px;
    box-sizing: border-box;
    background: #333;
    color: #fff;
    border: 1px solid #900;
    }
.banco button {
    padding: 6px 10px;
    background: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    }
.banco a {
    color: inherit;
    text-decoration: none;
    margin: 0 6px;
    }
.banco i.fas {
    font-size: 16px;
    }
.banco-container {
    max-width: 480px;
    margin: 50px auto 50px auto;
    background: #222;
    border-radius: 12px;
    box-shadow: 0 2px 10px #9009;
    padding: 38px 32px 32px 32px;
    text-align: center;
    }
.banco-title {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 28px;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
	}
.banco-btns {
    display: flex;
	min-width: 180px;
    justify-content: center;
    gap: 28px;
    flex-wrap: nowrap; /* Impede quebra para baixo */
    margin-bottom: 36px;
}
.banco-btns button {
    padding: 16px 32px;
    font-size: 1.08rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-excluir {
    background: #900;
    color: #fff;
    }
.btn-excluir:hover {
    background: #c00;
    }
.btn-criar {
	background: #28a745;
    color: #fff;
    }
.btn-criar:hover {
    background: #34c759;
    }
.banco-mensagem {
    background: #282;
    color: #fff;
    padding: 14px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-weight: bold;
    }




/* Cadastro.php */
#senha-requisitos {
    display: none;
    margin-top: 10px;
	}
		
/* Popup de Esqueci a Senha */
.popup-bg {
	position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(24,24,24,0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .3s;
	}
.popup {
    background: #222;
    border: 2px solid #900;
    border-radius: 10px;
    padding: 38px 34px 30px 34px;
    max-width: 370px;
    width: 92vw;
    box-shadow: 0 6px 30px #9005;
    color: #fff;
    text-align: center;
    position: relative;
    animation: popupOpen .4s cubic-bezier(.32,1.65,.57,.86);
	}
@keyframes popupOpen {
    from { transform: translateY(-60px) scale(.9); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
	}
	
	
	
.popup-bg {
	position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(24,24,24,0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .3s;
}

.popup {
    background: #222;
    border: 2px solid #900;
    border-radius: 10px;
    padding: 38px 34px 30px 34px;
    max-width: 370px;
    width: 92vw;
    box-shadow: 0 6px 30px #9005;
    color: #fff;
    text-align: center;
    position: relative;
    animation: popupOpen .4s cubic-bezier(.32,1.65,.57,.86);
}

.popup input {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.popup-close {
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
}