/* Variables */
:root {
	--stvc-primary: #FDC513;
	--stvc-primary-hover: #F2BA05;
	--stvc-dark: #111111;
	--stvc-text: #555555;
	--stvc-muted: #6B7280;
	--stvc-border: #EAEAEA;
	--stvc-success: #16A34A;
	--stvc-danger: #DC2626;
	--stvc-danger-hover: #B91C1C;
	--stvc-white: #FFFFFF;
	--stvc-bg: #F7F7F7;
	--stvc-shadow: 0 20px 60px rgba(0, 0, 0, .08);
	--stvc-radius: 20px;
	--stvc-ease: 300ms ease;
}

/* Layout */
.stvc-portal,
.stvc-portal * {
	box-sizing: border-box;
}

.stvc-portal {
	position: relative;
	isolation: isolate;
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	padding: 42px 16px;
	color: var(--stvc-text);
	font-family: "Inter", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.5;
	overflow: hidden;
}

.stvc-portal::before,
.stvc-portal::after {
	content: "";
	position: absolute;
	z-index: -1;
	pointer-events: none;
}

.stvc-portal::before {
	top: 72px;
	left: 10px;
	width: 118px;
	height: 126px;
	background-image: radial-gradient(rgba(253, 197, 19, .34) 1.5px, transparent 1.7px);
	background-size: 16px 16px;
	mask-image: linear-gradient(90deg, #000 55%, transparent);
	-webkit-mask-image: linear-gradient(90deg, #000 55%, transparent);
}

.stvc-portal::after {
	top: 88px;
	right: -92px;
	width: 260px;
	height: 260px;
	border: 1px solid rgba(253, 197, 19, .28);
	border-radius: 50%;
	box-shadow:
		0 0 0 16px rgba(253, 197, 19, .08),
		0 0 0 32px rgba(253, 197, 19, .06);
}

/* Icons */
.stvc-icon {
	display: inline-block;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Card */
.stvc-card {
	position: relative;
	width: 100%;
	max-width: 620px;
	margin: 0 auto;
	padding: 40px;
	overflow: hidden;
	background: var(--stvc-white);
	border: 1px solid var(--stvc-border);
	border-radius: var(--stvc-radius);
	box-shadow: var(--stvc-shadow);
	text-align: center;
	animation: stvc-card-fade var(--stvc-ease) both;
}

.stvc-card-title {
	margin: 0;
	color: var(--stvc-dark);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.16;
	letter-spacing: 0;
}

.stvc-card-subtitle {
	max-width: 460px;
	margin: 8px auto 0;
	color: var(--stvc-text);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.55;
}

/* Search */
.stvc-search-card {
	padding-top: 34px;
}

.stvc-hero-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: -8px auto 14px;
	color: var(--stvc-white);
	background: var(--stvc-primary);
	border-radius: 16px;
	box-shadow: 0 14px 28px rgba(253, 197, 19, .34);
}

.stvc-hero-icon .stvc-icon {
	width: 27px;
	height: 27px;
	stroke-width: 2.25;
}

.stvc-search-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: 100%;
	max-width: 520px;
	margin: 24px auto 0;
}

.stvc-input-wrap {
	position: relative;
	width: 100%;
}

.stvc-input-wrap > .stvc-icon {
	position: absolute;
	top: 50%;
	left: 18px;
	width: 19px;
	height: 19px;
	color: #667085;
	transform: translateY(-50%);
	pointer-events: none;
}

.stvc-portal #codigomuestra.stvc-search-input,
.stvc-search-input {
	width: 100%;
	height: 56px;
	margin: 0;
	padding: 0 18px 0 50px;
	color: var(--stvc-dark);
	background: var(--stvc-white);
	border: 1px solid #D9DEE8;
	border-radius: 14px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
	font: 400 15px/1.3 "Inter", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	text-align: left;
	outline: none;
	transition: border-color var(--stvc-ease), box-shadow var(--stvc-ease), transform var(--stvc-ease);
}

.stvc-search-input::placeholder {
	color: #98A2B3;
}

.stvc-search-input:focus {
	border-color: var(--stvc-primary);
	box-shadow: 0 0 0 4px rgba(253, 197, 19, .20), 0 12px 28px rgba(0, 0, 0, .05);
	transform: translateY(-1px);
}

.stvc-search-input.stvc-search-input-error,
.stvc-search-input.stvc-search-input-error:focus {
	border-color: var(--stvc-danger);
	box-shadow: 0 0 0 4px rgba(220, 38, 38, .14), 0 12px 28px rgba(220, 38, 38, .08);
}

.stvc-field-error {
	align-self: stretch;
	margin: -8px 0 0;
	color: var(--stvc-danger);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.45;
	text-align: left;
	animation: stvc-field-error-fade var(--stvc-ease) both;
}

.stvc-security-note {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 17px 0 0;
	color: #5F6773;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.45;
}

.stvc-security-note .stvc-icon {
	width: 15px;
	height: 15px;
	color: #667085;
}

/* Buttons */
.stvc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 56px;
	padding: 0 28px;
	border: 0;
	border-radius: 14px;
	font: 600 15px/1 "Inter", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	transition: color var(--stvc-ease), background-color var(--stvc-ease), box-shadow var(--stvc-ease), transform var(--stvc-ease);
}

