:root {
	--bg: #07111f;
	--bg-soft: #0d1b2f;
	--surface: rgba(255, 255, 255, 0.07);
	--surface-strong: rgba(255, 255, 255, 0.12);
	--text: #f8fafc;
	--muted: #a7b4c8;
	--primary: #38bdf8;
	--primary-strong: #2563eb;
	--accent: #22c55e;
	--warm: #f59e0b;
	--border: rgba(255, 255, 255, 0.11);
	--shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
	--radius: 8px;
}

body.light-mode {
	--bg: #eef5ff;
	--bg-soft: #ffffff;
	--surface: rgba(255, 255, 255, 0.78);
	--surface-strong: rgba(255, 255, 255, 0.96);
	--text: #0f172a;
	--muted: #526176;
	--border: rgba(15, 23, 42, 0.1);
	--shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	min-height: 100vh;
	overflow-x: hidden;
	background:
		linear-gradient(135deg, rgba(56, 189, 248, 0.14), transparent 32%),
		linear-gradient(315deg, rgba(34, 197, 94, 0.1), transparent 28%), var(--bg);
	color: var(--text);
	font-family: 'Inter', system-ui, sans-serif;
	transition:
		background 0.25s ease,
		color 0.25s ease;
}

body.menu-open {
	overflow: hidden;
}

button,
a {
	font: inherit;
}

::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: linear-gradient(180deg, var(--primary), var(--primary-strong));
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	border-bottom: 1px solid var(--border);
	background: rgba(7, 17, 31, 0.78);
	backdrop-filter: blur(20px);
	transition:
		background 0.25s ease,
		box-shadow 0.25s ease;
}

body.light-mode .navbar {
	background: rgba(255, 255, 255, 0.78);
}

.navbar.scrolled {
	background: rgba(7, 17, 31, 0.94);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

body.light-mode .navbar.scrolled {
	background: rgba(255, 255, 255, 0.95);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: min(1220px, calc(100% - 32px));
	margin: 0 auto;
	padding: 12px 0;
}

.nav-brand,
.nav-user,
.btn,
.btn-nav-google,
.btn-logout,
.nav-links a {
	text-decoration: none;
}

.nav-logo {
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 14px 34px rgba(56, 189, 248, 0.26);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
}

.nav-links a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 42px;
	padding: 0 14px;
	border-radius: var(--radius);
	color: var(--muted);
	font-size: 0.93rem;
	font-weight: 700;
	transition:
		background 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.nav-links a:hover {
	background: var(--surface);
	color: var(--text);
	transform: translateY(-1px);
}

.mobile-account {
	display: none;
}

.mobile-account-user img {
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	border-radius: 50%;
	object-fit: cover;
}

.mobile-account-user span {
	display: grid;
	min-width: 0;
	gap: 2px;
}

.mobile-account-user strong,
.mobile-account-user small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mobile-account-user small {
	color: var(--muted);
	font-size: 0.75rem;
	font-weight: 600;
}

.mobile-logout {
	border: 1px solid rgba(248, 113, 113, 0.28);
	background: rgba(248, 113, 113, 0.1);
	color: #fecaca !important;
}

body.light-mode .mobile-logout {
	color: #b91c1c !important;
}

.nav-right,
.nav-actions,
.nav-user,
.nav-mobile-session {
	display: flex;
	align-items: center;
}

.nav-right {
	gap: 10px;
}

.nav-actions {
	gap: 10px;
}

.nav-mobile-session {
	display: none;
	gap: 8px;
}

.theme-toggle,
.menu-toggle,
.carousel-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border);
	background: var(--surface);
	color: var(--text);
	cursor: pointer;
	transition:
		transform 0.2s ease,
		background 0.2s ease,
		border-color 0.2s ease;
}

.theme-toggle,
.menu-toggle {
	width: 44px;
	height: 44px;
	border-radius: var(--radius);
}

.theme-toggle:hover,
.menu-toggle:hover,
.carousel-btn:hover {
	background: var(--surface-strong);
	transform: translateY(-2px);
}

.menu-toggle {
	display: none;
	position: relative;
	z-index: 1002;
}

.nav-user {
	max-width: 280px;
	gap: 10px;
	padding: 6px 10px 6px 6px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--surface);
	color: var(--text);
}

.nav-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
}

