:root {
	--primary-color: #8612a6;
	--primary-dark: #780da6;
	--primary-light: #a314a6;
	--secondary-color: #f59e0b;
	--secondary-dark: #d97706;
	--success-color: #10b981;
	--danger-color: #ef4444;
	--dark-color: #1f2937;
	--light-color: #f8fafc;
	--white: #ffffff;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
	--gray-300: #d1d5db;
	--gray-400: #9ca3af;
	--gray-500: #6b7280;
	--gray-600: #4b5563;
	--gray-700: #374151;
	--gray-800: #1f2937;
	--gray-900: #111827;
	--gradient-primary: linear-gradient(135deg, #8612a6 0%, #a314a6 100%);
	--gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
	--gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
	--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
	--shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
	--border-radius-sm: 8px;
	--border-radius-md: 12px;
	--border-radius-lg: 16px;
	--border-radius-xl: 20px;
	--border-radius-2xl: 24px;
	--border-radius-full: 9999px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	user-select: none;
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: var(--dark-color);
	overflow-x: hidden;
}

/* Enhanced Header Styles */
.navbar {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 1rem 0;
}

.navbar-brand {
	font-weight: 800;
	font-size: 1.5rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all 0.3s ease;
}

.navbar-brand:hover {
	transform: scale(1.05);
}

/* Enhanced Navigation Buttons */
.navbar .btn {
	font-weight: 600;
	padding: 12px 24px;
	border-radius: var(--border-radius-full);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
	border: 2px solid transparent;
}

.navbar .btn::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;
}

.navbar .btn:hover::before {
	left: 100%;
}

.navbar .btn-outline-primary {
	color: var(--primary-color);
	border-color: var(--primary-color);
	background: transparent;
}

.navbar .btn-outline-primary:hover {
	background: var(--primary-color);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.navbar .btn-primary {
	background: var(--gradient-primary);
	border: none;
	color: var(--white);
	box-shadow: var(--shadow-md);
}

.navbar .btn-primary:hover {
	background: var(--gradient-primary);
	transform: translateY(-2px);
	box-shadow: var(--shadow-xl);
	color: var(--white);
}

/* Hero Section */
.hero-section {
	background: var(--gradient-primary);
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero-section::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"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
	opacity: 0.3;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	color: white;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
	font-weight: 400;
}

.hero-image {
	position: relative;
	z-index: 2;
}

/* Enhanced Buttons */
.btn-primary-custom {
	background: var(--gradient-secondary);
	border: none;
	padding: 16px 32px;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: var(--border-radius-full);
	color: white;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

.btn-primary-custom::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;
}

.btn-primary-custom:hover::before {
	left: 100%;
}

.btn-primary-custom:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: var(--shadow-2xl);
	color: white;
}

.btn-primary-custom:active {
	transform: translateY(-1px) scale(0.98);
}

.btn-secondary-custom {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.3);
	padding: 16px 32px;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: var(--border-radius-full);
	color: white;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
}

.btn-secondary-custom:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.5);
	color: white;
	transform: translateY(-2px);
}

/* Enhanced Plan Frequency Selector */
.plan-frequency-selector {
	display: inline-flex;
	background: var(--white);
	border-radius: var(--border-radius-full);
	padding: 6px;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--gray-200);
	position: relative;
	overflow: hidden;
}

.plan-frequency-btn {
	position: relative;
	padding: 14px 24px;
	border-radius: var(--border-radius-full);
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	background: transparent;
	color: var(--gray-600);
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	z-index: 2;
	min-width: 120px;
	justify-content: center;
}

.plan-frequency-btn:hover {
	color: var(--primary-color);
	background: var(--gray-100);
}

.plan-frequency-btn .frequency-text {
	font-weight: 600;
}

.plan-frequency-btn .frequency-badge {
	background: var(--gradient-success);
	color: var(--white);
	padding: 4px 8px;
	border-radius: var(--border-radius-md);
	font-size: 0.75rem;
	font-weight: 700;
	box-shadow: var(--shadow-sm);
}

/* Active state for plan frequency buttons */
input[name="planFrequency"]:checked + .plan-frequency-btn {
	background: var(--gradient-primary);
	color: var(--white);
	box-shadow: var(--shadow-md);
	transform: translateY(-1px);
}

input[name="planFrequency"]:checked + .plan-frequency-btn .frequency-badge {
	background: rgba(255, 255, 255, 0.2);
	color: var(--white);
}

/* Hide radio buttons */
input[name="planFrequency"] {
	display: none;
}

/* Features Section */
.features-section {
	padding: 80px 0;
	background: var(--light-color);
}

.feature-card {
	background: white;
	padding: 40px 30px;
	border-radius: var(--border-radius-xl);
	box-shadow: var(--shadow-md);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
	cursor: default;
	user-select: none;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-2xl);
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-primary);
	border-radius: var(--border-radius-xl);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	color: white;
	font-size: 2rem;
	transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
	transform: scale(1.1) rotate(5deg);
}

/* Social Proof Section */
.social-proof-section {
	padding: 80px 0;
	background: white;
}

.number-text {
    color: var(--primary-color);
}

/* Enhanced Pricing Section */
.pricing-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Swiper Styles */
.plans-swiper {
	padding: 20px 0 60px 0;
	overflow: hidden;
}

.plans-swiper .swiper-slide {
	height: auto;
	display: flex;
}

