/**
 * Split from contemporaneo.css
 */

/* —— Contact / FAQ —— */
body.hm-site .hm-contact-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.15rem;
}

body.hm-site .hm-contact-hero .hm-btn--ghost {
	border-color: rgba(255, 255, 255, 0.45);
	color: #fff;
}

body.hm-site .hm-contact-hero .hm-btn--ghost:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

body.hm-site .hm-contact__row {
	display: flex;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid #e5e5e8;
}

body.hm-site .hm-contact__ico {
	width: 44px;
	height: 44px;
	border: 1px solid #e5e5e8;
	background: #f3f3f5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--brand);
	flex-shrink: 0;
}

body.hm-site .hm-contact__ico--wa,
body.hm-site .hm-contact__ico .hm-wa-mark { color: #25d366; }

body.hm-site .hm-form,
body.hm-site .hm-form--contact {
	border: 1px solid #e5e5e8;
	border-top: 3px solid #200c80;
	padding: clamp(1.4rem, 3vw, 2rem);
	background: #fff;
	box-shadow: none;
}

body.hm-site .hm-form input,
body.hm-site .hm-form textarea,
body.hm-site .hm-form select {
	border: 1px solid #e5e5e8;
	border-radius: 0;
	min-height: 48px;
	font-weight: 300;
	background: #f8f8fa;
}

body.hm-site .hm-form input:focus,
body.hm-site .hm-form textarea:focus {
	border-color: var(--brand);
	outline: none;
	background: #fff;
	box-shadow: inset 0 0 0 1px var(--brand);
}

/* Consent checks — no heredar min-height/padding de inputs de texto */
body.hm-site .hm-form__consent input[type="checkbox"] {
	width: 1.125rem;
	height: 1.125rem;
	min-width: 1.125rem;
	min-height: 1.125rem;
	padding: 0;
	border: 2px solid #9a9aa8;
	border-radius: 0;
	background: #fff;
	box-shadow: none;
}
body.hm-site .hm-form__consent input[type="checkbox"]:checked {
	background: #200c80 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2L6.4 11.2L12.5 4.5' stroke='%23fff' stroke-width='2.2' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / 0.75rem 0.75rem no-repeat;
	border-color: #200c80;
	box-shadow: none;
}
body.hm-site .hm-form__consent input[type="checkbox"]:focus,
body.hm-site .hm-form__consent input[type="checkbox"]:focus-visible {
	background: #fff;
	box-shadow: none;
	outline: 2px solid rgba(32, 12, 128, 0.45);
	outline-offset: 2px;
}
body.hm-site .hm-form__consent input[type="checkbox"]:checked:focus,
body.hm-site .hm-form__consent input[type="checkbox"]:checked:focus-visible {
	background: #200c80 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2L6.4 11.2L12.5 4.5' stroke='%23fff' stroke-width='2.2' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / 0.75rem 0.75rem no-repeat;
	border-color: #200c80;
}

body.hm-site .hm-contact-ship {
	background: #200c80;
}

body.hm-site .hm-contact-ship .hm-btn--whatsapp {
	background: var(--hm-wa, #0a6b5c);
	border-color: var(--hm-wa, #0a6b5c);
	color: #fff;
}

body.hm-site .hm-contact-ship .hm-btn--whatsapp:hover {
	background: var(--hm-wa-dark, #08574b);
	border-color: var(--hm-wa-dark, #08574b);
}

@media (max-width: 768px) {
	body.hm-site .hm-contact-hero__actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0.65rem;
		width: 100%;
	}
	body.hm-site .hm-contact-hero__actions .hm-btn {
		width: 100%;
		justify-content: center;
	}
	body.hm-site .hm-form input,
	body.hm-site .hm-form textarea,
	body.hm-site .hm-form select {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}
}

@media (max-width: 420px) {
	body.hm-site .hm-contact-hero__actions {
		grid-template-columns: 1fr;
	}
}

body.hm-site .hm-faq__item {
	border: 1px solid #e5e5e8;
	border-left: 2px solid transparent;
	background: #fff;
	margin-bottom: 0.5rem;
}

body.hm-site .hm-faq__item[open] {
	border-left-color: var(--brand);
}

body.hm-site .hm-faq__q {
	font-weight: 500;
	letter-spacing: -0.01em;
	padding: 1.1rem 1.2rem;
}