.mobile-session-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--surface);
	color: var(--text);
	text-decoration: none;
}

.mobile-session-btn img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mobile-session-btn--login {
	background: linear-gradient(135deg, var(--primary), var(--primary-strong));
	color: #ffffff;
}

.mobile-session-btn--logout {
	border-color: rgba(248, 113, 113, 0.28);
	background: rgba(248, 113, 113, 0.1);
	color: #fecaca;
}

.nav-user-info {
	display: grid;
	min-width: 0;
}

.nav-user-name,
.nav-user-email {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nav-user-name {
	font-size: 0.86rem;
	font-weight: 800;
}

.nav-user-email {
	max-width: 180px;
	color: var(--muted);
	font-size: 0.72rem;
}

.btn,
.btn-nav-google,
.btn-logout {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 46px;
	border: 0;
	padding: 5px;
	border-radius: var(--radius);
	cursor: pointer;
	font-weight: 800;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease;
}

.btn {
	padding: 0 20px;
}

.btn-primary,
.btn-nav-google {
	background: linear-gradient(135deg, var(--primary), var(--primary-strong));
	color: #ffffff;
	box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28);
}

.btn-secondary {
	border: 1px solid var(--border);
	background: var(--surface);
	color: var(--text);
}

.btn-logout {
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid rgba(248, 113, 113, 0.28);
	background: rgba(248, 113, 113, 0.1);
	color: #fecaca;
}

body.light-mode .btn-logout {
	color: #b91c1c;
}

.btn:hover,
.btn-nav-google:hover,
.btn-logout:hover {
	transform: translateY(-2px);
}

.btn:disabled {
	cursor: wait;
	opacity: 0.72;
	transform: none;
}

.mobile-overlay {
	position: fixed;
	inset: 0;
	z-index: 998;
	background: rgba(2, 6, 23, 0.64);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.mobile-overlay.show {
	opacity: 1;
	pointer-events: auto;
}

.hero {
	min-height: 100vh;
	padding: 140px 22px 72px;
	display: flex;
	align-items: center;
}

.hero-content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
	align-items: center;
	gap: 44px;
	width: min(1220px, 100%);
	margin: 0 auto;
}

.hero-copy {
	max-width: 720px;
}

.hero-badge,
.section-badge {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	margin-bottom: 18px;
	padding: 0 12px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--surface);
	color: var(--primary);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero h1,
.section h2 {
	letter-spacing: 0;
	font-weight: 900;
	line-height: 1.04;
}

.hero h1 {
	max-width: 760px;
	margin-bottom: 22px;
	font-size: clamp(2.7rem, 5.8vw, 5.65rem);
}

.gradient-text {
	display: inline-block;
	min-width: 7.8ch;
	background: linear-gradient(90deg, var(--primary), #dbeafe, var(--accent));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.typing {
	border-right: 3px solid currentColor;
	padding-right: 6px;
}

.hero-sub,
.hero-sub-small,
.section-lead,
.pricing-subtitle {
	color: var(--muted);
	line-height: 1.75;
}

.hero-sub {
	max-width: 680px;
	font-size: 1.12rem;
}

.hero-sub-small {
	max-width: 630px;
	margin-top: 12px;
	font-size: 0.98rem;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.alert {
	margin-top: 18px;
	padding: 14px 16px;
	border: 1px solid rgba(245, 158, 11, 0.28);
	border-radius: var(--radius);
	background: rgba(245, 158, 11, 0.12);
	color: #fde68a;
}

body.light-mode .alert {
	color: #92400e;
}

.hero-visual {
	position: relative;
}

.dashboard-shell {
	padding: 18px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.11),
			rgba(255, 255, 255, 0.045)
		),
		var(--surface);
	box-shadow: var(--shadow);
	backdrop-filter: blur(18px);
}

.dashboard-topbar {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 12px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.06);
	font-weight: 900;
}

.dashboard-topbar img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	object-fit: cover;
}

.dashboard-topbar i {
	margin-left: auto;
	color: var(--accent);
}

.dashboard-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 14px 0;
}

.metric-card,
.dashboard-list {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.06);
}

.metric-card {
	display: grid;
	gap: 8px;
	min-height: 118px;
	padding: 18px;
}

.metric-card.wide {
	grid-column: 1 / -1;
	min-height: 96px;
}

.metric-card span,
.plan-description,
.per {
	color: var(--muted);
}

