/**
 * Zezinho Elementor Child — global complementary CSS
 * Keep commercial layout editable in Elementor; this file holds tokens + reusable classes.
 */

:root {
	/* Brand */
	--zezinho-primary: #0877b9;
	--zezinho-primary-dark: #063b5c;
	--zezinho-secondary: #43a94b;
	--zezinho-accent: #43a94b;
	--zezinho-text: #152d36;
	--zezinho-text-muted: #4d646e;
	--zezinho-bg: #f4f9fb;
	--zezinho-bg-alt: #e8f2f7;
	--zezinho-white: #ffffff;
	--zezinho-border: #d5e3ea;
	--zezinho-overlay: rgba(6, 59, 92, 0.58);
	--zezinho-whatsapp: #25d366;

	/* Layout */
	--zezinho-container: 1240px;
	--zezinho-pad-x: 32px;
	--zezinho-pad-x-tablet: 24px;
	--zezinho-pad-x-mobile: 18px;

	/* Radius */
	--zezinho-radius-sm: 8px;
	--zezinho-radius-md: 16px;
	--zezinho-radius-lg: 20px;
	--zezinho-radius-btn: 10px;

	/* Spacing scale */
	--zezinho-space-1: 8px;
	--zezinho-space-2: 12px;
	--zezinho-space-3: 16px;
	--zezinho-space-4: 24px;
	--zezinho-space-5: 32px;
	--zezinho-space-6: 48px;
	--zezinho-space-7: 64px;
	--zezinho-space-8: 80px;
	--zezinho-space-9: 96px;

	/* Shadows — subtle only */
	--zezinho-shadow-sm: 0 4px 16px rgba(21, 45, 54, 0.06);
	--zezinho-shadow-md: 0 10px 28px rgba(21, 45, 54, 0.08);

	/* Motion */
	--zezinho-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--zezinho-duration: 220ms;
}

/* -------------------------------------------------------------------------- */
/* Base                                                                       */
/* -------------------------------------------------------------------------- */

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

body.zezinho-theme {
	color: var(--zezinho-text);
	font-family: var(--zezinho-font-body);
	font-weight: 400;
	line-height: 1.65;
	background: var(--zezinho-white);
	-webkit-font-smoothing: antialiased;
}

body.zezinho-theme h1,
body.zezinho-theme h2,
body.zezinho-theme h3,
body.zezinho-theme h4,
body.zezinho-theme .zezinho-heading {
	font-family: var(--zezinho-font-heading);
	color: var(--zezinho-text);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

a {
	color: var(--zezinho-primary);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--zezinho-primary-dark);
}

:focus-visible {
	outline: 3px solid var(--zezinho-primary);
	outline-offset: 3px;
}

img {
	max-width: 100%;
	height: auto;
}

/* -------------------------------------------------------------------------- */
/* Layout helpers (Elementor CSS classes)                                     */
/* -------------------------------------------------------------------------- */

.zezinho-container,
.e-con.zezinho-container > .e-con-inner {
	width: 100%;
	max-width: var(--zezinho-container);
	margin-inline: auto;
	padding-inline: var(--zezinho-pad-x);
	box-sizing: border-box;
}

.zezinho-section {
	padding-block: var(--zezinho-space-8);
}

.zezinho-section--tight {
	padding-block: var(--zezinho-space-6);
}

.zezinho-section--alt {
	background: var(--zezinho-bg);
}

.zezinho-section-title {
	margin: 0 0 var(--zezinho-space-3);
	font-size: clamp(1.75rem, 2.4vw, 2.35rem);
}

.zezinho-section-lead {
	margin: 0 0 var(--zezinho-space-5);
	max-width: 42rem;
	color: var(--zezinho-text-muted);
	font-size: 1.0625rem;
}

