/* Base */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #252B37;
	background: #F8F7FB;
	line-height: 1.6;
}

.container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

h1, h2, h3 {
	font-family: 'DM Sans', sans-serif;
	margin: 0;
	color: #252B37;
}

p {
	margin: 0;
	color: #475569;
}

a { color: inherit; }

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	background: linear-gradient(135deg, #8F66F8, #FB9DCE);
	color: #fff;
	text-decoration: none;
	border-radius: 14px;
	font-weight: 700;
	border: 1px solid rgba(255, 255, 255, 0.35);
	box-shadow: 0 10px 30px rgba(102, 63, 178, 0.24);
	transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(102, 63, 178, 0.28); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 8px 22px rgba(102, 63, 178, 0.2); }

/* Header */
.top-bar {
	position: sticky;
	top: 0;
	z-index: 1200;
	background: #fff;
	border-bottom: 1px solid #E2E8F0;
	box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.top-bar-content {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 12px 0;
	position: relative;
}

.brand { display: flex; align-items: center; }
.top-bar-logo { height: 44px; object-fit: contain; }

.top-bar-nav { flex: 1; display: flex; justify-content: center; }
.menu { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; align-items: center; }
.menu-item a { text-decoration: none; font-weight: 600; color: #252B37; transition: color 0.2s ease; }
.menu-item a:hover { color: #8F66F8; }

.top-bar-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.language-switcher { display: flex; gap: 6px; align-items: center; color: #64748B; font-weight: 600; }
.language-option { color: #64748B; text-decoration: none; }
.language-option:hover { color: #8F66F8; }

.hamburger-menu {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
	width: 34px;
	height: 30px;
	border: none;
	background: transparent;
	padding: 4px;
	cursor: pointer;
}

.hamburger-menu span {
	display: block;
	height: 10px;
	width: 100%;
	background: #6b7280;
	border-radius: 3px;
}


.btn-login {
	padding: 8px 14px;
	border: 1px solid #E2E8F0;
	border-radius: 10px;
	text-decoration: none;
	color: #252B37;
	font-weight: 700;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	transition: transform 0.2s ease, box-shadow 0.25s ease;
	margin-left: 16px;
	margin-right: 12px;
}

.btn-login:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,0.08); }

/* Hero */
.hero {
	position: relative;
	background: linear-gradient(135deg, #8F66F8 0%, #FB9DCE 50%, #FDF2FF 100%);
	color: #fff;
	padding: 200px 0 100px;
	overflow: hidden;
}

.hero-carousel {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-carousel .slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.8s ease;
}

.hero-carousel .slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.6) contrast(1.05);
}

.hero-carousel .slide.active { opacity: 0.35; }

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.16), transparent 40%),
				radial-gradient(circle at 80% 0%, rgba(255,255,255,0.12), transparent 42%);
	pointer-events: none;
}

.hero .container { position: relative; z-index: 1; text-align: center; }
.hero h1 { font-size: 42px; color: #fff; margin-bottom: 16px; }
.hero p { font-size: 18px; color: #F7F5FF; margin-bottom: 28px; }
.hero-buttons { display: flex; justify-content: center; gap: 12px; }

.hero-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 18px;
}

.hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.8);
	background: transparent;
	opacity: 0.7;
	cursor: pointer;
	transition: opacity 0.2s ease, background 0.2s ease;
}