.metric-card strong {
	font-size: 1.25rem;
}

.dashboard-list {
	display: grid;
	gap: 12px;
	padding: 16px;
	color: var(--muted);
	font-size: 0.93rem;
}

.dashboard-list i,
.product-points i,
.plan-features i {
	color: var(--accent);
}

.logo-strip {
	padding: 0 22px 34px;
}

.logo-strip-inner {
	display: flex;
	gap: 12px;
	width: min(1220px, 100%);
	margin: 0 auto;
	overflow-x: auto;
	padding-bottom: 8px;
	scrollbar-width: thin;
}

.logo-strip span {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 10px;
	min-height: 46px;
	padding: 0 16px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--surface);
	color: var(--muted);
	font-weight: 800;
}

.section {
	padding: 92px 22px;
}

.section-content {
	width: min(1180px, 100%);
	margin: 0 auto;
}

.section h2 {
	max-width: 780px;
	margin: 0 auto 34px;
	text-align: center;
	font-size: clamp(2rem, 4vw, 3.55rem);
}

.section .section-badge {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.cards,
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.features-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.feature-box,
.plan {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--surface);
	box-shadow: var(--shadow);
	backdrop-filter: blur(18px);
	transition:
		transform 0.22s ease,
		border-color 0.22s ease,
		background 0.22s ease;
}

.card {
	min-height: 242px;
	padding: 26px;
}

.card:hover,
.feature-box:hover,
.plan:hover {
	transform: translateY(-5px);
	border-color: rgba(56, 189, 248, 0.35);
	background: var(--surface-strong);
}

.card i,
.feature-box i {
	margin-bottom: 18px;
	color: var(--primary);
	font-size: 1.8rem;
}

.card h3 {
	margin-bottom: 10px;
	font-size: 1.24rem;
}

.card p,
.feature-box span {
	color: var(--muted);
	line-height: 1.65;
}

.product-section {
	background: rgba(255, 255, 255, 0.025);
}

.product-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1fr);
	align-items: center;
	gap: 34px;
}

.product-layout .section-badge,
.product-layout h2 {
	left: 0;
	margin-left: 0;
	text-align: left;
	transform: none;
}

.section-lead {
	max-width: 610px;
	font-size: 1.02rem;
}

.product-points {
	display: grid;
	gap: 12px;
	margin-top: 24px;
}

.product-points span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--muted);
	font-weight: 800;
}

.feature-box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 158px;
	padding: 22px;
}

.feature-box span {
	font-weight: 800;
	color: var(--text);
}

.pricing-section {
	overflow: hidden;
}

.pricing-subtitle {
	max-width: 720px;
	margin: -18px auto 28px;
	text-align: center;
}

.pricing-wrap {
	position: relative;
}

.pricing {
	display: grid;
	grid-auto-columns: minmax(286px, 320px);
	grid-auto-flow: column;
	gap: 18px;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	padding: 8px 8px 24px;
	scroll-padding-inline: 8px;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
}

.plan {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 620px;
	padding: 24px;
	scroll-snap-align: start;
}

.plan.featured {
	border-color: rgba(56, 189, 248, 0.42);
	background:
		linear-gradient(
			180deg,
			rgba(56, 189, 248, 0.15),
			rgba(255, 255, 255, 0.06)
		),
		var(--surface);
}

.popular-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	min-height: 30px;
	padding: 0 10px;
	display: inline-flex;
	align-items: center;
	border-radius: var(--radius);
	background: rgba(34, 197, 94, 0.14);
	color: #86efac;
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
}

body.light-mode .popular-badge {
	color: #15803d;
}

.plan-tag {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 10px;
	margin-bottom: 16px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.06);
	color: var(--primary);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.plan-tag.premium {
	color: #86efac;
}

body.light-mode .plan-tag.premium {
	color: #15803d;
}

.plan h3 {
	margin-bottom: 10px;
	font-size: 1.35rem;
}

.plan-description {
	min-height: 72px;
	line-height: 1.55;
}

.price {
	margin: 18px 0;
	font-size: 2.3rem;
	font-weight: 900;
}

.per {
	display: block;
	margin-top: 3px;
	font-size: 0.86rem;
	font-weight: 700;
}

.plan-features {
	display: grid;
	gap: 11px;
	margin: 0 0 24px;
	list-style: none;
}

