.novavet-hero {
	background: var(--nv-surface, #f5fafa);
	color: var(--nv-foreground, #23404a);
	font-family: "Poppins", sans-serif;
	margin-block-start: 0;
	overflow: hidden;
}

.novavet-hero,
.novavet-hero * {
	box-sizing: border-box;
}

.novavet-hero__inner {
	display: grid;
	gap: 48px;
	margin: 0 auto;
	max-width: 1280px;
	padding: 64px 16px;
}

.novavet-hero__content {
	min-width: 0;
}

.novavet-hero__eyebrow {
	align-items: center;
	background: var(--nv-brand-light, #e5f7f5);
	border-radius: 999px;
	color: var(--nv-primary, #006080);
	display: inline-flex;
	font-size: 12px;
	font-weight: 500;
	gap: 8px;
	letter-spacing: 0.08em;
	line-height: 1.2;
	padding: 6px 16px;
	text-transform: uppercase;
}

.novavet-hero svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.novavet-hero__eyebrow-icon {
	height: 14px;
	width: 14px;
}

.novavet-hero__title {
	color: var(--nv-foreground, #23404a);
	font-family: "Poppins", sans-serif;
	font-size: clamp(40px, 8vw, 60px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.1;
	margin: 20px 0 0;
	max-width: 650px;
}

.novavet-hero__highlight {
	color: var(--nv-primary, #006080);
}

.novavet-hero__description {
	color: var(--nv-muted-foreground, #657980);
	font-size: 16px;
	line-height: 1.7;
	margin: 20px 0 0;
	max-width: 575px;
}

.novavet-hero__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 32px;
}

.novavet-hero__button {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: 18px;
	font-weight: 700;
	gap: 10px;
	justify-content: center;
	line-height: 1.15;
	min-height: 60px;
	padding: 16px 32px;
	text-align: center;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
	width: 100%;
}

.novavet-hero__button:hover,
.novavet-hero__button:focus-visible {
	transform: translateY(-1px);
}

.novavet-hero__button svg {
	height: 20px;
	width: 20px;
}

.novavet-hero__button--primary {
	background: var(--nv-whatsapp, #25d366);
	box-shadow: var(--nv-shadow-soft, 0 2px 12px -4px rgba(35, 64, 74, 0.1));
	color: #ffffff;
}

.novavet-hero__button--primary:hover,
.novavet-hero__button--primary:focus-visible {
	background: var(--nv-whatsapp-hover, #1fb856);
	color: #ffffff;
}

.novavet-hero__button--secondary {
	background: transparent;
	border: 2px solid var(--nv-primary, #006080);
	color: var(--nv-primary, #006080);
}

.novavet-hero__button--secondary:hover,
.novavet-hero__button--secondary:focus-visible {
	background: var(--nv-primary, #006080);
	color: #ffffff;
}

.novavet-hero__trust {
	align-items: flex-start;
	color: var(--nv-muted-foreground, #657980);
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	gap: 18px 24px;
	line-height: 1.35;
	margin-top: 40px;
}

.novavet-hero__trust-item {
	align-items: center;
	display: inline-flex;
	gap: 8px;
}

.novavet-hero__trust-item svg {
	color: var(--nv-secondary, #00b0a0);
	flex: 0 0 auto;
	height: 20px;
	width: 20px;
}

.novavet-hero__media {
	isolation: isolate;
	position: relative;
}

.novavet-hero__image-glow {
	background: rgba(63, 195, 180, 0.2);
	border-radius: 24px;
	inset: -16px;
	position: absolute;
	z-index: -1;
}

.novavet-hero__image {
	aspect-ratio: 4 / 3;
	border-radius: 24px;
	box-shadow: var(--nv-shadow-card, 0 4px 24px -8px rgba(35, 64, 74, 0.18));
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

@media (min-width: 640px) {
	.novavet-hero__inner {
		padding-left: 24px;
		padding-right: 24px;
	}

	.novavet-hero__actions {
		align-items: center;
		flex-direction: row;
	}

	.novavet-hero__button {
		width: auto;
	}
}

@media (min-width: 768px) {
	.novavet-hero__inner {
		padding-bottom: 96px;
		padding-top: 96px;
	}

	.novavet-hero__title {
		font-size: clamp(48px, 6vw, 60px);
	}

	.novavet-hero__description {
		font-size: 18px;
	}
}

@media (min-width: 1024px) {
	.novavet-hero__inner {
		align-items: center;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 64px;
		padding-left: 32px;
		padding-right: 32px;
	}
}

@media (max-width: 420px) {
	.novavet-hero__button {
		font-size: 16px;
		padding-left: 20px;
		padding-right: 20px;
	}
}