.hero-dot.active { background: #fff; opacity: 1; }

/* Sections */
section { padding: 80px 0; }

.section-header { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.section-header h2 { font-size: 32px; margin-bottom: 12px; }
.section-header p { color: #475569; }

.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.benefit-item { background: #fff; border: 1px solid #E2E8F0; border-radius: 14px; padding: 16px; box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
.benefit-item img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 12px;
	opacity: 0.85;
}
.benefit-item h3 { font-size: 20px; margin-bottom: 6px; }
.benefit-item p { color: #475569; }

.how-it-works { background: linear-gradient(180deg, #F4F1FF 0%, #F8F7FB 100%); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.step { background: #fff; border: 1px solid #E2E8F0; border-radius: 14px; padding: 16px; box-shadow: 0 8px 20px rgba(0,0,0,0.06); display: flex; flex-direction: column; height: 100%; border-top-width: 6px; border-top-style: solid; border-top-color: #E2E8F0; }
.step img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; margin-bottom: 12px; }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: #475569; }

.steps .step:nth-child(1) { border-top-color: #8F66F8; }
.steps .step:nth-child(2) { border-top-color: #FB9DCE; }
.steps .step:nth-child(3) { border-top-color: #8BC5FF; }

/* CTA */
.cta {
	background: radial-gradient(circle at 20% 20%, rgba(143,102,248,0.2), transparent 35%),
				radial-gradient(circle at 80% 10%, rgba(251,157,206,0.25), transparent 36%),
				#120c1d;
	color: #fff;
}

.cta .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; align-items: center; }
.cta h2 { color: #fff; margin-bottom: 10px; font-size: 30px; }
.cta p { color: #E8E8F5; }

.cta-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-form .full { grid-column: 1 / -1; }
.cta-form input,
.cta-form textarea {
	width: 100%;
	padding: 12px 14px;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.35);
	background: rgba(255,255,255,0.12);
	color: #fff;
	font-family: inherit;
	font-size: 14px;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder { color: #D9D9E8; }
.cta-form textarea { min-height: 120px; resize: vertical; }
.cta-form button { width: 100%; }

/* Newsletter */
.newsletter { background: #F8F7FB; }
.newsletter-card {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	background: linear-gradient(135deg, #8F66F8, #FB9DCE);
	padding: 28px;
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(0,0,0,0.12);
	color: #fff;
}

.newsletter-text h3 { margin: 0 0 8px; font-size: 24px; color: #fff; }
.newsletter-text p { margin: 0; color: #F6F2FF; }

.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.newsletter-form input {
	flex: 1 1 240px;
	padding: 6px 8px;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.35);
	background: #fff;
	color: #252B37;
	font-family: inherit;
	font-size: 12px;
	line-height: 1.1;
	box-sizing: border-box;
	height: 26px !important;
}
.newsletter-form button { padding: 12px 18px; }

.newsletter-form input::placeholder {
	color: #94A3B8;
}

.hp-field {
	position: absolute;
	left: -9999px;
	opacity: 0;
}

.form-status {
	margin-top: 8px;
	font-size: 14px;
	min-height: 18px;
	color: #4b5563;
}

.form-status.success {
	color: #0f5132;
}

.form-status.error {
	color: #b91c1c;
}

.legal-hero {
	background: linear-gradient(135deg, #6f42d9 0%, #8F66F8 45%, #FB9DCE 100%);
	color: #fff;
	padding: 120px 0 80px;
	text-align: center;
}

.legal-hero h1 {
	margin-bottom: 12px;
	font-size: 34px;
	color: #fff;
	text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

.legal-hero p {
	color: #f1f5f9;
}

.legal-section {
	padding: 64px 0;
}

.legal-card {
	background: #fff;
	border: 1px solid #E2E8F0;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 10px 28px rgba(0,0,0,0.08);
	color: #252B37;
	max-width: 1000px;
	margin: 0 auto;
}

.legal-card h2 {
	margin: 20px 0 8px;
	font-size: 22px;
}

.legal-card h3 {
	margin: 14px 0 6px;
	font-size: 18px;
}

.legal-card p { margin: 10px 0; }

.legal-card ul {
	margin: 8px 0 16px 18px;
	padding: 0 0 0 8px;
	color: #475569;
}

.legal-meta {
	font-size: 14px;
	color: #dbeafe;
	margin-bottom: 10px;
}

.captcha-wrapper {
	grid-column: 1 / -1;
	margin: 4px 0;
}

/* Floating WhatsApp */
.whatsapp-fab {
	position: fixed;
	bottom: clamp(12px, 4vw, 20px);
	right: clamp(12px, 4vw, 20px);
	z-index: 1400;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}

.whatsapp-fab img {
	width: clamp(64px, 12vw, 92px);
	height: auto;
	display: block;
	filter: drop-shadow(0 8px 18px rgba(0,0,0,0.18));
}

.whatsapp-badge {
	background: linear-gradient(135deg, #8F66F8, #FB9DCE);
	color: #fff;
	padding: 10px 12px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 13px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

@media (max-width: 640px) {
	.whatsapp-fab {
		right: 10px;
		bottom: 10px;
		gap: 6px;
	}
	.whatsapp-badge {
		font-size: 12px;
		padding: 8px 10px;
	}
	.whatsapp-fab img {
		width: clamp(54px, 16vw, 76px);
	}
}

/* Cookie banner */
.cookie-banner {
	position: fixed;
	bottom: 12px;
	left: 12px;
	right: 12px;
	max-width: 640px;
	margin: 0 auto;
	z-index: 1500;
	display: none;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	background: #0f172a;
	color: #e2e8f0;
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba(0,0,0,0.2);
	flex-wrap: wrap;
}

.cookie-text { flex: 1; font-size: 14px; line-height: 1.4; }

.cookie-btn {
	padding: 10px 14px;
	font-size: 14px;
	white-space: nowrap;
}

@media (max-width: 480px) {
	.cookie-banner {
		bottom: 10px;
		left: 8px;
		right: 8px;
	}
	.cookie-text { font-size: 13px; }
	.cookie-btn { width: 100%; text-align: center; }
}

/* Footer */
footer {
	background: #fff;
	border-top: 1px solid #E2E8F0;
	padding: 14px 0;
	color: #475569;
	font-size: 12px;
}

.footer-content { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; text-align: left; }
.footer-logo { height: 28px; opacity: 0.5; }
.footer-links { display: flex; gap: 11px; }
.footer-links a { color: #8F66F8; text-decoration: none; font-weight: 600; }
.footer-links a:hover { color: #252B37; }

/* Responsive */
@media (max-width: 900px) {
	.top-bar-content { flex-wrap: wrap; justify-content: center; }
	.top-bar-logo { height: 38px; }
	.hamburger-menu { display: flex; }
	.top-bar-nav { position: absolute; top: 100%; left: 0; right: 0; display: block; }
	.menu {
		display: none;
		flex-direction: column;
		gap: 12px;
		background: #fff;
		padding: 12px 16px;
		margin: 0;
		border-radius: 12px;
		box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	}
	.menu.show { display: flex; }
	.cta-form { grid-template-columns: 1fr; }
	.cta-form .full { grid-column: 1 / -1; }
	.cta-form button { width: 100%; }
}

@media (max-width: 600px) {
	.top-bar-content { gap: 10px; padding: 10px 0; justify-content: space-between; }
	.top-bar-logo { height: 34px; }
	.hamburger-menu { width: 30px; height: 26px; gap: 6px; }
	.top-bar-right { gap: 4px; }
	.btn-login { padding: 6px 12px; font-size: 12px; margin-left: 2px; margin-right: 6px; }
	.hero { padding: 80px 0 70px; }
	.hero h1 { font-size: 30px; }
	.hero p { font-size: 16px; }
	section { padding: 64px 0; }
	.newsletter-card { padding: 20px; }
	.newsletter-form { flex-direction: column; align-items: stretch; gap: 10px; }
	.newsletter-form input, .newsletter-form button { width: 100%; }
}

