/* --- CARROSSEL --- */
.carousel-container {
	position: relative;
	width: 100%;
	height: 450px;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 3rem;
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end; /* Texto embaixo */
}

.carousel-slide.active { opacity: 1; }

/* Overlay escuro para ler o texto */
.slide-content {
	background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
	width: 100%;
	padding: 60px 40px 40px 40px;
	color: #fff;
}

.slide-content h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 2.5rem;
	margin: 0 0 10px 0;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
	margin: 0;
	max-width: 600px;
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);
	border: none;
	color: white;
	padding: 15px;
	cursor: pointer;
	border-radius: 50%;
	transition: background 0.3s;
	z-index: 10;
}
.carousel-btn:hover { background-color: rgba(255, 255, 255, 0.4); }
.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.carousel-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}
.dot {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	cursor: pointer;
}
.dot.active { background-color: #fff; transform: scale(1.2); }

/* --- FAQ (Accordion) --- */
.faq-item {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	margin-bottom: 15px;
	background: #fff;
	overflow: hidden;
}

.faq-item summary {
	padding: 20px;
	cursor: pointer;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #333;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.2s;
}

.faq-item summary:hover { background-color: #f9f9f9; }

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
	content: '+';
	font-size: 1.5rem;
	color: var(--primary-color);
	font-weight: 300;
}

.faq-item[open] summary::after { content: '-'; }
.faq-item[open] summary {
	background-color: #f0f7ff;
	color: var(--primary-color);
	border-bottom: 1px solid #e0e0e0;
}

.faq-content {
	padding: 20px;
	color: #555;
	line-height: 1.6;
	background-color: #fff;
}
/* Responsividade básica */
@media (max-width: 768px) {
	.header-top-row { flex-direction: column; gap: 15px; }
	.main-nav-links { flex-wrap: wrap; justify-content: center; gap: 15px; }
	.carousel-content h2 { font-size: 1.8rem; }
	.carousel-container { height: 350px; }
}