.zezinho-eyebrow {
	display: inline-block;
	margin-bottom: var(--zezinho-space-2);
	color: var(--zezinho-primary);
	font-family: var(--zezinho-font-heading);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* -------------------------------------------------------------------------- */
/* Buttons                                                                    */
/* -------------------------------------------------------------------------- */

.zezinho-btn,
.elementor-button.zezinho-btn,
a.zezinho-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 48px;
	padding: 0.85rem 1.4rem;
	border-radius: var(--zezinho-radius-btn);
	border: 2px solid transparent;
	font-family: var(--zezinho-font-heading);
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: background var(--zezinho-duration) var(--zezinho-ease),
		color var(--zezinho-duration) var(--zezinho-ease),
		border-color var(--zezinho-duration) var(--zezinho-ease),
		transform var(--zezinho-duration) var(--zezinho-ease),
		box-shadow var(--zezinho-duration) var(--zezinho-ease);
}

.zezinho-btn:hover,
.elementor-button.zezinho-btn:hover {
	text-decoration: none;
	transform: translateY(-1px);
}

.zezinho-btn--primary,
.elementor-button.zezinho-btn--primary {
	background: var(--zezinho-primary);
	color: var(--zezinho-white);
	border-color: var(--zezinho-primary);
}

.zezinho-btn--primary:hover {
	background: var(--zezinho-primary-dark);
	border-color: var(--zezinho-primary-dark);
	color: var(--zezinho-white);
}

.zezinho-btn--secondary,
.elementor-button.zezinho-btn--secondary {
	background: var(--zezinho-secondary);
	color: var(--zezinho-white);
	border-color: var(--zezinho-secondary);
}

.zezinho-btn--secondary:hover {
	background: #368f3d;
	border-color: #368f3d;
	color: var(--zezinho-white);
}

.zezinho-btn--outline,
.elementor-button.zezinho-btn--outline {
	background: transparent;
	color: var(--zezinho-white);
	border-color: rgba(255, 255, 255, 0.85);
}

.zezinho-btn--outline:hover {
	background: rgba(255, 255, 255, 0.12);
	color: var(--zezinho-white);
}

.zezinho-btn--outline-dark,
.elementor-button.zezinho-btn--outline-dark {
	background: transparent;
	color: var(--zezinho-primary-dark);
	border-color: var(--zezinho-primary);
}

.zezinho-btn--outline-dark:hover {
	background: var(--zezinho-primary);
	color: var(--zezinho-white);
}

.zezinho-btn--whatsapp,
.elementor-button.zezinho-btn--whatsapp {
	background: var(--zezinho-whatsapp);
	color: var(--zezinho-white);
	border-color: var(--zezinho-whatsapp);
}

.zezinho-btn--whatsapp:hover {
	background: #1ebe57;
	border-color: #1ebe57;
	color: var(--zezinho-white);
}

/* -------------------------------------------------------------------------- */
/* Header                                                                     */
/* -------------------------------------------------------------------------- */

.zezinho-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: background var(--zezinho-duration) var(--zezinho-ease),
		box-shadow var(--zezinho-duration) var(--zezinho-ease);
}

.zezinho-header--over-hero {
	background: transparent;
}

.zezinho-header.is-scrolled,
.zezinho-header--solid {
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(8px);
	box-shadow: 0 1px 0 rgba(21, 45, 54, 0.06), var(--zezinho-shadow-sm);
}

.zezinho-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--zezinho-space-4);
	min-height: 78px;
	max-width: var(--zezinho-container);
	margin-inline: auto;
	padding-inline: var(--zezinho-pad-x);
}