.stvc-button-primary {
	min-width: 280px;
	color: var(--stvc-dark);
	background: var(--stvc-primary);
	box-shadow: 0 14px 28px rgba(253, 197, 19, .30);
}

.stvc-button-primary:hover,
.stvc-button-primary:focus {
	color: var(--stvc-dark);
	background: var(--stvc-primary-hover);
	box-shadow: 0 18px 36px rgba(253, 197, 19, .40);
	transform: translateY(-2px);
}

.stvc-button-danger {
	width: min(100%, 430px);
	margin-top: 24px;
	color: var(--stvc-white);
	background: #EF4444;
	box-shadow: 0 14px 28px rgba(220, 38, 38, .24);
}

.stvc-button-danger:hover,
.stvc-button-danger:focus {
	color: var(--stvc-white);
	background: var(--stvc-danger-hover);
	box-shadow: 0 18px 36px rgba(220, 38, 38, .34);
	transform: translateY(-2px);
}

.stvc-button:focus-visible,
.stvc-reset-link:focus-visible,
.stvc-search-input:focus-visible {
	outline: 3px solid rgba(253, 197, 19, .42);
	outline-offset: 3px;
}

/* Success Card */
.stvc-result-card {
	max-width: 640px;
	padding: 34px 34px 32px;
	text-align: left;
}

.stvc-result-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 72px;
	background: linear-gradient(90deg, rgba(22, 163, 74, .12), rgba(22, 163, 74, 0));
	pointer-events: none;
}

.stvc-success-header {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
}

.stvc-result-card .stvc-card-title,
.stvc-result-card .stvc-card-subtitle {
	margin-left: 0;
	margin-right: 0;
	text-align: left;
}

.stvc-result-card .stvc-card-title {
	font-size: 25px;
}

.stvc-result-card .stvc-card-subtitle {
	max-width: none;
	margin-top: 5px;
	font-size: 13px;
}

.stvc-status-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: fit-content;
	margin: 0 0 14px;
	padding: 9px 16px;
	border-radius: 999px;
	background: var(--stvc-success);
	color: var(--stvc-white);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.5px;
	text-shadow: none;
	opacity: 1;
}

.stvc-status-badge .stvc-icon {
	width: 33px;
	height: 33px;
	padding: 6px;
	color: var(--stvc-white);
	background: var(--stvc-success);
	border-radius: 50%;
	box-shadow: 0 10px 22px rgba(22, 163, 74, .26);
}

.stvc-certificate-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	margin-top: 22px;
	color: var(--stvc-success);
}

.stvc-certificate-mark .stvc-icon {
	width: 62px;
	height: 62px;
	stroke-width: 1.8;
}

.stvc-details-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 22px;
}

.stvc-detail-row {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	min-height: 70px;
	padding: 13px 14px;
	background: var(--stvc-white);
	border: 1px solid var(--stvc-border);
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(17, 17, 17, .03);
}

.stvc-detail-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	color: #374151;
	background: var(--stvc-bg);
	border-radius: 50%;
}

.stvc-detail-icon .stvc-icon {
	width: 18px;
	height: 18px;
}

.stvc-detail-label,
.stvc-detail-value {
	display: block;
	overflow-wrap: anywhere;
}

.stvc-detail-label {
	margin-bottom: 3px;
	color: #4B5563;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.25;
}

