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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

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

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 80px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,800 1000,1000"/></svg>');
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-size: 4rem;
	font-weight: 900;
	margin-bottom: 20px;
	text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.hero h3 {
	font-size: 2.5rem;
	margin-bottom: 30px;
	font-weight: 800;
	opacity: 0.95;
}

.hero p {
	font-size: 1.3rem;
	margin-bottom: 30px;
	opacity: 0.9;
	font-weight: 500;
	line-height: 1.3;
}

.stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin: 40px 0;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.stat-item {
	background: rgba(255,255,255,0.15);
	padding: 30px 20px;
	border-radius: 15px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
	display: block;
	font-size: 3rem;
	font-weight: 900;
	margin-bottom: 10px;
	color: #ffd700;
}

.stat-label {
	font-size: 1rem;
	opacity: 0.9;
	font-weight: 600;
}

.cta-primary {
	display: inline-block;
	background: linear-gradient(45deg, #28a745, #20c997);
	color: white;
	padding: 18px 35px;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.1rem;
	box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.cta-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(40, 167, 69, 0.6);
}

/* Nuevo Pricing Section */
.pricing-highlight {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 80px 0;
	text-align: center;
}

.pricing-card {
	background: white;
	border-radius: 20px;
	padding: 50px;
	box-shadow: 0 15px 40px rgba(0,0,0,0.1);
	max-width: 800px;
	margin: 0 auto;
	border: 3px solid #28a745;
	position: relative;
	overflow: hidden;
}

.pricing-card::before {
	content: '💎 PRECIO ESPECIAL';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(45deg, #28a745, #20c997);
	color: white;
	padding: 8px 30px;
	border-radius: 0 0 15px 15px;
	font-weight: 700;
	font-size: 0.9rem;
}

.pricing-main {
	margin-top: 30px;
	margin-bottom: 40px;
}

.price-amount {
	font-size: 4rem;
	font-weight: 900;
	color: #28a745;
	margin-bottom: 10px;
}

.price-period {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 20px;
}

.price-description {
	font-size: 1.1rem;
	color: #555;
	line-height: 1.6;
	margin-bottom: 30px;
}

.pricing-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin-top: 40px;
}

.pricing-option {
	background: #f8f9fa;
	padding: 25px;
	border-radius: 15px;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.pricing-option:hover {
	border-color: #28a745;
	transform: translateY(-2px);
}

.pricing-option.featured {
	background: linear-gradient(135deg, #28a745, #20c997);
	color: white;
	border-color: #28a745;
}

.option-title {
	font-weight: 700;
	font-size: 1.2rem;
	margin-bottom: 15px;
}

.option-price {
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 10px;
}

.option-description {
	font-size: 0.95rem;
	opacity: 0.9;
}

/* Section Styles */
.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-title {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 20px;
	color: #333;
}

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

/* Features Section */
.features {
	padding: 80px 0;
	background: #f8f9fa;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.feature-card {
	background: white;
	padding: 40px 30px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(20px);
}

.feature-card.fade-in {
	opacity: 1;
	transform: translateY(0);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
	font-size: 3rem;
	margin-bottom: 20px;
	display: block;
}

.feature-title {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: #333;
}

.feature-description {
	color: #666;
	line-height: 1.6;
}

/* Problem/Solution Section */
.problem-solution {
	padding: 80px 0;
	background: white;
}

.comparison {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 40px;
}

.comparison-card {
	padding: 40px;
	border-radius: 20px;
	text-align: center;
}

.before-card {
	background: linear-gradient(135deg, #fee2e2, #fecaca);
	border: 3px solid #dc2626;
}

.after-card {
	background: linear-gradient(135deg, #dcfce7, #bbf7d0);
	border: 3px solid #16a34a;
}

.comparison-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 30px;
}

.before-card .comparison-title {
	color: #dc2626;
}

.after-card .comparison-title {
	color: #16a34a;
}

.comparison-card ul {
	padding: 0;
}

.comparison-card li {
	margin-bottom: 15px;
	font-size: 1.1rem;
	font-weight: 500;
}

/* Testimonials */
.testimonials {
	padding: 80px 0;
	background: #f8f9fa;
}

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

.testimonial-card {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 20px;
	color: #444;
	line-height: 1.6;
}

.testimonial-author {
	font-weight: 600;
	color: #667eea;
}

/* Final CTA */
.final-cta {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 80px 0;
	text-align: center;
}

.final-cta h2 {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 20px;
}

.final-cta p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	opacity: 0.9;
}

.whatsapp-btn {
	display: inline-block;
	background: #25D366;
	color: white;
	padding: 15px 30px;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	margin-top: 20px;
	transition: all 0.3s ease;
}

.whatsapp-btn:hover {
	background: #128C7E;
	transform: translateY(-2px);
}

/* Footer */
.footer {
	background: #333;
	color: white;
	padding: 40px 0;
	text-align: center;
}

.footer a {
	color: #667eea;
	text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.hero h3 {
		font-size: 1.8rem;
	}

	.stats {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.comparison {
		grid-template-columns: 1fr;
	}

	.section-title {
		font-size: 2rem;
	}

	.final-cta h2 {
		font-size: 2rem;
	}

	.pricing-options {
		grid-template-columns: 1fr;
	}
}
.cta-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Asegurar que todos los botones tengan la misma altura base */
.cta-primary,
.cta-talleres {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 56px; /* Altura mínima uniforme */
    box-sizing: border-box;
}

/* Botón de talleres ajustado */
.cta-talleres {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    font-weight: 800;
}

.cta-talleres::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-talleres:hover::before {
    left: 100%;
}

.cta-talleres:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-buttons-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-primary,
    .cta-talleres {
        width: 100%;
        max-width: 300px;
    }
}