.plan-features li {
	display: flex;
	gap: 10px;
	color: var(--muted);
	line-height: 1.45;
}

.plan .btn {
	width: 100%;
	margin-top: auto;
}

.carousel-btn {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	transform: translateY(-50%);
}

.carousel-btn:hover {
	transform: translateY(-50%) scale(1.04);
}

.carousel-btn.prev {
	left: -18px;
}

.carousel-btn.next {
	right: -18px;
}

.footer {
	padding: 58px 22px;
	border-top: 1px solid var(--border);
	text-align: center;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
	margin-bottom: 16px;
}

.footer a {
	color: var(--primary);
	font-weight: 800;
	text-decoration: none;
}

.footer p {
	color: var(--muted);
}

.scroll-top,
.whatsapp-float {
	position: fixed;
	z-index: 997;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	color: #ffffff;
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.whatsapp-float {
	right: 20px;
	bottom: 20px;
	background: #25d366;
	text-decoration: none;
}

.scroll-top {
	left: 20px;
	bottom: 20px;
	border: 0;
	background: linear-gradient(135deg, var(--primary), var(--primary-strong));
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translateY(18px);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
}

.scroll-top.show {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

@media (min-width: 1120px) {
	.pricing {
		justify-content: center;
	}
}

@media (max-width: 1040px) {
	.hero-content,
	.product-layout {
		grid-template-columns: 1fr;
	}

	.hero-copy,
	.hero-sub,
	.hero-sub-small {
		max-width: none;
	}

	.hero-visual {
		width: min(640px, 100%);
	}

	.cards,
	.features-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 940px) {
	.menu-toggle {
		display: inline-flex;
	}

	.nav-actions {
		display: none;
	}

	.nav-mobile-session {
		display: flex;
	}

	.mobile-account {
		display: grid;
		width: 100%;
		gap: 8px;
		margin-top: 10px;
		padding-top: 12px;
		border-top: 1px solid var(--border);
	}

	.nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		z-index: 1001;
		width: min(330px, 88vw);
		height: 100vh;
		align-items: stretch;
		flex-direction: column;
		gap: 8px;
		padding: 96px 18px 22px;
		border-left: 1px solid var(--border);
		background: var(--bg-soft);
		box-shadow: -28px 0 70px rgba(0, 0, 0, 0.24);
		transition: right 0.28s ease;
	}

	.nav-links.active {
		right: 0;
	}

	.nav-links a {
		width: 100%;
		justify-content: flex-start;
	}
}

@media (max-width: 720px) {
	.hero {
		min-height: auto;
		padding: 124px 18px 60px;
	}

	.hero h1 {
		font-size: 2.55rem;
	}

	.hero-buttons,
	.hero-buttons .btn {
		width: 100%;
	}

	.cards,
	.features-grid {
		grid-template-columns: 1fr;
	}

	.card {
		min-height: auto;
	}

	.section {
		padding: 74px 18px;
	}

	.product-layout h2,
	.section h2 {
		font-size: 2.15rem;
	}

	.carousel-btn {
		display: none;
	}

	.pricing {
		grid-auto-columns: minmax(82vw, 1fr);
		padding-inline: 0;
	}

	.plan {
		min-height: 590px;
	}

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

	.metric-card.wide {
		grid-column: auto;
	}
}

@media (max-width: 460px) {
	.nav-inner {
		width: min(100% - 24px, 1220px);
	}

	.nav-logo {
		width: 46px;
		height: 46px;
	}

	.hero h1 {
		font-size: 2.16rem;
	}

	.gradient-text {
		min-width: 0;
	}

	.hero-sub {
		font-size: 1rem;
	}

	.dashboard-shell {
		padding: 12px;
	}

	.pricing {
		grid-auto-columns: minmax(86vw, 1fr);
	}

	.plan {
		padding: 22px;
	}

	.price {
		font-size: 2.05rem;
	}

	.scroll-top,
	.whatsapp-float {
		width: 48px;
		height: 48px;
	}
}

.auth-modal {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.58);
	z-index: 2000;
	padding: 24px;
}

.auth-modal.show {
	display: flex;
}

.auth-modal-panel {
	width: min(520px, 100%);
	background: #ffffff;
	border-radius: 24px;
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
	padding: 32px;
	text-align: center;
	position: relative;
}