.stvc-detail-value {
	color: var(--stvc-dark);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.stvc-download-button {
	width: 100%;
	margin-top: 18px;
}

.stvc-file-message {
	margin: 18px 0 0;
	padding: 15px 18px;
	color: var(--stvc-danger);
	background: rgba(220, 38, 38, .06);
	border: 1px solid rgba(220, 38, 38, .18);
	border-radius: 14px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}

.stvc-reset-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin-top: 14px;
	color: #4B5563;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	text-decoration: none;
	transition: color var(--stvc-ease), transform var(--stvc-ease);
}

.stvc-reset-link:hover,
.stvc-reset-link:focus {
	color: var(--stvc-dark);
	transform: translateY(-1px);
}

.stvc-reset-link .stvc-icon {
	width: 17px;
	height: 17px;
}

/* Error Card */
.stvc-error-card {
	max-width: 620px;
	padding-top: 56px;
}

.stvc-error-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 72px;
	background: rgba(220, 38, 38, .08);
	pointer-events: none;
}

.stvc-error-icon {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin: -36px auto 28px;
	color: var(--stvc-white);
	background: #EF4444;
	border-radius: 50%;
	box-shadow: 0 12px 24px rgba(220, 38, 38, .25);
}

.stvc-error-icon .stvc-icon {
	width: 25px;
	height: 25px;
	stroke-width: 2.6;
}

.stvc-error-card .stvc-card-title {
	font-size: 25px;
}

.stvc-error-card .stvc-card-subtitle {
	max-width: 430px;
}

.stvc-error-illustration {
	display: block;
	width: min(180px, 72%);
	height: auto;
	margin: 20px auto 0;
	color: #6B7280;
}

