/* Estilos generales */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Arial', sans-serif;
}

body {
	background-color: #f5f9ff;
	color: #333;
	line-height: 1.6;
}

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

/* Header */
header {
	background: linear-gradient(135deg, #1e3a8a, #3b82f6);
	color: white;
	padding: 20px 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 28px;
	font-weight: bold;
	color: white;
	text-decoration: none;
}
.logo span {
	color: #93c5fd;
}

.nav-links {
	display: flex;
	list-style: none;
}
.nav-links li {
	margin-left: 30px;
}
.nav-links a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}
.nav-links a:hover {
	color: #93c5fd;
}

.btn {
	display: inline-block;
	padding: 10px 20px;
	color: #1e3a8a;
	font-weight: bold;
	text-decoration: none;
	background-color: white;
	border-radius: 5px;
	transition: all 0.3s;
}
.btn:hover {
	background-color: #93c5fd;
	color: white;
}

/* Hero Section */
.hero {
	padding: 80px 0;
	text-align: center;
	background-color: white;
}
.hero h1 {
	font-size: 48px;
	margin-bottom: 20px;
	color: #1e3a8a;
}
.hero p {
	font-size: 20px;
	color: #4b5563;
	max-width: 800px;
	margin: 0 auto 40px;
}
.hero-btns {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.btn-area {
	padding: 5px 10px;
	background-color: #1e3a8a;
	color: white;
}
.btn-area:hover {
	background-color: #3b82f6;
	color: white;
}
.btn-primary {
	background-color: #1e3a8a;
	color: white;
}
.btn-primary:hover {
	background-color: #3b82f6;
}
.btn-secondary {
	background-color: #e0e7ff;
	color: #1e3a8a;
	border: 1px solid #1e3a8a;
}
.btn-secondary:hover {
	background-color: #bfdbfe;
}

/* Features Section */
.features {
	padding: 40px 0;
	background-color: #f0f7ff;
}

.section-title {
	text-align: center;
	margin-bottom: 40px;
	color: #1e3a8a;
	font-size: 36px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}
.feature-card {
	background-color: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}
.feature-card:hover {
	transform: translateY(-10px);
}
.feature-icon {
	font-size: 40px;
	color: #3b82f6;
	margin-bottom: 10px;
}
.feature-card h3 {
	color: #1e3a8a;
	margin-bottom: 15px;
	font-size: 22px;
}

/* Testimonials */
.testimonials {
	padding: 80px 0;
	background-color: white;
}
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}
.testimonial-card {
	background-color: #f8fafc;
	padding: 30px;
	border-radius: 10px;
	border-left: 4px solid #3b82f6;
}
.testimonial-text {
	font-style: italic;
	margin-bottom: 20px;
	color: #4b5563;
}
.testimonial-author {
	font-weight: bold;
	color: #1e3a8a;
}

/* Pricing */
.pricing {
	padding: 40px 0;
	background-color: #f0f7ff;
}
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}
.pricing-card {
	padding: 40px 30px;
	text-align: center;
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.pricing-card.popular {
	border: 2px solid #3b82f6;
	position: relative;
}

.popular-badge {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #3b82f6;
	color: white;
	padding: 5px 20px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: bold;
}

.price {
	font-size: 48px;
	color: #1e3a8a;
	margin: 20px 0;
}
.price span {
	font-size: 16px;
	color: #6b7280;
}

.pricing-features {
	list-style: none;
	margin: 30px 0;
}
.pricing-features li {
	margin-bottom: 15px;
	line-height: 0.75;
	color: #4b5563;
}

/* Contact */
.contact {
	padding: 80px 0;
	background-color: white;
}
.contact-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 50px;
}
.contact-info h3 {
	color: #1e3a8a;
	margin-bottom: 20px;
	font-size: 24px;
}
.contact-details {
	margin-bottom: 30px;
}
.contact-details p {
	margin-bottom: 10px;
	color: #4b5563;
}
.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid #d1d5db;
	border-radius: 5px;
	font-size: 16px;
}
.contact-form textarea {
	height: 150px;
}

/* Footer */
footer {
	background-color: #1e3a8a;
	color: white;
	padding: 50px 0 20px;
}
.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}
.footer-col h3 {
	color: #93c5fd;
	margin-bottom: 20px;
	font-size: 18px;
}
.footer-links {
	list-style: none;
}
.footer-links li {
	margin-bottom: 10px;
}
.footer-links a {
	color: #e0e7ff;
	text-decoration: none;
	transition: color 0.3s;
}
.footer-links a:hover {
	color: white;
}

.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #3b82f6;
	color: #93c5fd;
	font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}
	
	.hero h1 {
		font-size: 36px;
	}
	
	.hero p {
		font-size: 18px;
	}
	
	.hero-btns {
		flex-direction: column;
		align-items: center;
	}
}

.tachado {
	text-decoration: line-through;
}
.subrayado {
	text-decoration: underline;
}