.auth-modal-close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 50%;
	background: var(--bg-soft);
	color: var(--text);
	font-size: 1.35rem;
	cursor: pointer;
}

.auth-modal-panel h2 {
	margin: 0 0 12px;
	font-size: 1.9rem;
}

.auth-modal-message {
	margin: 0 0 24px;
	color: var(--muted);
	line-height: 1.7;
}

.auth-modal-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.auth-modal-actions .btn {
	min-width: 160px;
}

body.modal-open {
	overflow: hidden;
}

@media (max-width: 720px) {
	.auth-modal-panel {
		padding: 22px;
	}
}

/* Scroll horizontal personalizado */
#plansCarousel::-webkit-scrollbar {
	height: 10px;
}

#plansCarousel::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.06);
	border-radius: 999px;
}

#plansCarousel::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, var(--primary), var(--primary-strong));
	border-radius: 999px;
}

#plansCarousel::-webkit-scrollbar-thumb:hover {
	filter: brightness(1.1);
}

/* Firefox */
#plansCarousel {
	scrollbar-color: var(--primary) rgba(255, 255, 255, 0.06);
	scrollbar-width: thin;
}

.footer-dev {
	margin-top: 10px;
	font-size: 0.92rem;
	color: var(--text-muted);
}

.footer-dev a {
	color: inherit;
	text-decoration: none;
	font-weight: 600;
	transition: opacity 0.2s ease;
}

.footer-dev a:hover {
	opacity: 0.7;
}

.video-frame {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: #020617;
	box-shadow: var(--shadow);

	display: flex;
	align-items: center;
	justify-content: center;
}

.video-frame iframe,
.video-frame img {
	width: 100%;
	height: 100%;
	border: 0;

	object-fit: cover;

	display: block;
}
.video-player-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-top: 18px;
}

.video-carousel-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 12px;
}

.video-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 12px auto 0;
}

.video-nav {
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	border: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	font-size: 24px;
	display: inline-grid;
	place-items: center;
	cursor: pointer;
	transition:
		transform 0.2s ease,
		background 0.2s ease;
}

.video-nav:hover {
	transform: scale(1.05);
	background: rgba(0, 0, 0, 0.9);
}

.video-counter {
	color: var(--muted);
	font-weight: 700;
}

.video-dots {
	display: flex;
	align-items: center;
	gap: 6px;
}

.video-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition:
		background 0.2s ease,
		transform 0.2s ease;
}

.video-dot:hover,
.video-dot.active {
	background: rgba(255, 255, 255, 0.95);
	transform: scale(1.1);
}

.image-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.92);

	display: flex;
	align-items: center;
	justify-content: center;

	opacity: 0;
	visibility: hidden;

	transition: 0.25s ease;

	z-index: 9999;
	padding: 20px;
}

.image-modal.show {
	opacity: 1;
	visibility: visible;
}

.image-modal img {
	max-width: 95%;
	max-height: 95%;
	object-fit: contain;

	border-radius: 18px;

	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
	position: absolute;
	top: 20px;
	left: 20px;

	width: 50px;
	height: 50px;

	border: none;
	border-radius: 50%;

	background: rgba(255, 255, 255, 0.12);
	color: white;

	font-size: 24px;
	cursor: pointer;

	backdrop-filter: blur(10px);
}

.image-modal iframe {
	width: min(1200px, 95vw);
	aspect-ratio: 16 / 9;
	height: auto;

	border: 0;
	border-radius: 20px;

	background: #000;
}

.btn-nav-google {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;

	padding: 12px 22px;

	background: #ffffff;
	color: #1f1f1f;

	border: 1px solid #dadce0;
	border-radius: 999px;

	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;

	cursor: pointer;

	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;

	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.08),
		0 1px 3px rgba(0, 0, 0, 0.12);

	min-height: 46px;
}

.btn-nav-google i {
	font-size: 18px;
	color: #4285f4;
}

.btn-nav-google:hover {
	background: #f8f9fa;
	border-color: #c6c6c6;

	transform: translateY(-1px);

	box-shadow:
		0 4px 10px rgba(0, 0, 0, 0.1),
		0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-nav-google:active {
	transform: scale(0.98);
}

.btn-nav-google:focus-visible {
	outline: 3px solid rgba(66, 133, 244, 0.25);
	outline-offset: 2px;
}