.zezinho-header__logo img {
	display: block;
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.zezinho-header__nav {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.zezinho-header__nav a {
	color: var(--zezinho-text);
	font-family: var(--zezinho-font-heading);
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
}

.zezinho-header--over-hero:not(.is-scrolled) .zezinho-header__nav a {
	color: var(--zezinho-white);
}

.zezinho-header__nav a:hover {
	color: var(--zezinho-primary);
}

.zezinho-header--over-hero:not(.is-scrolled) .zezinho-header__nav a:hover {
	color: #d7ecf8;
}

body.zezinho-hide-primary-nav .zezinho-header__nav,
body.zezinho-landing .zezinho-header__nav {
	display: none;
}

body.zezinho-no-woocommerce .zezinho-store-nav {
	display: none !important;
}

/* -------------------------------------------------------------------------- */
/* Hero — full bleed                                                          */
/* -------------------------------------------------------------------------- */

.zezinho-hero {
	position: relative;
	width: 100%;
	min-height: 700px;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: var(--zezinho-white);
	background: var(--zezinho-primary-dark);
}

.zezinho-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.zezinho-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.zezinho-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		105deg,
		rgba(6, 59, 92, 0.82) 0%,
		rgba(6, 59, 92, 0.55) 48%,
		rgba(8, 119, 185, 0.28) 100%
	);
}

.zezinho-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
	gap: var(--zezinho-space-6);
	align-items: center;
	width: 100%;
	max-width: var(--zezinho-container);
	margin-inline: auto;
	padding: var(--zezinho-space-8) var(--zezinho-pad-x);
}

.zezinho-hero__content h1 {
	margin: 0 0 var(--zezinho-space-3);
	color: var(--zezinho-white);
	font-size: clamp(2rem, 4vw, 3.15rem);
	max-width: 14ch;
}

.zezinho-hero__content p {
	margin: 0 0 var(--zezinho-space-5);
	max-width: 36rem;
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.125rem;
}

.zezinho-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--zezinho-space-3);
	margin-bottom: var(--zezinho-space-5);
}

.zezinho-trust-inline {
	display: flex;
	flex-wrap: wrap;
	gap: var(--zezinho-space-3) var(--zezinho-space-4);
	padding: 0;
	margin: 0;
	list-style: none;
}

.zezinho-trust-inline li {
	position: relative;
	padding-left: 1.1rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9375rem;
}

.zezinho-trust-inline li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--zezinho-secondary);
}

.zezinho-hero-form {
	background: rgba(255, 255, 255, 0.96);
	color: var(--zezinho-text);
	border-radius: var(--zezinho-radius-lg);
	padding: var(--zezinho-space-5);
	box-shadow: var(--zezinho-shadow-md);
}

.zezinho-hero-form h2,
.zezinho-hero-form .zezinho-hero-form__title {
	margin: 0 0 var(--zezinho-space-4);
	font-size: 1.35rem;
	color: var(--zezinho-primary-dark);
}

/* -------------------------------------------------------------------------- */
/* Trust strip / features                                                     */
/* -------------------------------------------------------------------------- */

.zezinho-trust-strip {
	background: var(--zezinho-primary-dark);
	color: var(--zezinho-white);
	padding-block: var(--zezinho-space-6);
}

.zezinho-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--zezinho-space-5);
}

.zezinho-icon-feature {
	display: grid;
	gap: var(--zezinho-space-2);
}

.zezinho-icon-feature__icon {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.1);
	color: #9fd0ef;
}

.zezinho-icon-feature h3 {
	margin: 0;
	color: var(--zezinho-white);
	font-size: 1.0625rem;
}

.zezinho-icon-feature p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.9375rem;
}

/* -------------------------------------------------------------------------- */
/* Service cards                                                              */
/* -------------------------------------------------------------------------- */

.zezinho-services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--zezinho-space-4);
}

.zezinho-service-card {
	display: flex;
	flex-direction: column;
	background: var(--zezinho-white);
	border: 1px solid var(--zezinho-border);
	border-radius: var(--zezinho-radius-md);
	overflow: hidden;
	transition: transform var(--zezinho-duration) var(--zezinho-ease),
		box-shadow var(--zezinho-duration) var(--zezinho-ease),
		border-color var(--zezinho-duration) var(--zezinho-ease);
}

.zezinho-service-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--zezinho-shadow-sm);
	border-color: #b9d4e3;
}

.zezinho-service-card--priority {
	border-color: #9ec9e3;
	box-shadow: var(--zezinho-shadow-sm);
}

.zezinho-service-card__media {
	aspect-ratio: 16 / 11;
	overflow: hidden;
	background: var(--zezinho-bg-alt);
}

