:root {
	--pn-1: #2d0c45;
	/* fundo roxo escuro (logo) */
	--pn-2: #6f2dbd;
	/* roxo principal */
	--accent: #ffd200;
	/* amarelo do + */
	--text: #ffffff;
	--glass: rgba(255, 255, 255, .10);
	--glass-stroke: rgba(255, 255, 255, .18);
}

* {
	box-sizing: border-box
}

html,
body {
	height: 100%
}

body {
	margin: 0;
	color: var(--text);
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
	background:
		radial-gradient(1200px 800px at 20% 10%, rgba(255, 255, 255, .06), transparent 60%),
		radial-gradient(1000px 700px at 80% 90%, rgba(255, 255, 255, .05), transparent 60%),
		radial-gradient(800px 600px at 50% -10%, rgba(255, 210, 0, .08), transparent 60%),
		linear-gradient(135deg, var(--pn-1), var(--pn-2));
	overflow-x: hidden;
}

/* Fundo com imagem levemente desfocada (opcional) */
.background {
	position: fixed;
	inset: 0;
	z-index: -1;
	/* background:url('img/bgplus2.webp') center/cover no-repeat;*/
	filter: blur(6px) brightness(1.35) saturate(1.05);
	transform: scale(1.02);
}

.wrap {
	min-height: 100%;
	display: grid;
	place-items: center;
	padding: 48px 20px
}

.hero {
	width: min(1100px, 92vw);
	display: grid;
	gap: 28px;
	text-align: center
}

.brand-card {
	width: 260px;
	height: 260px;
	margin-inline: auto;
	border-radius: 50%;
	background: rgb(255 255 255 / 81%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px #00000040, inset 0 1px 0 #ffffff40;
}

.logo {
	width: 80%;
	height: auto;
	display: block;
}

h1 {
	font-size: clamp(28px, 3.6vw, 44px);
	line-height: 1.15;
	margin: 0
}

p.lead {
	font-size: clamp(15px, 2.1vw, 18px);
	opacity: .92;
	margin: 0
}

.cta {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 6px
}

.btn {
	appearance: none;
	border: 0;
	cursor: pointer;
	padding: 14px 18px;
	border-radius: 14px;
	font-weight: 600;
	letter-spacing: .2px;
	color: #0b0216;
	background: #ffffff;
	transition: transform .12s ease, box-shadow .25s ease;
	box-shadow: 0 10px 22px #00000033;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px
}

.btn.secondary {
	background: #ffffff14;
	color: #fff;
	border: 1px solid #ffffff30
}

.btn:hover {
	transform: translateY(-1.5px);
	box-shadow: 0 0 0 8px #ffffff14, 0 16px 26px #0000004a
}

.social {
	display: flex;
	justify-content: center;
	gap: 18px;
	margin-top: 6px;
	opacity: .9
}

.social a {
	color: #fff;
	text-decoration: none;
	font-weight: 600
}

.social a:hover {
	text-decoration: underline
}

.cov-card {
	width: min(560px, 95vw);
	z-index: 1000;
	margin: 6px auto 0;
	padding: 18px;
	border-radius: 18px;
	background: var(--glass);
	border: 1px solid var(--glass-stroke);
	backdrop-filter: blur(14px) saturate(120%);
	display: grid;
	gap: 12px;
	text-align: left;
}

.cov-title {
	font-weight: 800;
	letter-spacing: .2px;
	text-align: center
}

.autocomplete {
	position: relative;
	width: 100%;
}

.cov-input {
	width: 100%;
	padding: 14px 14px;
	border-radius: 12px;
	border: 1px solid #ffffff2a;
	background: #ffffff12;
	color: #fff;
	font-size: 16px;
	outline: none;
}

.cov-input::placeholder {
	color: #ffffffcc
}

.cov-input:focus {
	box-shadow: 0 0 0 3px #ffffff33, 0 0 0 6px rgba(255, 210, 0, .25)
}

.autocomplete-items {
	position: absolute;
	z-index: 10;
	top: 102%;
	left: 0;
	right: 0;
	background: #0f0a1aee;
	border: 1px solid #ffffff2a;
	border-radius: 12px;
	box-shadow: 0 10px 26px #00000055;
	max-height: 220px;
	overflow: auto;
	backdrop-filter: blur(8px);
}

.autocomplete-items div {
	padding: 12px 14px;
	cursor: pointer;
	border-bottom: 1px solid #ffffff12;
	color: #fff;
}

.autocomplete-items div:last-child {
	border-bottom: 0
}

.autocomplete-items div:hover {
	background: #ffffff14
}

.whatsapp-btn {
	display: none;
	width: 100%;
	padding: 14px 18px;
	border-radius: 12px;
	border: 0;
	cursor: pointer;
	background: #ffffff;
	/* botão branco */
	color: #111;
	/* texto escuro */
	font-weight: 800;
	font-size: 16px;
	box-shadow: 0 12px 20px rgba(0, 0, 0, .35);
}

.whatsapp-btn:hover {
	filter: brightness(0.95);
}

/* Remove a bordinha preta abaixo do campo de pesquisa */
.autocomplete-items {
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE e Edge antigo */
}

.autocomplete-items::-webkit-scrollbar {
	display: none;
	/* Chrome, Safari */
}

.autocomplete-items {
	background: rgb(40 37 42);
	border: none;
}


.cov-hint {
	text-align: center;
	opacity: .8;
	font-size: 14px
}

/* FAB WhatsApp com anéis pulsantes discretos */
.wpp {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 40;
}

.wpp .fab {
	position: relative;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #25d366;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 10px 24px #00000055;
	isolation: isolate;
}

.wpp .fab::before,
.wpp .fab::after {
	content: "";
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 2px solid #25d366;
	opacity: .65;
	z-index: -1;
	animation: ripple 2.2s ease-out infinite;
}

.wpp .fab::after {
	inset: -14px;
	opacity: .35;
	animation-duration: 3s;
	animation-delay: .4s
}

@keyframes ripple {
	0% {
		transform: scale(.9);
		opacity: .85
	}

	70% {
		transform: scale(1.2);
		opacity: .25
	}

	100% {
		transform: scale(1.35);
		opacity: 0
	}
}

footer {
	text-align: center;
	opacity: .8;
	font-size: 13px;
	padding: 26px 0;
}

@media (max-width:420px) {
	.logo {
		width: 50vw
	}
}

/* Correções de alinhamento mobile */
@media (max-width:600px) {

	body,
	html {
		overflow-x: hidden;
	}

	.wrap {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 32px 12px;
		/* reduz padding lateral */
	}

	.hero {
		width: 100%;
		margin: 0 auto;
		text-align: center;
	}

	.cov-card {
		width: 100%;
		margin: 0 auto;
		padding: 16px;
	}

	.cov-input {
		font-size: 15px;
	}

	.brand-card {
		width: 200px;
		height: 200px;
	}

	.logo {
		width: 75%;
	}
}