:root {
	--primary-color: #2C3E50; /* Azul oscuro principal */
	--secondary-color: #E74C3C; /* Rojo */
	--accent-color: #F39C12; /* Naranja */
	--light-color: #ECF0F1; /* Gris claro */
	--dark-color: #2C3E50; /* Azul oscuro */
	--text-color: #333333;
	--white: #FFFFFF;
}

body {
	font-family: 'Arial', sans-serif;
	margin: 0;
	padding: 0;
	color: var(--text-color);
	background-color: var(--light-color);
	line-height: 1.6;
}

.container {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px 0;
}

/* Header */
header {
	background-color: var(--primary-color);
	color: var(--white);
	padding: 20px 0;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--white);
}

.logo img {
	height: 30px;
}

.logo span {
	font-weight: bold;
	font-size: 20px;
}

.back-btn {
	background-color: var(--accent-color);
	color: var(--white);
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s;
	text-decoration: none;
}

.back-btn:hover {
	background-color: #D35400;
}

/* Preguntas Frecuentes */
.faq-container {
	background-color: var(--white);
	border-radius: 8px;
	padding: 30px;
	margin: 30px 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

h1 {
	color: var(--primary-color);
	margin-top: 0;
	border-bottom: 2px solid var(--accent-color);
	padding-bottom: 10px;
	text-align: center;
}

.faq-intro {
	text-align: center;
	margin-bottom: 30px;
}

.search-box {
	width: 100%;
	padding: 12px 20px;
	margin: 20px 0;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
}

.faq-category {
	margin: 40px 0 20px;
	color: var(--primary-color);
	border-bottom: 1px solid var(--accent-color);
	padding-bottom: 10px;
}

.faq-item {
	margin-bottom: 15px;
	border: 1px solid #eee;
	border-radius: 5px;
	overflow: hidden;
}

.faq-question {
	background-color: var(--light-color);
	padding: 15px 20px;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s;
}

.faq-question:hover {
	background-color: #e0e0e0;
}

.faq-question i {
	transition: transform 0.3s;
}

.faq-answer {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-question {
	background-color: var(--accent-color);
	color: var(--white);
}

.faq-item.active .faq-question i {
	transform: rotate(180deg);
}

.faq-item.active .faq-answer {
	padding: 20px;
	max-height: 500px;
}

.contact-section {
	background-color: rgba(243, 156, 18, 0.1);
	padding: 25px;
	border-radius: 8px;
	margin-top: 40px;
	text-align: center;
}

.contact-btn {
	background-color: var(--secondary-color);
	color: var(--white);
	border: none;
	padding: 12px 25px;
	border-radius: 4px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s;
	margin-top: 15px;
	text-decoration: none;
	display: inline-block;
}

.contact-btn:hover {
	background-color: #c0392b;
}

/* Footer */
footer {
	background-color: var(--primary-color);
	color: var(--white);
	padding: 30px 0;
	margin-top: 40px;
}

.footer-content {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-links {
	display: flex;
	gap: 20px;
}

.footer-links a {
	color: var(--white);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: var(--accent-color);
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-icon {
	color: var(--white);
	font-size: 20px;
	transition: color 0.3s;
}

.social-icon:hover {
	color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
	.header-content, .footer-content {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
	
	.footer-links {
		flex-direction: column;
		gap: 10px;
	}
	
	.faq-question {
		padding: 12px 15px;
		font-size: 15px;
	}
}