.zezinho-service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 320ms var(--zezinho-ease);
}

.zezinho-service-card:hover .zezinho-service-card__media img {
	transform: scale(1.03);
}

.zezinho-service-card__body {
	display: flex;
	flex-direction: column;
	gap: var(--zezinho-space-2);
	padding: var(--zezinho-space-4);
	flex: 1;
}

.zezinho-service-card__body h3 {
	margin: 0;
	font-size: 1.2rem;
}

.zezinho-service-card__body p {
	margin: 0;
	color: var(--zezinho-text-muted);
	flex: 1;
}

.zezinho-service-card__body .zezinho-btn {
	align-self: flex-start;
	min-height: 42px;
	padding: 0.65rem 1rem;
	font-size: 0.8125rem;
}

/* -------------------------------------------------------------------------- */
/* Split feature blocks                                                       */
/* -------------------------------------------------------------------------- */

.zezinho-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--zezinho-space-6);
	align-items: center;
}

.zezinho-split--reverse .zezinho-split__media {
	order: 2;
}

.zezinho-split__media {
	border-radius: var(--zezinho-radius-lg);
	overflow: hidden;
	min-height: 420px;
	background: var(--zezinho-bg-alt);
}

.zezinho-split__media img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
}

.zezinho-split__content h2 {
	margin: 0 0 var(--zezinho-space-3);
	font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

.zezinho-split__content p,
.zezinho-split__content ul {
	color: var(--zezinho-text-muted);
}

.zezinho-checklist {
	margin: var(--zezinho-space-4) 0 var(--zezinho-space-5);
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.65rem;
}

.zezinho-checklist li {
	position: relative;
	padding-left: 1.5rem;
}

.zezinho-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 0.65rem;
	height: 0.65rem;
	border-radius: 50%;
	background: var(--zezinho-secondary);
}

/* -------------------------------------------------------------------------- */
/* Steps / process                                                            */
/* -------------------------------------------------------------------------- */

.zezinho-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--zezinho-space-4);
}

.zezinho-step {
	padding: var(--zezinho-space-5);
	background: var(--zezinho-white);
	border: 1px solid var(--zezinho-border);
	border-radius: var(--zezinho-radius-md);
}

.zezinho-step__number {
	display: inline-block;
	margin-bottom: var(--zezinho-space-3);
	color: var(--zezinho-primary);
	font-family: var(--zezinho-font-heading);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.zezinho-step h3 {
	margin: 0 0 var(--zezinho-space-2);
	font-size: 1.2rem;
}

.zezinho-step p {
	margin: 0;
	color: var(--zezinho-text-muted);
}

/* -------------------------------------------------------------------------- */
/* Gallery / testimonials / FAQ / CTA                                         */
/* -------------------------------------------------------------------------- */

.zezinho-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--zezinho-space-3);
}

.zezinho-gallery-card {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: var(--zezinho-radius-md);
	overflow: hidden;
	background: var(--zezinho-bg-alt);
}

.zezinho-gallery-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zezinho-gallery-card__badge {
	position: absolute;
	left: 12px;
	bottom: 12px;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	background: rgba(6, 59, 92, 0.85);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
}

.zezinho-placeholder-note {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	padding: var(--zezinho-space-4);
	text-align: center;
	color: var(--zezinho-text-muted);
	font-size: 0.875rem;
	background: repeating-linear-gradient(
		-45deg,
		var(--zezinho-bg),
		var(--zezinho-bg) 10px,
		var(--zezinho-bg-alt) 10px,
		var(--zezinho-bg-alt) 20px
	);
}

.zezinho-testimonials {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--zezinho-space-4);
}

.zezinho-testimonial-card {
	padding: var(--zezinho-space-5);
	background: var(--zezinho-white);
	border: 1px dashed #b7c9d3;
	border-radius: var(--zezinho-radius-md);
}

