.my-contact {
	--contact-ink: #172033;
	--contact-muted: #5f6b7a;
	--contact-line: rgba(11, 18, 32, 0.1);
	--contact-blue: #0792e2;
	--contact-deep-blue: #303e7a;
	--contact-shadow: 0 18px 60px rgba(11, 18, 32, 0.1);
	--contact-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	background: #fff;
	color: var(--contact-ink);
	font-family: "Montserrat", Arial, sans-serif;
	overflow: hidden;
}

body.page-template-my-contacto-page,
body.page-template-my-contacto-page :where(div, section, article, header, footer, nav, p, a, span, li, h1, h2, h3, h4, h5, h6, small, strong, em, label),
body.page-template-my-contacto-page button,
body.page-template-my-contacto-page input,
body.page-template-my-contacto-page textarea,
body.page-template-my-contacto-page select {
	font-family: "Montserrat", Arial, sans-serif !important;
}

.my-contact *,
.my-contact *::before,
.my-contact *::after {
	box-sizing: border-box;
}

.my-contact-container {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0;
}

.my-contact-hero {
	position: relative;
	padding: 260px 0 130px;
	overflow: hidden;
	background:
		linear-gradient(180deg, #fff 0%, #fff 14%, rgba(255, 255, 255, 0) 30%),
		radial-gradient(780px 560px at 72% 22%, rgba(7, 146, 226, 0.07), transparent 72%),
		radial-gradient(620px 400px at 26% 18%, rgba(4, 190, 254, 0.045), transparent 74%),
		radial-gradient(860px 420px at 60% 78%, rgba(7, 146, 226, 0.035), transparent 78%),
		linear-gradient(180deg, #ffffff 0%, #f8fcff 52%, #fcfeff 82%, #ffffff 100%);
	background-repeat: no-repeat;
}

.my-contact-hero::after {
	content: "";
	position: absolute;
	left: -10%;
	right: -10%;
	bottom: -118px;
	height: 240px;
	border-radius: 50% 50% 0 0 / 70% 70% 0 0;
	background: linear-gradient(180deg, rgba(248, 253, 255, 0.32), rgba(255, 255, 255, 0.8));
	box-shadow: 0 -28px 54px rgba(255, 255, 255, 0.8);
	pointer-events: none;
}

.my-contact-hero > .my-contact-container {
	position: relative;
	z-index: 1;
}

.my-contact-head {
	max-width: 760px;
	margin: 0 auto 58px;
	text-align: center;
}

.my-contact-head h1 {
	margin: 0 0 18px;
	padding: 0;
	color: black;
	font-family: "Montserrat", Sans-serif;
	font-size: 60px;
	font-weight: 600;
	line-height: 1.08em;
	letter-spacing: 0;
}

.my-contact-head p {
	margin: 0 auto;
	color: black;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.75;
}

.my-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
	gap: 30px;
	align-items: start;
}

.my-contact-faqs,
.my-contact-form-card {
	border: 1px solid var(--contact-line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.96);
}

.my-contact-faqs {
	padding: 0;
	border: 0;
	background: transparent;
}

.my-contact-form-card {
	padding: 20px 25px;
}

.my-contact-faqs h2,
.my-contact-form-card h2 {
	margin: 0 0 22px;
	color: var(--contact-ink);
	font-size: 28px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: 0;
}

.my-contact-faq-list {
	display: grid;
	gap: 14px;
}

.my-contact-faq {
	border: 1px solid rgba(11, 18, 32, 0.08);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}

.my-contact-faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	color: #000;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	list-style: none;
	cursor: pointer;
}

.my-contact-faq summary::-webkit-details-marker {
	display: none;
}

.my-contact-faq__icon {
	position: relative;
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(38, 118, 236, 0.1);
	color: var(--contact-blue);
	transition: transform 240ms var(--contact-ease);
}

.my-contact-faq__icon::before,
.my-contact-faq__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transform: translate(-50%, -50%);
}

.my-contact-faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.my-contact-faq.is-open .my-contact-faq__icon {
	transform: rotate(180deg);
}

.my-contact-faq.is-open .my-contact-faq__icon::after {
	opacity: 0;
}

.my-contact-faq__panel {
	display: block;
	height: auto;
	max-height: 0;
	overflow: hidden;
	transition: max-height 280ms var(--contact-ease);
	will-change: max-height;
}

.my-contact-faq.is-open .my-contact-faq__panel {
	max-height: 1000px;
}

.my-contact-faq__panel p {
	margin: 0;
	padding: 0 20px 20px;
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
	margin-bottom: 0;
}

.my-contact-faq__panel strong {
	color: var(--contact-ink);
	font-weight: 600;
}

.my-contact-faq__panel a {
	color: var(--contact-blue);
	text-decoration: none;
}

.my-contact-form {
	display: grid;
	gap: 16px;
}

.my-contact-hp {
	display: none !important;
}

.my-contact-field label {
	display: inline-flex;
	gap: 6px;
	margin-bottom: 9px;
	color: rgba(11, 18, 32, 0.92);
	font-size: 15px;
	font-weight: 700;
}

.my-contact-field label span {
	color: #c62828;
}

