/* Recreates the visual output of the two Elementor Pro widgets
   (Animated Headline, Form) that no longer render now that the
   site runs without WordPress/Elementor Pro. */

/* Temporarily hidden: YouTube video widgets render empty without
   Elementor's JS. Hiding until they're rebuilt as plain <iframe>s. */
.elementor-element-7b4bb21,
.elementor-element-287c400,
.elementor-element-c115c8b {
	display: none !important;
}

.custom-headline {
	margin: 0;
	text-align: center;
	font-family: "Roboto", sans-serif;
	line-height: 1.3;
}

.custom-headline--hero {
	color: #FFFFFF;
	font-weight: 600;
	font-size: 45px;
}

.custom-headline--dark {
	color: #000000;
	font-weight: 400;
	font-size: 35px;
}

.custom-headline--sm {
	font-size: 25px;
}

.custom-headline__highlight--green {
	color: #00FF1A;
	font-weight: 700;
}

.custom-headline__highlight--underline {
	text-decoration: underline;
	text-decoration-style: double;
	text-underline-offset: 6px;
}

@media (max-width: 767px) {
	.custom-headline--hero { font-size: 28px; }
	.custom-headline--dark { font-size: 28px; }
	.custom-headline--sm { font-size: 17px; }
}

/* Lead form */

.lead-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.lead-field-group {
	width: 100%;
}

.lead-input {
	width: 100%;
	box-sizing: border-box;
	padding: 14px 16px;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	border: 1px solid #cccccc;
	border-radius: 6px;
	background: #ffffff;
	color: #000000;
}

.lead-input:focus {
	outline: none;
	border-color: #FE6820;
}

.lead-field-group--submit {
	display: flex;
	justify-content: center;
	margin-top: 8px;
}

.lead-submit-btn {
	display: inline-block;
	border: none;
	cursor: pointer;
	font-family: "Sora", sans-serif;
	font-size: 20px;
	font-weight: 500;
	color: #FFFFFF;
	padding: 15px 15px;
	border-radius: 8px;
	clip-path: polygon(0 0, 95% 0, 100% 25%, 100% 100%, 5% 100%, 0 75%);
	overflow: hidden;
	background: linear-gradient(to left, #FC9107 0%, #EFA819 50%) right;
	background-size: 200%;
	transition: .3s ease-out;
	position: relative;
}

.lead-submit-btn:hover {
	background-position: left bottom;
	background-color: #EAD754;
}

.lead-submit-btn[disabled] {
	opacity: .6;
	cursor: not-allowed;
}

.lead-form-message {
	text-align: center;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	color: #B00020;
	min-height: 1.2em;
	margin: 0;
}

/* Hero button ("QUERO CONTRATAR HOJE!!") and the obrigado-page button
   ("Cliqe aqui e entre em contato!!") both used Elementor Pro's
   per-widget "Custom CSS" tab for their gradient/diagonal-cut look.
   That tab is Pro-only and never got compiled into a static CSS file,
   so it's recreated here from the original widget settings. */

.elementor-element-3edf191 .elementor-button,
.elementor-element-ac2bb8e .elementor-button {
	position: relative;
	overflow: hidden;
	clip-path: polygon(0 0, 95% 0, 100% 25%, 100% 100%, 5% 100%, 0 75%);
	background: linear-gradient(to left, #56D063 0%, #078360 50%) right;
	background-size: 200%;
	transition: all 0.3s ease-out;
}

.elementor-element-3edf191 .elementor-button:hover,
.elementor-element-ac2bb8e .elementor-button:hover {
	background-position: left bottom;
	background-color: #078360 !important;
	border: none;
	transform: scale(1.01);
}

.elementor-element-3edf191 .elementor-button:hover::before,
.elementor-element-ac2bb8e .elementor-button:hover::before {
	animation: sh02 0.7s 0s linear;
}

.elementor-element-3edf191 .elementor-button::before,
.elementor-element-ac2bb8e .elementor-button::before {
	content: '';
	display: block;
	width: 0px;
	height: 86%;
	position: absolute;
	top: 7%;
	left: 0%;
	opacity: 0;
	background: #078360;
	box-shadow: 0 0 50px 30px #fff;
	transform: skewX(-20deg);
}

@keyframes sh02 {
	from { opacity: 0; left: 0%; }
	50% { opacity: 1; }
	to { opacity: 0; left: 100%; }
}

.elementor-element-3edf191 .elementor-button:active,
.elementor-element-ac2bb8e .elementor-button:active {
	box-shadow: inset 0px 0px 5px 5px #EAD754, 0px 5px 0px 0px #EAD754, 0px 10px 5px 0px #EAD754 !important;
	transition: box-shadow 0.2s ease-in;
	transform: scale(1);
}
