/* Hero Section */
.hero {
	padding: 100px 0 60px;
	text-align: center;
}

.hero h1 {
	font-size: 48px;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #ffffff 0%, #ff6b00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero p {
	font-size: 20px;
	color: #b0b0b0;
	max-width: 700px;
	margin: 0 auto 40px;
}

/* Toggle */
.billing-toggle {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 60px;
}

.toggle-option {
	font-size: 18px;
	color: #b0b0b0;
	transition: color 0.3s;
}

.toggle-option.active {
	color: #ff6b00;
	font-weight: bold;
}

.toggle-switch {
	width: 60px;
	height: 30px;
	background: rgba(255, 107, 0, 0.2);
	border-radius: 15px;
	position: relative;
	cursor: pointer;
	transition: background 0.3s;
}

.toggle-switch.anual {
	background: rgba(255, 107, 0, 0.5);
}

.toggle-slider {
	width: 26px;
	height: 26px;
	background: #ff6b00;
	border-radius: 50%;
	position: absolute;
	top: 2px;
	left: 2px;
	transition: left 0.3s;
}

.toggle-switch.anual .toggle-slider {
	left: 32px;
}

.discount-badge {
	display: inline-block;
	background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
	padding: 5px 15px;
	color: white;
	border-radius: 20px;
	font-size: 14px;
	margin-left: 10px;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }

	50% { transform: scale(1.05); }

}

/* Pricing Cards */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-bottom: 80px;
}

.pricing-card {
	background: rgba(26, 26, 46, 0.6);
	border: 2px solid rgba(255, 107, 0, 0.2);
	border-radius: 20px;
	padding: 40px;
	transition: all 0.3s;
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.pricing-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #ff6b00, #ff9500);
	transform: scaleX(0);
	transition: transform 0.3s;
}

.pricing-card:hover::before {
	transform: scaleX(1);
}

.pricing-card:hover {
	transform: translateY(-10px);
	border-color: #ff6b00;
	box-shadow: 0 20px 50px rgba(255, 107, 0, 0.3);
}

.pricing-card.popular {
	border-color: #ff6b00;
	border-width: 3px;
	transform: scale(1.05);
}

.pricing-card.popular::before {
	transform: scaleX(1);
}

.popular-badge {
	position: absolute;
	top: 20px;
	right: -35px;
	background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
	color: white;
	padding: 5px 40px;
	transform: rotate(45deg);
	font-size: 12px;
	font-weight: bold;
	box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.plan-name {
	font-size: 24px;
	margin-bottom: 10px;
	color: #ff6b00;
}

.plan-description {
	color: #b0b0b0;
	margin-bottom: 30px;
	font-size: 14px;
}

.price-container {
	margin-bottom: 30px;
}

.price {
	font-size: 48px;
	font-weight: bold;
	color: #ffffff;
}

.price span {
	font-size: 24px;
	color: #b0b0b0;
}

.price-period {
	color: #b0b0b0;
	font-size: 16px;
}

.original-price {
	color: #666;
	text-decoration: line-through;
	font-size: 18px;
	margin-right: 10px;
}

.features-list {
	list-style: none;
	margin-bottom: 30px;
}

.features-list li {
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 107, 0, 0.1);
	display: flex;
	align-items: center;
	gap: 10px;
}

.features-list li:last-child {
	border-bottom: none;
}

.check-icon {
	color: #ff6b00;
	font-weight: bold;
}

.disabled-feature {
	color: #666;
	text-decoration: line-through;
}

.select-button {
	width: 100%;
	padding: 15px;
	background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
	color: white;
	border: none;
	border-radius: 50px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s;
}

.select-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
}

.select-button.outline {
	background: transparent;
	border: 2px solid #ff6b00;
}

.select-button.outline:hover {
	background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
}

/* FAQ Section */
.faq-section {
	padding: 60px 0;
	background: linear-gradient(135deg, #16213e 0%, #0f0f0f 100%);
}

.section-title {
	text-align: center;
	font-size: 36px;
	margin-bottom: 50px;
	color: #ff6b00;
}

.faq-item {
	background: rgba(26, 26, 46, 0.6);
	border: 1px solid rgba(255, 107, 0, 0.2);
	border-radius: 10px;
	margin-bottom: 20px;
	overflow: hidden;
}

.faq-question {
	padding: 20px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.3s;
}

.faq-question:hover {
	background: rgba(255, 107, 0, 0.1);
}

.faq-answer {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s;
	color: #b0b0b0;
}

.faq-item.active .faq-answer {
	padding: 20px;
	max-height: 200px;
}

.faq-icon {
	transition: transform 0.3s;
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 32px;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
	}

	.pricing-card.popular {
		transform: scale(1);
	}

	.nav-links {
		display: none;
	}
}
