.molina-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	padding: 16px;
}

.molina-box {
	position: relative;
	background: #fff;
	color: #1a1a1a;
	width: 100%;
	max-width: 380px;
	border-radius: 14px;
	padding: 26px 22px 22px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
	font-family: inherit;
	animation: molina-in .16s ease-out;
}

@keyframes molina-in {
	from { transform: translateY(8px); opacity: 0; }
	to   { transform: translateY(0);   opacity: 1; }
}

.molina-close {
	position: absolute;
	top: 8px;
	right: 10px;
	width: 30px;
	height: 30px;
	padding: 0 !important;
	margin: 0 !important;
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	min-width: 0 !important;
	min-height: 0 !important;
	font-size: 28px;
	font-weight: 400;
	line-height: 1;
	color: #000 !important;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}
.molina-close:hover { color: #000 !important; opacity: .55; }

.molina-title {
	margin: 0 0 16px;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
}

/* Botoes de compartilhar */
.molina-share-row {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 10px;
}

.molina-sbtn {
	display: block;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	padding: 12px 14px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	color: #fff;
}
.molina-wa   { background: #25D366; }
.molina-tg   { background: #229ED9; }
.molina-fb   { background: #1877F2; }
.molina-copy { background: #444; }
.molina-submit {
	background: #14213d !important;
	color: #fff !important;
	border: none !important;
	box-shadow: none !important;
	border-radius: 10px;
	padding: 14px 16px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .2px;
	margin-top: 6px;
	transition: background .15s ease;
}
.molina-submit:hover { background: #0d1730 !important; opacity: 1; }
.molina-sbtn:hover { opacity: .9; }
.molina-submit:disabled { opacity: .6; cursor: default; }

/* Formulario indicar */
.molina-field {
	display: block;
	margin-bottom: 12px;
}
.molina-field span {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 4px;
	color: #333;
}
.molina-field input {
	width: 100%;
	box-sizing: border-box;
	padding: 11px 12px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 15px;
}
.molina-field input:focus {
	outline: none;
	border-color: #111;
}

.molina-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.molina-msg {
	min-height: 18px;
	font-size: 13px;
	margin: 4px 0 8px;
}
.molina-err { color: #c0392b; }

.molina-success {
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	color: #1e7e34;
	padding: 14px 0;
}