.plans-swiper .swiper-button-next,
.plans-swiper .swiper-button-prev {
	color: var(--primary-color);
	background: var(--white);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	box-shadow: var(--shadow-lg);
	transition: all 0.3s ease;
	border: 2px solid var(--gray-200);
}

.plans-swiper .swiper-button-next:hover,
.plans-swiper .swiper-button-prev:hover {
	background: var(--primary-color);
	color: var(--white);
	transform: scale(1.1);
}

.plans-swiper .swiper-button-next::after,
.plans-swiper .swiper-button-prev::after {
	font-size: 18px;
	font-weight: bold;
}

.plans-swiper .swiper-pagination {
	bottom: 20px;
}

.plans-swiper .swiper-pagination-bullet {
	background: var(--gray-300);
	opacity: 1;
	width: 12px;
	height: 12px;
	transition: all 0.3s ease;
}

.plans-swiper .swiper-pagination-bullet-active {
	background: var(--primary-color);
	transform: scale(1.2);
}

.pricing-card {
	background: white;
	border-radius: var(--border-radius-xl);
	padding: 40px 30px;
	box-shadow: var(--shadow-md);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	border: 2px solid transparent;
	height: 100%;
	width: 100%;
}

.pricing-card:hover {
	box-shadow: var(--shadow-2xl);
}

.pricing-card ul {
	list-style: none;
}

.pricing-card.featured {
	border-color: var(--primary-color);
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.pricing-card.featured::before {
	content: 'MAIS POPULAR';
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gradient-primary);
	color: white;
	padding: 8px 20px;
	border-radius: var(--border-radius-full);
	font-size: 0.8rem;
	font-weight: 600;
	box-shadow: var(--shadow-md);
}

.price-value {
	font-size: 3rem;
	font-weight: 800;
	color: var(--primary-color);
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.price-period {
	color: var(--gray-500);
	font-size: 1rem;
	font-weight: 500;
}

/* Enhanced Pricing Card Buttons */
.pricing-card .btn {
	border-radius: var(--border-radius-full);
	padding: 14px 28px;
	font-weight: 600;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.pricing-card .btn::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;
}

.pricing-card .btn:hover::before {
	left: 100%;
}

.pricing-card .btn-primary {
	background: var(--gradient-primary);
	border: none;
	box-shadow: var(--shadow-md);
}

.pricing-card .btn-primary:hover {
	background: var(--gradient-primary);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.pricing-card .btn-outline-primary {
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
}

.pricing-card .btn-outline-primary:hover {
	background: var(--primary-color);
	color: var(--white);
	transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
	padding: 100px 0;
	background: white;
}

.accordion-button {
	background: var(--light-color);
	border: none;
	font-weight: 600;
	padding: 20px;
	border-radius: var(--border-radius-md);
	box-shadow: none;
	outline: none;
	transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
	background: var(--primary-color);
	color: white;
}

.accordion-body {
	padding: 20px;
	background: white;
	border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
}

.accordion-item {
	border: none;
	margin-bottom: 1rem;
	border-radius: var(--border-radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

/* CTA Section */
.cta-section {
	padding: 100px 0;
	background: var(--gradient-primary);
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-section::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"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
	opacity: 0.3;
}

/* Footer */
.footer {
	background: var(--dark-color);
	color: white;
	padding: 60px 0 30px;
}

.footer a {
	transition: all 0.3s ease;
}

.footer a:hover {
	color: var(--primary-light);
	transform: translateX(5px);
}

.whatsapp-support-container {
    position: fixed;
    z-index: 99;
    right: 5px;
    bottom: 10px;
}

.whatsapp-support {
    color: #ffffff;
    background-color: #25d366;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    transition: all .2s ease-in-out;
}

.whatsapp-support:hover {
    color: #ffffff;
    transition: all .2s ease-in-out;
}

.whatsapp-support i {
    margin-top: 2px;
    font-size: 26px;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@keyframes shimmer {
	0% {
		background-position: -200px 0;
	}
	100% {
		background-position: calc(200px + 100%) 0;
	}
}

.fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

.slide-in-right {
	animation: slideInRight 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.pricing-card.featured {
		transform: none;
	}

	.plan-frequency-selector {
		flex-direction: column;
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
		border-radius: var(--border-radius-lg);
	}

	.plan-frequency-btn {
		min-width: auto;
		width: 100%;
	}

	.navbar .btn {
		padding: 10px 20px;
		font-size: 0.9rem;
	}

	.plans-swiper .swiper-button-next,
	.plans-swiper .swiper-button-prev {
		display: none;
	}
}

@media (max-width: 576px) {
	.btn-primary-custom,
	.btn-secondary-custom {
		padding: 14px 24px;
		font-size: 1rem;
	}

	.feature-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}

	.price-value {
		font-size: 2.5rem;
	}
}

/* Loading Animation */
.loading-dots {
	display: inline-block;
}

.loading-dots::after {
	content: '';
	animation: dots 1.5s steps(5, end) infinite;
}

@keyframes dots {
	0%, 20% { content: ''; }
	40% { content: '.'; }
	60% { content: '..'; }
	80%, 100% { content: '...'; }
}

/* Enhanced hover effects */
.btn, .card, .feature-card, .pricing-card {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus,
.plan-frequency-btn:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: var(--border-radius-full);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--primary-dark);
}


