* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(255, 87, 51, 0.1);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: bold;
	text-decoration: none;
	color: #333;
}

.nav-logo img {
	height: 40px;
	width: auto;
}

.nav-menu {
	display: flex;
	gap: 2rem;
}

.nav-link {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
	color: #ff5733;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.bar {
	width: 25px;
	height: 3px;
	background-color: #333;
	margin: 3px 0;
	transition: 0.3s;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	max-width: 400px;
	padding: 20px;
	z-index: 10000;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
}

.cookie-modal.show {
	transform: translateY(0);
	opacity: 1;
}

.cookie-modal h3 {
	margin-bottom: 10px;
	color: #333;
}

.cookie-modal p {
	margin-bottom: 15px;
	color: #666;
	font-size: 0.9rem;
	line-height: 1.5;
}

.cookie-buttons {
	display: flex;
	gap: 10px;
}

.cookie-buttons button {
	padding: 8px 16px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 0.9rem;
	transition: background-color 0.3s ease;
}

.cookie-buttons .btn-primary {
	background: linear-gradient(135deg, #ff5733, #ff7961);
	color: white;
}

.cookie-buttons .btn-secondary {
	background: #f5f5f5;
	color: #666;
}

.cookie-buttons .btn-secondary:hover {
	background: #e0e0e0;
}

/* Form submission modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10001;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.form-modal.show {
	opacity: 1;
	visibility: visible;
}

.form-modal-content {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	min-width: 300px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.form-modal.show .form-modal-content {
	transform: scale(1);
}

.form-modal h3 {
	color: #2e7d32;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.form-modal p {
	color: #666;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #e8f5e8;
	border-top: 4px solid #2e7d32;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 1rem;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.success-icon {
	width: 60px;
	height: 60px;
	background: #2e7d32;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: white;
	font-size: 1.5rem;
}

/* Checkbox Styles */
.checkbox-container {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 0.9rem;
	color: #666;
	line-height: 1.5;
	position: relative;
}

.checkbox-container input[type='checkbox'] {
	opacity: 0;
	position: absolute;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	height: 20px;
	width: 20px;
	background-color: #fff;
	border: 2px solid #e9ecef;
	border-radius: 3px;
	position: relative;
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-top: 2px;
}

.checkbox-container:hover input ~ .checkmark {
	border-color: #ff5733;
}

.checkbox-container input:checked ~ .checkmark {
	background-color: #ff5733;
	border-color: #ff5733;
}

.checkmark:after {
	content: '';
	position: absolute;
	display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
	display: block;
}

.checkbox-container .checkmark:after {
	left: 6px;
	top: 2px;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* Hero Section */
.hero {
	height: 100vh;
	background: linear-gradient(
			135deg,
			rgba(255, 87, 51, 0.8),
			rgba(46, 125, 50, 0.6)
		),
		url('../img/h1.webp');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	position: relative;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 87, 51, 0.3),
		rgba(46, 125, 50, 0.4)
	);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	padding: 0 20px;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Buttons */
.btn-primary,
.btn-secondary {
	padding: 12px 30px;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 500;
	transition: all 0.3s ease;
	display: inline-block;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary {
	background: linear-gradient(135deg, #ff5733, #ff7961);
	color: white;
	box-shadow: 0 4px 15px rgba(255, 87, 51, 0.3);
}

.btn-primary:hover {
	background: linear-gradient(135deg, #e64a19, #ff5733);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 87, 51, 0.4);
}

.btn-secondary {
	background-color: transparent;
	color: white;
	border: 2px solid white;
}

.btn-secondary:hover {
	background: linear-gradient(135deg, #2e7d32, #4caf50);
	color: white;
	border-color: #2e7d32;
}

/* Sections */
section {
	padding: 80px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-header h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #333;
}

.section-header p {
	font-size: 1.1rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

/* About Section */
.about {
	background: linear-gradient(135deg, #f8f9fa, #e8f5e8);
}

.about-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 3rem;
	align-items: center;
}

.about-text h3 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: #333;
}

.about-text p {
	margin-bottom: 1.5rem;
	color: #666;
	line-height: 1.7;
}

.about-stats {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.stat-item {
	text-align: center;
	padding: 1.5rem;
	background: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: bold;
	color: #ff5733;
	margin-bottom: 0.5rem;
}

.stat-label {
	color: #666;
	font-weight: 500;
}

/* Services Section */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.service-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #333;
}

.service-card p {
	color: #666;
	line-height: 1.6;
}

/* FAQ Section */
.faq {
	background: linear-gradient(135deg, #f0f4f8, #e8f5e8);
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	margin-bottom: 1rem;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: white;
	transition: background-color 0.3s ease;
}

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

.faq-question h3 {
	margin: 0;
	color: #333;
	font-size: 1.1rem;
}

.faq-toggle {
	font-size: 1.5rem;
	color: #ff5733;
	transition: transform 0.3s ease;
}

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-answer.active {
	padding: 1.5rem;
	max-height: 200px;
}

.faq-answer p {
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* Contact Section */
.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.contact-info h3,
.contact-form h3 {
	margin-bottom: 1.5rem;
	color: #333;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
	gap: 1rem;
}

.contact-item i {
	color: #ff5733;
	font-size: 1.2rem;
	margin-top: 0.2rem;
}

.contact-item strong {
	display: block;
	margin-bottom: 0.5rem;
	color: #333;
}

.contact-item p {
	color: #666;
	margin: 0;
	line-height: 1.5;
}

/* Form Styles */
.form-group {
	margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid #e9ecef;
	border-radius: 5px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #ff5733;
	box-shadow: 0 0 0 3px rgba(255, 87, 51, 0.1);
}

/* Courses Page Styles */
.featured-courses {
	background: linear-gradient(135deg, #f8f9fa, #e8f5e8);
}

.courses-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.course-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.course-card:hover {
	transform: translateY(-10px);
}

.course-image {
	background: linear-gradient(135deg, #ff5733, #2e7d32);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.course-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.course-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: linear-gradient(135deg, #4caf50, #66bb6a);
	color: white;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
}

.course-content {
	padding: 2rem;
}

.course-content h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #333;
}

.course-content p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.course-details {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.course-details span {
	font-size: 0.9rem;
	color: #666;
	background: #f8f9fa;
	padding: 5px 10px;
	border-radius: 15px;
}

.course-price {
	margin-bottom: 1.5rem;
}

.price {
	font-size: 1.8rem;
	font-weight: bold;
	color: #ff5733;
}

.installment {
	display: block;
	font-size: 0.9rem;
	color: #666;
	margin-top: 0.5rem;
}

.courses-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.course-item {
	display: flex;
	align-items: center;
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	gap: 2rem;
	transition: transform 0.3s ease;
}

.course-item:hover {
	transform: translateX(10px);
}

.course-icon {
	font-size: 2.5rem;
	min-width: 60px;
}

.course-info {
	flex: 1;
}

.course-info h3 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: #333;
}

.course-info p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.course-meta {
	font-size: 0.9rem;
	color: #2e7d32;
}

.learning-path {
	background: linear-gradient(135deg, #f0f4f8, #fff8f0);
}

.path-content {
	text-align: center;
}

.path-text {
	max-width: 800px;
	margin: 0 auto;
}

.path-text h3 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: #333;
}

.path-text p {
	color: #666;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.path-benefits {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	margin-top: 2rem;
}

.benefit-item {
	background: white;
	padding: 1rem;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(255, 87, 51, 0.1);
	color: #2e7d32;
	font-weight: 500;
}

/* Footer */
.footer {
	background: linear-gradient(135deg, #2c3e50, #34495e);
	color: white;
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
	margin-bottom: 1rem;
	color: white;
}

.footer-section p {
	color: #ccc;
	line-height: 1.6;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid #555;
	padding-top: 1rem;
	text-align: center;
	color: #ccc;
}

/* Animation Classes */
.animate-section {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

.animate-section.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: white;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-toggle {
		display: flex;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.about-content {
		grid-template-columns: 1fr;
	}

	.contact-content {
		grid-template-columns: 1fr;
	}

	.course-item {
		flex-direction: column;
		text-align: center;
	}

	.cookie-modal {
		right: 10px;
		left: 10px;
		max-width: none;
	}

	.section-header h2 {
		font-size: 1.5rem;
	}

	.path-benefits {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: 2rem;
	}

	.services-grid,
	.courses-grid {
		grid-template-columns: 1fr;
	}

	section {
		padding: 60px 0;
	}

	.container {
		padding: 0 15px;
	}
}

.legal-page {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f8f9fa, #fff8f0);
	min-height: 100vh;
}

.legal-page h1 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.last-updated {
	color: #666;
	margin-bottom: 2rem;
	font-style: italic;
}

.legal-page section {
	margin-bottom: 2rem;
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(255, 87, 51, 0.1);
	border-left: 4px solid #ff5733;
}

.legal-page h2 {
	color: #ff5733;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.legal-page p {
	color: #666;
	line-height: 1.7;
	margin-bottom: 1rem;
}

.legal-page ul {
	margin-left: 2rem;
	color: #666;
}

.legal-page li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
}