/* Accessibility */
.stvc-screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Animations */
@keyframes stvc-card-fade {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes stvc-field-error-fade {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media screen and (max-width: 720px) {
	.stvc-portal {
		max-width: 100%;
		padding: 30px 14px;
	}

	.stvc-portal::before {
		left: -24px;
	}

	.stvc-portal::after {
		right: -178px;
		opacity: .7;
	}

	.stvc-card,
	.stvc-result-card,
	.stvc-error-card {
		padding: 30px 22px;
		border-radius: 18px;
	}

	.stvc-search-card {
		padding-top: 30px;
	}

	.stvc-card-title {
		font-size: 26px;
	}

	.stvc-button,
	.stvc-button-primary,
	.stvc-button-danger {
		width: 100%;
		min-width: 0;
	}

	.stvc-success-header {
		gap: 14px;
	}

	.stvc-certificate-mark {
		width: 54px;
		height: 54px;
		margin-top: 20px;
	}

	.stvc-certificate-mark .stvc-icon {
		width: 50px;
		height: 50px;
	}

	.stvc-details-list {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 440px) {
	.stvc-portal {
		padding: 24px 10px;
	}

	.stvc-card,
	.stvc-result-card,
	.stvc-error-card {
		padding: 26px 18px;
	}

	.stvc-search-card {
		padding-top: 28px;
	}

	.stvc-card-title,
	.stvc-result-card .stvc-card-title,
	.stvc-error-card .stvc-card-title {
		font-size: 23px;
	}

	.stvc-card-subtitle {
		font-size: 13px;
	}

	.stvc-success-header {
		display: block;
	}

	.stvc-certificate-mark {
		display: none;
	}

	.stvc-status-badge {
		font-size: 14px;
	}

	.stvc-detail-row {
		grid-template-columns: 38px minmax(0, 1fr);
		padding: 12px;
	}

	.stvc-detail-icon {
		width: 36px;
		height: 36px;
	}

	.stvc-security-note {
		align-items: flex-start;
		text-align: left;
	}
}

/* Premium verification layout */
.stvc-portal {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 28px 24px;
	
	color: #1A1A1A;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	overflow: visible;
}

.stvc-portal::before,
.stvc-portal::after {
	display: none;
}

.stvc-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: stretch;
	min-height: 640px;
	overflow: hidden;
	background: #FFFFFF;
	border: 1px solid #EFEFEF;
	border-radius: 24px;
	box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.stvc-visual-panel,
.stvc-card-panel {
	min-width: 0;
}

.stvc-visual-panel {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 34px 58px 34px;
	background:
		radial-gradient(circle at 28% 54%, rgba(255, 193, 7, .12), transparent 23%),
		linear-gradient(90deg, #FFFFFF 0%, #FFFDF9 100%);
	animation: stvc-fade-slide-left .5s ease both;
}

.stvc-visual-panel::before,
.stvc-visual-panel::after {
	content: "";
	position: absolute;
	width: 132px;
	height: 132px;
	background-image: radial-gradient(rgba(255, 193, 7, .42) 1.5px, transparent 1.7px);
	background-size: 22px 22px;
	pointer-events: none;
}

.stvc-visual-panel::before {
	top: 22px;
	right: 40px;
}

.stvc-visual-panel::after {
	left: 32px;
	bottom: 24px;
	opacity: .62;
}

.stvc-page-title {
	position: relative;
	z-index: 1;
	margin: 0;
	color: #101828;
	font-size: 54px;
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: 0;
}

.stvc-title-mark {
	position: relative;
	z-index: 1;
	width: 44px;
	height: 5px;
	margin: 20px 0 18px;
	background: #FFC107;
	border-radius: 999px;
}

.stvc-page-copy {
	position: relative;
	z-index: 1;
	max-width: 438px;
	margin: 0;
	color: #344054;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.48;
}

.stvc-illustration-wrap {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 16px auto 6px;
}

.stvc-verification-illustration {
	display: block;
	width: min(100%, 610px);
	height: auto;
	object-fit: contain;
}

.stvc-feature-row {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	max-width: 570px;
	margin: 10px auto 0;
}

.stvc-feature-row span {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	align-items: center;
	column-gap: 12px;
	color: #101828;
}

.stvc-feature-row .stvc-icon {
	grid-row: span 2;
	width: 46px;
	height: 46px;
	padding: 11px;
	color: #EAAA00;
	background: rgba(255, 193, 7, .14);
	border-radius: 14px;
}

.stvc-feature-row b,
.stvc-feature-row em {
	display: block;
	font-size: 15px;
	line-height: 1.2;
	letter-spacing: 0;
}

.stvc-feature-row b {
	font-weight: 800;
}

.stvc-feature-row em {
	color: #344054;
	font-style: normal;
	font-weight: 500;
}

.stvc-card-panel {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 42px 42px;
	background: #FFFFFF;
	animation: stvc-fade-slide-right .5s ease both;
}

.stvc-card {
	max-width: 520px;
	margin: 0;
	padding: 28px 40px 24px;
	background: #FFFFFF;
	border: 1px solid #EFEFEF;
	border-radius: 24px;
	box-shadow: 0 22px 62px rgba(15, 23, 42, .07);
	animation: none;
}

.stvc-search-card {
	padding-top: 28px;
}

.stvc-hero-icon {
	width: 92px;
	height: 92px;
	margin: 0 auto 16px;
	color: #F5B301;
	background: radial-gradient(circle, rgba(255, 193, 7, .22), rgba(255, 193, 7, .08));
	border-radius: 50%;
	box-shadow: none;
}

.stvc-hero-icon .stvc-icon {
	width: 52px;
	height: 52px;
	stroke-width: 1.55;
}

.stvc-card-title {
	color: #101828;
	font-size: 34px;
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: 0;
}

.stvc-card-subtitle {
	max-width: 430px;
	margin-top: 8px;
	color: #475467;
	font-size: 16px;
	line-height: 1.55;
}

.stvc-search-form {
	gap: 18px;
	max-width: none;
	margin-top: 20px;
}

.stvc-input-wrap > .stvc-icon {
	left: 22px;
	width: 24px;
	height: 24px;
	color: #344054;
}

.stvc-portal #codigomuestra.stvc-search-input,
.stvc-search-input {
	height: 64px;
	padding: 0 24px 0 64px;
	color: #1A1A1A;
	border: 1px solid #D0D5DD;
	border-radius: 16px;
	box-shadow: 0 1px 2px rgba(16, 24, 40, .03);
	font-size: 18px;
}

.stvc-search-input::placeholder {
	color: #98A2B3;
}

.stvc-search-input:focus {
	border-color: #FFC107;
	box-shadow: 0 0 0 4px rgba(255, 193, 7, .20);
	transform: none;
}

.stvc-button {
	min-height: 62px;
	border-radius: 16px;
	font-size: 18px;
	font-weight: 800;
}

.stvc-search-form .stvc-button-primary {
	width: 100%;
	min-width: 0;
	color: #101828;
	background: linear-gradient(180deg, #FFD33D 0%, #FFC107 100%);
	box-shadow: 0 14px 30px rgba(255, 193, 7, .22);
}

.stvc-search-form .stvc-button-primary:hover,
.stvc-search-form .stvc-button-primary:focus {
	color: #101828;
	background: linear-gradient(180deg, #FFDA55 0%, #F5B301 100%);
	box-shadow: 0 18px 34px rgba(255, 193, 7, .30);
	transform: translateY(-1px);
}

.stvc-search-form .stvc-button-primary .stvc-icon {
	width: 28px;
	height: 28px;
}

.stvc-security-note {
	gap: 12px;
	margin-top: 18px;
	color: #475467;
	font-size: 15px;
}

.stvc-security-note .stvc-icon {
	width: 18px;
	height: 18px;
	color: #667085;
}

.stvc-result-card,
.stvc-error-card {
	max-width: 620px;
}

@keyframes stvc-fade-slide-left {
	from {
		opacity: 0;
		transform: translateX(-24px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes stvc-fade-slide-right {
	from {
		opacity: 0;
		transform: translateX(24px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@media screen and (max-width: 1024px) {
	.stvc-layout {
		grid-template-columns: 45fr 55fr;
		min-height: 620px;
	}

	.stvc-visual-panel {
		padding: 32px 32px;
	}

	.stvc-card-panel {
		padding: 36px 28px;
	}

	.stvc-page-title {
		font-size: 48px;
	}

	.stvc-page-copy {
		font-size: 16px;
	}

	.stvc-feature-row {
		gap: 12px;
	}

	.stvc-feature-row span {
		grid-template-columns: 44px minmax(0, 1fr);
		column-gap: 10px;
	}

	.stvc-feature-row .stvc-icon {
		width: 44px;
		height: 44px;
		padding: 11px;
	}

	.stvc-card {
		padding: 28px 28px 24px;
	}
}

@media screen and (max-width: 820px) {
	.stvc-portal {
		padding: 28px 16px;
	}

	.stvc-layout {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.stvc-visual-panel {
		align-items: center;
		padding: 34px 26px 20px;
		text-align: center;
	}

	.stvc-title-mark {
		margin-left: auto;
		margin-right: auto;
	}

	.stvc-page-copy {
		margin-left: auto;
		margin-right: auto;
	}

	.stvc-illustration-wrap {
		margin-top: 20px;
	}

	.stvc-feature-row {
		width: 100%;
	}

	.stvc-card-panel {
		padding: 22px 22px 32px;
	}
}

@media screen and (max-width: 560px) {
	.stvc-portal {
		padding: 18px 10px;
	}

	.stvc-layout {
		border-radius: 20px;
	}

	.stvc-visual-panel {
		padding: 28px 18px 14px;
	}

	.stvc-page-title {
		font-size: 40px;
	}

	.stvc-page-copy {
		font-size: 16px;
	}

	.stvc-feature-row {
		grid-template-columns: 1fr;
		max-width: 250px;
		margin-top: 8px;
	}

	.stvc-card-panel {
		padding: 16px 14px 24px;
	}

	.stvc-card,
	.stvc-result-card,
	.stvc-error-card {
		padding: 26px 20px 22px;
		border-radius: 22px;
	}

	.stvc-search-card {
		padding-top: 26px;
	}

	.stvc-hero-icon {
		width: 78px;
		height: 78px;
		margin-top: 0;
		margin-bottom: 14px;
	}

	.stvc-hero-icon .stvc-icon {
		width: 44px;
		height: 44px;
	}

	.stvc-card-title,
	.stvc-result-card .stvc-card-title,
	.stvc-error-card .stvc-card-title {
		font-size: 30px;
	}

	.stvc-card-subtitle {
		font-size: 15px;
	}

	.stvc-portal #codigomuestra.stvc-search-input,
	.stvc-search-input {
		height: 58px;
		font-size: 16px;
	}

	.stvc-button {
		min-height: 58px;
		font-size: 16px;
	}

	.stvc-security-note {
		align-items: center;
		font-size: 14px;
		text-align: center;
	}
}