.my-contact-field input,
.my-contact-field textarea {
	width: 100%;
	border: 1px solid rgba(11, 18, 32, 0.14);
	border-radius: 8px;
	background: #fff;
	color: var(--contact-ink);
	font-size: 16px;
	line-height: 1.4;
	outline: none;
	transition: border-color 180ms var(--contact-ease), box-shadow 180ms var(--contact-ease);
}

.my-contact-field input {
	min-height: 48px;
	padding: 0 14px;
}

.my-contact-field textarea {
	min-height: 160px;
	padding: 14px;
	resize: vertical;
}

.my-contact-field.is-invalid input,
.my-contact-field.is-invalid textarea {
	border-color: rgba(198, 40, 40, 0.55);
	box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.1);
}

.my-contact-error {
	display: none;
	margin: 9px 0 0;
	padding: 5px 10px;
	background: #f9e4e8;
	color: #b42318;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
}

.my-contact-error.is-visible {
	display: block;
}

.my-contact-check {
	position: relative;
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 10px;
	align-items: start;
	color: rgba(11, 18, 32, 0.86);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.55;
	cursor: pointer;
}

.my-contact-check input {
	position: absolute;
	top: 2px;
	left: 0;
	width: 18px;
	height: 18px;
	margin: 0;
	opacity: 0;
}

.my-contact-check__box {
	position: relative;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	border: 1px solid rgba(11, 18, 32, 0.22);
	border-radius: 5px;
	background: #fff;
}

.my-contact-check input:checked + .my-contact-check__box {
	border-color: var(--contact-blue);
	background: var(--contact-blue);
}

.my-contact-check input:checked + .my-contact-check__box::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 2px;
	width: 6px;
	height: 10px;
	border: 2px solid #fff;
	border-top: 0;
	border-left: 0;
	transform: rotate(45deg);
}

.my-contact-check a {
	color: var(--contact-blue);
    font-weight: 600;
}

.my-contact-turnstile {
	min-height: 65px;
}

.my-contact-submit {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	width: 100%;
	margin-top: 4px;
	border: 0;
	border-radius: 50px;
	background-image: linear-gradient(90deg, #25aae1, #4481eb, #04befe, #3f86ed);
	background-size: 300% 100%;
	box-shadow: 0 2px 15px 0 rgba(65, 132, 234, 0.75);
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
	margin-bottom: 10px;
}

.my-contact-submit:hover,
.my-contact-submit:focus {
	color: #fff;
	background-position: 100% 0;
	transform: scale(1.05);
	box-shadow: 0 1px 8px 0 rgba(65, 132, 234, 0.85);
}

.my-contact-submit:disabled {
	opacity: 0.42;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
	transition: none;
}

.my-contact-submit:disabled:hover,
.my-contact-submit:disabled:focus {
	background-position: 0 0;
	box-shadow: none;
	color: #fff;
	transform: none;
	transition: none;
}

.my-contact-submit.is-loading,
.my-contact-submit.is-loading:hover,
.my-contact-submit.is-loading:focus {
	background-position: 0 0;
	box-shadow: none;
	cursor: wait;
	transform: none;
}

.my-contact-submit__spinner {
	position: absolute;
	width: 24px;
	height: 24px;
	border: 3px solid rgba(255, 255, 255, 0.45);
	border-top-color: #fff;
	border-radius: 50%;
	opacity: 0;
	animation: myContactSpin 800ms linear infinite;
}

.my-contact-submit.is-loading .my-contact-submit__text {
	visibility: hidden;
}

.my-contact-submit.is-loading .my-contact-submit__spinner {
	opacity: 1;
}

@keyframes myContactSpin {
	to {
		transform: rotate(360deg);
	}
}

.my-contact-note {
	display: none;
	margin: 0;
	padding: 7px 11px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
}

.my-contact-note.is-error {
	display: block;
	background: #f9e4e8;
	color: #b42318;
	font-size: 14px;
    font-weight: 500;
}

.my-contact-note.is-success {
	display: block;
	background: #e6f4ea;
	color: #1a7f37;
}

@media (max-width: 1180px) {
	.my-contact-container {
		max-width: calc(100% - 60px);
	}
}

@media (max-width: 980px) {
	.my-contact-grid {
		grid-template-columns: 1fr;
		gap: 0px;
	}
}

@media (max-width: 720px) {
	.my-contact-container {
		width: calc(100% - 60px);
		max-width: calc(100% - 60px);
		margin-right: 30px;
		margin-left: 30px;
	}

	.my-contact-hero {
		padding: 200px 0 80px;
	}

	.my-contact-head {
		margin-bottom: 38px;
		text-align: center;
	}

	.my-contact-form-card,
	.my-contact-form,
	.my-contact-field,
	.my-contact-consent,
	.my-contact-check,
	.my-contact-turnstile {
		text-align: left;
	}

	.my-contact-head h1 {
		font-size: 40px;
	}

	.my-contact-head p {
		font-size: 17px;
	}


	.my-contact-faqs h2,
	.my-contact-form-card h2 {
		font-size: 24px;
	}

	.my-contact-faq summary {
		padding: 16px;
		text-align: left;
	}

	.my-contact-faq__panel p {
		padding: 0 16px 16px;
		text-align: left;
	}
}