.zezinho-testimonial-card blockquote {
	margin: 0 0 var(--zezinho-space-4);
	color: var(--zezinho-text-muted);
	font-style: italic;
}

.zezinho-testimonial-card cite {
	font-style: normal;
	font-weight: 600;
	color: var(--zezinho-text);
}

.zezinho-faq details {
	border-bottom: 1px solid var(--zezinho-border);
	padding-block: var(--zezinho-space-3);
}

.zezinho-faq summary {
	cursor: pointer;
	font-family: var(--zezinho-font-heading);
	font-weight: 700;
	color: var(--zezinho-primary-dark);
	list-style: none;
}

.zezinho-faq summary::-webkit-details-marker {
	display: none;
}

.zezinho-faq details p {
	margin: var(--zezinho-space-2) 0 0;
	color: var(--zezinho-text-muted);
}

.zezinho-cta-band {
	position: relative;
	overflow: hidden;
	color: var(--zezinho-white);
	padding-block: var(--zezinho-space-8);
	background: var(--zezinho-primary-dark);
}

.zezinho-cta-band__overlay {
	position: absolute;
	inset: 0;
	background: var(--zezinho-overlay);
}

.zezinho-cta-band__inner {
	position: relative;
	z-index: 1;
	max-width: 42rem;
}

.zezinho-cta-band h2 {
	margin: 0 0 var(--zezinho-space-3);
	color: var(--zezinho-white);
	font-size: clamp(1.7rem, 2.5vw, 2.4rem);
}

.zezinho-cta-band p {
	margin: 0 0 var(--zezinho-space-5);
	color: rgba(255, 255, 255, 0.9);
}

/* -------------------------------------------------------------------------- */
/* Area / footer                                                              */
/* -------------------------------------------------------------------------- */

.zezinho-area-chips {
	display: flex;
	flex-wrap: wrap;
	gap: var(--zezinho-space-2);
	margin-top: var(--zezinho-space-4);
}

.zezinho-area-chip {
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	background: var(--zezinho-bg-alt);
	color: var(--zezinho-primary-dark);
	font-size: 0.875rem;
	font-weight: 600;
}

.zezinho-footer {
	background: var(--zezinho-primary-dark);
	color: rgba(255, 255, 255, 0.86);
	padding-top: var(--zezinho-space-8);
}

.zezinho-footer a {
	color: rgba(255, 255, 255, 0.86);
	text-decoration: none;
}

.zezinho-footer a:hover {
	color: #fff;
}

.zezinho-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
	gap: var(--zezinho-space-5);
	max-width: var(--zezinho-container);
	margin-inline: auto;
	padding-inline: var(--zezinho-pad-x);
	padding-bottom: var(--zezinho-space-6);
}

.zezinho-footer h3 {
	margin: 0 0 var(--zezinho-space-3);
	color: #fff;
	font-size: 1rem;
}

.zezinho-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.55rem;
}

.zezinho-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-block: var(--zezinho-space-4);
}

.zezinho-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: var(--zezinho-space-3);
	max-width: var(--zezinho-container);
	margin-inline: auto;
	padding-inline: var(--zezinho-pad-x);
	font-size: 0.875rem;
}

.zezinho-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: var(--zezinho-space-3);
}

/* -------------------------------------------------------------------------- */
/* Floating WhatsApp                                                          */
/* -------------------------------------------------------------------------- */

.zezinho-whatsapp-float {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 9990;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	min-height: 56px;
	padding: 0.7rem 1rem 0.7rem 0.85rem;
	border-radius: 999px;
	background: var(--zezinho-whatsapp);
	color: #fff !important;
	text-decoration: none !important;
	box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
	transition: transform var(--zezinho-duration) var(--zezinho-ease),
		box-shadow var(--zezinho-duration) var(--zezinho-ease);
}

.zezinho-whatsapp-float:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(37, 211, 102, 0.4);
	color: #fff !important;
}

.zezinho-whatsapp-float__label {
	font-family: var(--zezinho-font-heading);
	font-size: 0.875rem;
	font-weight: 700;
}

