/* WP Transmissão Restrita — gate de e-mail e player. */

.wtr {
	max-width: 900px;
	margin: 0 auto;
	font-size: 16px;
}

/* ---- Formulário de e-mail ---- */

.wtr__form {
	padding: 28px;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	background: #fff;
}

.wtr__label {
	display: block;
	margin-bottom: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.wtr__erro {
	margin: 0 0 14px;
	padding: 10px 14px;
	border-left: 4px solid #dc2626;
	border-radius: 4px;
	background: #fef2f2;
	color: #991b1b;
	line-height: 1.4;
}

.wtr__campo {
	margin-bottom: 14px;
}

.wtr__campo label {
	display: block;
	margin-bottom: 5px;
	font-size: 0.875em;
	font-weight: 600;
	color: #374151;
}

.wtr__campo input {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 1em;
	font-family: inherit;
}

.wtr__campo input:focus {
	outline: 2px solid #1d4ed8;
	outline-offset: 1px;
	border-color: #1d4ed8;
}

/* Fora da tela, mas não display:none — robô ignora campo escondido assim. */
.wtr__armadilha {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.wtr__form button {
	width: 100%;
	padding: 13px 26px;
	border: 0;
	border-radius: 8px;
	background: #1d4ed8;
	color: #fff;
	font-size: 1em;
	font-family: inherit;
	font-weight: 600;
	cursor: pointer;
}

.wtr__form button:hover {
	background: #1e40af;
}

@media ( min-width: 480px ) {
	.wtr__form button {
		width: auto;
		min-width: 180px;
	}
}

/* ---- Player ---- */

.wtr__ola {
	margin: 0 0 4px;
	color: #6b7280;
	font-size: 0.9em;
}

.wtr__titulo {
	margin: 0 0 14px;
	font-size: 1.5em;
	line-height: 1.25;
}

.wtr__video {
	position: relative;
	/* padding-bottom mantém a proporção onde aspect-ratio ainda não existe. */
	padding-bottom: 56.25%;
	border-radius: 12px;
	background: #000;
	overflow: hidden;
}

.wtr__video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@supports ( aspect-ratio: 16 / 9 ) {
	.wtr__video {
		padding-bottom: 0;
		aspect-ratio: 16 / 9;
	}
}

/* ---- Aviso ---- */

.wtr--aviso p {
	margin: 0;
	padding: 20px;
	border: 1px dashed #d1d5db;
	border-radius: 12px;
	background: #f9fafb;
	color: #4b5563;
	text-align: center;
}
