﻿* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	padding-top: 80px;
}

/* ============================================ */
/* NAVBAR - ESTILOS BASE */
/* ============================================ */
.navbar-vd {
	background-color: #fff;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	padding: 15px 30px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
}

.navbar-vd-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.navbar-vd-logo img {
	height: 50px;
	width: auto;
	display: block;
}

/* Menu Desktop */
.navbar-vd-menu {
	display: flex;
	gap: 25px;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
	flex: 1;
	justify-content: center;
}

	.navbar-vd-menu li {
		margin: 0;
		position: relative;
	}

		.navbar-vd-menu li a {
			text-decoration: none;
			color: #333;
			font-weight: 500;
			font-size: 16px;
			transition: color 0.3s;
			display: flex;
			align-items: center;
			gap: 8px;
			padding: 8px 12px;
			border-radius: 5px;
		}

			.navbar-vd-menu li a:hover {
				/*color: #e91e63;*/
				background-color: #f9f9f9;
			}

/* Botão Anunciar - Desktop */
.btn-anunciar {
	background: linear-gradient(135deg, #e91e63 0%, #c2185b 1f00%);
	color: white !important;
	padding: 10px 20px !important;
	border-radius: 25px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

	.btn-anunciar:hover {
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
		background: linear-gradient(135deg, #c2185b 0%, #e91e63 100%);
	}

/* ============================================ */
/* DROPDOWN MENUS - DESKTOP */
/* ============================================ */
.dropdown {
	position: relative;
}

	.dropdown > a {
		cursor: pointer;
		user-select: none;
		position: relative;
		padding-right: 25px !important;
	}

		/* Adiciona setinha via CSS de forma limpa */
		.dropdown > a::after {
			/*content: '▼';*/
			font-size: 10px;
			margin-left: 5px;
			transition: transform 0.3s;
			position: absolute;
			right: 8px;
			top: 50%;
			transform: translateY(-50%);
		}

	.dropdown:hover > a::after {
		transform: translateY(-50%) rotate(180deg);
	}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	min-width: 220px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
	border-radius: 8px;
	padding: 8px 0;
	margin: 0;
	margin-top: 0;
	opacity: 0 !important;
	visibility: hidden !important;
	transform: translateY(-10px);
	transition: all 0.2s ease;
	z-index: 10000;
	list-style: none;
	display: none !important;
	pointer-events: none;
}

/* Área invisível para manter hover */
.dropdown::before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 10px;
	background: transparent;
}

.dropdown:hover > .dropdown-menu {
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateY(0);
	display: block !important;
	pointer-events: auto;
}

.dropdown-menu li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.dropdown-menu a {
	display: block;
	padding: 12px 20px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.2s;
	white-space: nowrap;
	cursor: pointer;
}

	.dropdown-menu a:hover {
		background-color: #f5f5f5;
		color: #e91e63;
		padding-left: 25px;
	}

/* Dropdown Multi-nível (Bailes) */
.dropdown-submenu {
	position: relative !important;
}

	.dropdown-submenu > a {
		position: relative;
		padding-right: 35px !important;
		cursor: pointer !important;
	}

		/* Setinha lateral para submenus */
		.dropdown-submenu > a::after {
			content: '▶';
			font-size: 10px;
			position: absolute;
			right: 15px;
			top: 50%;
			transform: translateY(-50%);
		}

	/* Submenu filho - FORÇADO */
	.dropdown-submenu ul.dropdown-menu {
		position: absolute !important;
		left: 100% !important;
		top: 0 !important;
		margin-left: 2px !important;
		opacity: 0 !important;
		visibility: hidden !important;
		display: none !important;
		pointer-events: none !important;
		z-index: 10001 !important;
	}

	/* HOVER FORÇADO - Abre submenu */
	.dropdown-submenu:hover > ul.dropdown-menu {
		opacity: 1 !important;
		visibility: visible !important;
		display: block !important;
		pointer-events: auto !important;
		transform: translateY(0) !important;
	}

	/* Destaque visual no item com submenu */
	.dropdown-submenu:hover > a {
		background-color: #f5f5f5 !important;
		color: #e91e63 !important;
	}

/* Menu Mobile - Escondido por padrão */
.navbar-vd-mobile {
	display: none;
}

/* ============================================ */
/* ESCONDE DROPDOWNS MOBILE NO DESKTOP */
/* ============================================ */
@media (min-width: 993px) {
	.mobile-dropdown-menu,
	.mobile-dropdown-overlay {
		display: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
		pointer-events: none !important;
	}
}

/* ============================================ */
/* MOBILE - RESPONSIVO */
/* ============================================ */
@media (max-width: 992px) {
	body {
		padding-top: 60px !important;
	}

	.navbar-vd {
		padding: 10px 15px;
		box-shadow: 0 2px 10px rgba(0,0,0,0.2);
	}

	.navbar-vd-logo img {
		height: 35px;
	}

	/* Esconde menu desktop */
	.navbar-vd-menu {
		display: none !important;
	}

	/* Mostra menu mobile */
	.navbar-vd-mobile {
		display: flex;
		gap: 18px;
		align-items: center;
		flex-wrap: wrap;
	}

	.navbar-vd-mobile-icons {
		display: flex;
		gap: 18px;
		align-items: center;
	}

	.navbar-vd-mobile a {
		color: #333;
		font-size: 20px;
		text-decoration: none;
		transition: all 0.2s;
		padding: 5px;
		position: relative;
	}

		.navbar-vd-mobile a:active {
			color: #e91e63;
			transform: scale(1.15);
		}

	/* Botão Anunciar Mobile - Como ícone */
	.btn-anunciar-mobile {
		color: #e91e63;
		font-size: 20px;
		text-decoration: none;
		padding: 5px;
		transition: all 0.2s;
	}

		.btn-anunciar-mobile:active {
			transform: scale(1.15);
		}

	/* ============================================ */
	/* DROPDOWN MOBILE */
	/* ============================================ */
	.mobile-dropdown-overlay {
		display: none;
		position: fixed;
		top: 60px;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 0.5);
		z-index: 9998;
	}

		.mobile-dropdown-overlay.active {
			display: block;
		}

	.mobile-dropdown-menu {
		display: none;
		position: fixed;
		top: 60px;
		left: 0;
		right: 0;
		background: white;
		max-height: calc(100vh - 60px);
		overflow-y: auto;
		box-shadow: 0 4px 12px rgba(0,0,0,0.2);
		z-index: 9999;
		animation: slideDown 0.3s ease;
	}

	@keyframes slideDown {
		from {
			transform: translateY(-20px);
			opacity: 0;
		}

		to {
			transform: translateY(0);
			opacity: 1;
		}
	}

	.mobile-dropdown-menu.active {
		display: block;
	}

	.mobile-dropdown-header {
		padding: 15px 20px;
		background: #f8f8f8;
		border-bottom: 2px solid #e91e63;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

		.mobile-dropdown-header h3 {
			font-size: 16px;
			color: #333;
			margin: 0;
		}

	.mobile-dropdown-close {
		background: none;
		border: none;
		font-size: 24px;
		color: #666;
		cursor: pointer;
		padding: 0;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.mobile-dropdown-content {
		padding: 10px 0;
	}

	.mobile-dropdown-section {
		margin-bottom: 15px;
	}

	.mobile-dropdown-section-title {
		padding: 12px 20px;
		background: #f0f0f0;
		font-weight: 600;
		color: #333;
		font-size: 14px;
		border-left: 3px solid #e91e63;
	}

	.mobile-dropdown-content a {
		display: block;
		padding: 12px 20px 12px 40px;
		color: #555;
		text-decoration: none;
		font-size: 14px;
		transition: all 0.2s;
		border-left: 3px solid transparent;
	}

		.mobile-dropdown-content a:active {
			background-color: #f9f9f9;
			color: #e91e63;
			border-left-color: #e91e63;
		}
}

/* Telas muito pequenas */
@media (max-width: 480px) {
	.navbar-vd {
		padding: 8px 12px;
	}

	.navbar-vd-logo img {
		height: 30px;
	}

	.navbar-vd-mobile-icons {
		gap: 15px;
	}

	.navbar-vd-mobile a {
		font-size: 18px;
	}

	.btn-anunciar-mobile {
		font-size: 10px;
		padding: 5px 10px;
	}
}

/* ============================================ */
/* CONTEÚDO DA PÁGINA */
/* ============================================ */
/*.content {
	padding: 20px;
	max-width: 1200px;
	margin: 0 auto;
}*/

/*.breadcrumb {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	font-size: 14px;
	color: #666;
	flex-wrap: wrap;
}

	.breadcrumb a {
		color: #e91e63;
		text-decoration: none;
	}*/

/*.page-title {
	font-size: 28px;
	margin-bottom: 20px;
	color: #333;
	font-weight: bold;
}*/

.card2 {
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	padding: 20px;
	margin-bottom: 20px;
}

.school-image {
	width: 100%;
	max-width: 500px;
	height: 200px;
	background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

	.school-image i {
		font-size: 80px;
		color: rgba(0,0,0,0.3);
	}

.info-section {
	margin-top: 20px;
}

.info-item {
	margin-bottom: 15px;
	line-height: 1.8;
}

	.info-item strong {
		color: #333;
		display: block;
		margin-bottom: 5px;
	}

.action-buttons {
	display: flex;
	gap: 15px;
	margin-top: 20px;
	flex-wrap: wrap;
}

/*.btn {
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}*/

/*.btn-primary {
	background-color: #e91e63;
	color: white;
}*/
/*
	.btn-primary:hover {
		background-color: #c2185b;
	}

.btn-secondary {
	background-color: #f5f5f5;
	color: #333;
}

	.btn-secondary:hover {
		background-color: #e0e0e0;
	}
*/