.zezinho-whatsapp-float[data-zezinho-placeholder="1"] {
	opacity: 0.92;
}

/* Leave room above cookie bars / mobile nav */
@media (max-width: 767px) {
	.zezinho-whatsapp-float {
		right: 14px;
		bottom: 14px;
		padding-inline: 0.85rem;
	}

	.zezinho-whatsapp-float__label {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
	}
}

/* -------------------------------------------------------------------------- */
/* Forms                                                                      */
/* -------------------------------------------------------------------------- */

.zezinho-form label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--zezinho-text);
}

.zezinho-form .elementor-field-group,
.zezinho-form .zezinho-field {
	margin-bottom: var(--zezinho-space-3);
}

.zezinho-form input,
.zezinho-form select,
.zezinho-form textarea,
.zezinho-hero-form input,
.zezinho-hero-form select,
.zezinho-hero-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 0.7rem 0.85rem;
	border: 1px solid var(--zezinho-border);
	border-radius: var(--zezinho-radius-sm);
	background: #fff;
	color: var(--zezinho-text);
	font: inherit;
}

.zezinho-form textarea {
	min-height: 110px;
	resize: vertical;
}

/* -------------------------------------------------------------------------- */
/* Reveal animation (subtle)                                                  */
/* -------------------------------------------------------------------------- */

.zezinho-reveal {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 500ms var(--zezinho-ease), transform 500ms var(--zezinho-ease);
}

.zezinho-reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* -------------------------------------------------------------------------- */
/* Breadcrumbs                                                                */
/* -------------------------------------------------------------------------- */

.zezinho-breadcrumb {
	font-size: 0.875rem;
	color: var(--zezinho-text-muted);
	margin-bottom: var(--zezinho-space-4);
}

.zezinho-breadcrumb a {
	color: var(--zezinho-primary);
	text-decoration: none;
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
	:root {
		--zezinho-pad-x: var(--zezinho-pad-x-tablet);
	}

	.zezinho-hero {
		min-height: 560px;
	}

	.zezinho-hero__inner {
		grid-template-columns: 1fr;
		padding-block: var(--zezinho-space-7);
	}

	.zezinho-hero__content h1 {
		max-width: none;
	}

	.zezinho-trust-grid,
	.zezinho-services-grid,
	.zezinho-steps,
	.zezinho-testimonials,
	.zezinho-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.zezinho-split,
	.zezinho-split--reverse .zezinho-split__media,
	.zezinho-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.zezinho-split--reverse .zezinho-split__media {
		order: 0;
	}
}

@media (max-width: 767px) {
	:root {
		--zezinho-pad-x: var(--zezinho-pad-x-mobile);
	}

	.zezinho-section {
		padding-block: var(--zezinho-space-7);
	}

	.zezinho-hero {
		min-height: 560px;
	}

	.zezinho-hero__inner {
		padding-block: var(--zezinho-space-6);
	}

	.zezinho-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.zezinho-hero__actions .zezinho-btn {
		width: 100%;
	}

	.zezinho-trust-grid,
	.zezinho-services-grid,
	.zezinho-steps,
	.zezinho-testimonials,
	.zezinho-gallery-grid,
	.zezinho-split,
	.zezinho-footer__grid {
		grid-template-columns: 1fr;
	}

	.zezinho-split__media,
	.zezinho-split__media img {
		min-height: 260px;
	}

	.zezinho-header__inner {
		min-height: 68px;
	}

	.zezinho-header__logo img {
		width: 52px;
		height: 52px;
	}
}

@media (max-width: 390px) {
	.zezinho-hero {
		min-height: 520px;
	}

	.zezinho-hero__content h1 {
		font-size: 1.75rem;
	}
}

/* Elementor kit helpers */
.elementor-kit-zezinho .elementor-widget-heading .elementor-heading-title {
	font-family: var(--zezinho-font-heading);
}

.elementor-location-header.zezinho-header-sticky {
	position: sticky;
	top: 0;
	z-index: 1000;
}
