/* ================================================
   Variables del proyecto
   ================================================ */
:root {
	--mwm-color-primary:   var(--wp--preset--color--lz-color-principal);   /* #0040c5 */
	--mwm-color-secondary: var(--wp--preset--color--lz-color-secundario);  /* #000c24 */
	--mwm-color-accent:    var(--wp--preset--color--lz-color-resalto);     /* #fbb03b */
	--mwm-color-primary-hover: var(--wp--preset--color--lz-azul-tenue);   /* #134ac8 */
	--mwm-color-text-muted: var(--wp--preset--color--muted);               /* #6b6b6b */
	--mwm-color-white: #ffffff;
	--mwm-font: 'Ubuntu', sans-serif;
}


/* ================================================
   HERO
   ================================================ */

.wp-block-mwm-hero {
	padding: 50px 56px;
	background: var(--mwm-color-white);
}

.mwm-hero__wrapper {
	position: relative;
	width: 100%;
	max-width: 1328px;
	height: 604px;
	border-radius: 16px;
	overflow: hidden;
	margin: 0 auto;
}

.mwm-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.mwm-hero__content {
	position: absolute;
	left: 88px;
	top: 96px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
	width: 456px;
}

.mwm-hero__text {
	display: flex;
	flex-direction: column;
	gap: 27px;
	width: 100%;
}

.mwm-hero__title {
	font-family: var(--mwm-font);
	font-size: 40px;
	font-weight: 700;
	color: var(--mwm-color-white);
	line-height: 48px;
	letter-spacing: 0;
	margin: 0;
}

.mwm-hero__subtitle {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--mwm-color-white);
	line-height: 24px;
	max-width: 293px;
	margin: 0;
}

.mwm-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 285px;
	height: 48px;
	padding: 8px 24px;
	background-color: var(--mwm-color-accent);
	color: var(--mwm-color-secondary);
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-decoration: none;
	border-radius: 32px;
	white-space: nowrap;
	box-sizing: border-box;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.mwm-hero__btn:hover,
.mwm-hero__btn:focus {
	background-color: var(--mwm-color-primary);
	color: #ffffff;
	text-decoration: none;
}

/* --- Placeholder (editor sin imagen) --- */

.mwm-hero__placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e8edf5;
	border: 2px dashed #a0aec0;
	border-radius: 16px;
	cursor: pointer;
	font-family: var(--mwm-font);
	font-size: 16px;
	color: #4a5568;
	transition: background 0.2s ease;
}

.mwm-hero__placeholder:hover {
	background: #d6e0f0;
}

/* --- Responsive --- */

@media (max-width: 1200px) {
	.wp-block-mwm-hero {
		padding: 50px 24px;
	}
}

@media (max-width: 991px) {
	.mwm-hero__wrapper {
		height: 500px;
	}

	.mwm-hero__content {
		left: 48px;
		top: 60px;
		width: 400px;
	}

	.mwm-hero__title {
		font-size: 32px;
		line-height: 40px;
	}
}

@media (max-width: 767px) {
	.wp-block-mwm-hero {
		padding: 50px 16px;
	}

	.mwm-hero__wrapper {
		height: auto;
		aspect-ratio: 4 / 3;
		min-height: 380px;
	}

	.mwm-hero__content {
		left: 24px;
		top: 32px;
		width: calc(100% - 48px);
		gap: 24px;
	}

	.mwm-hero__title {
		font-size: 24px;
		line-height: 32px;
	}

	.mwm-hero__btn {
		width: 100%;
	}
}


/* ================================================
   TÍTULO TEXTO
   ================================================ */

.wp-block-mwm-titulo-texto {
	padding: 50px 0;
}

.mwm-titulo-texto__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 168px;
	display: flex;
	align-items: flex-start;
	gap: 128px;
}

.mwm-titulo-texto__title {
	width: 432px;
	flex-shrink: 0;
	font-family: var(--mwm-font);
	font-size: 40px;
	font-weight: 700;
	color: var(--mwm-color-primary);
	line-height: 48px;
	letter-spacing: 0;
	margin: 0;
}

.mwm-titulo-texto__col {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	min-width: 0;
}

.mwm-titulo-texto__text {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--mwm-color-secondary);
	line-height: 24px;
	margin: 0;
	max-width: 544px;
}

.mwm-titulo-texto__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 24px;
	background-color: var(--mwm-color-accent);
	color: var(--mwm-color-secondary);
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-decoration: none;
	border-radius: 32px;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.mwm-titulo-texto__btn:hover,
.mwm-titulo-texto__btn:focus {
	background-color: var(--mwm-color-primary);
	color: #ffffff;
	text-decoration: none;
}

/* --- Responsive --- */

@media (max-width: 1200px) {
	.mwm-titulo-texto__inner {
		padding: 0 40px;
		gap: 64px;
	}

	.mwm-titulo-texto__title {
		width: auto;
		flex: 1;
	}
}

@media (max-width: 767px) {
	.wp-block-mwm-titulo-texto {
		padding: 50px 0;
	}

	.mwm-titulo-texto__inner {
		flex-direction: column;
		padding: 0 20px;
		gap: 32px;
	}

	.mwm-titulo-texto__title {
		width: auto;
		font-size: 28px;
		line-height: 36px;
	}

	.mwm-titulo-texto__btn {
		justify-content: center;
	}
}


/* ================================================
   SOLUCIONES
   ================================================ */

.wp-block-mwm-soluciones {
	padding: 50px 56px;
}

.mwm-soluciones__inner {
	width: 100%;
	max-width: 1104px;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	gap: 80px;
}

/* Imagen lateral */
.mwm-soluciones__media {
	width: 432px;
	flex-shrink: 0;
	align-self: stretch;
	margin: 0;
}

.mwm-soluciones__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	border-radius: 16px;
}

.mwm-soluciones__img-placeholder {
	width: 100%;
	height: 100%;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e8edf5;
	border: 2px dashed #a0aec0;
	border-radius: 16px;
	cursor: pointer;
	font-family: var(--mwm-font);
	font-size: 16px;
	color: #4a5568;
}

/* Columna de contenido */
.mwm-soluciones__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 40px;
	min-width: 0;
}

.mwm-soluciones__header {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mwm-soluciones__title {
	font-family: var(--mwm-font);
	font-size: 40px;
	font-weight: 700;
	color: var(--mwm-color-primary);
	line-height: 48px;
	letter-spacing: 0;
	margin: 0;
}

.mwm-soluciones__subtitle {
	font-family: var(--mwm-font);
	font-size: 24px;
	font-weight: 700;
	color: var(--mwm-color-primary);
	line-height: 32px;
	margin: 0;
}

/* Acordeón FAQ */
.mwm-soluciones__faqs {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.mwm-soluciones__faq-item {
	width: 100%;
	background: #f8f8f8;
	border-radius: 16px;
	padding: 16px 32px;
	box-sizing: border-box;
}

.mwm-soluciones__faq-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	list-style: none;
	gap: 16px;
}

.mwm-soluciones__faq-header::-webkit-details-marker {
	display: none;
}

.mwm-soluciones__faq-question {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 700;
	color: var(--mwm-color-primary);
	line-height: 24px;
	flex: 1;
}

.mwm-soluciones__faq-toggle {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	background: var(--mwm-color-primary);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Íconos + y − */
.mwm-soluciones__faq-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.mwm-soluciones__faq-icon--minus {
	display: none;
}

.mwm-soluciones__faq-item[open] .mwm-soluciones__faq-icon--plus {
	display: none;
}

.mwm-soluciones__faq-item[open] .mwm-soluciones__faq-icon--minus {
	display: flex;
}

.mwm-soluciones__faq-answer {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--mwm-color-primary);
	line-height: 24px;
	margin: 20px 0 0;
}

/* --- Responsive --- */

@media (max-width: 1200px) {
	.wp-block-mwm-soluciones {
		padding: 50px 24px;
	}

	.mwm-soluciones__inner {
		gap: 48px;
	}

	.mwm-soluciones__media {
		width: 340px;
	}
}

@media (max-width: 991px) {
	.mwm-soluciones__inner {
		flex-direction: column;
		gap: 40px;
	}

	.mwm-soluciones__media {
		width: 100%;
		align-self: auto;
	}

	.mwm-soluciones__img {
		height: 300px;
	}

	.mwm-soluciones__title {
		font-size: 32px;
		line-height: 40px;
	}

	.mwm-soluciones__subtitle {
		font-size: 20px;
		line-height: 28px;
	}
}

@media (max-width: 599px) {
	.wp-block-mwm-soluciones {
		padding: 50px 16px;
	}

	.mwm-soluciones__title {
		font-size: 24px;
		line-height: 32px;
	}

	.mwm-soluciones__faq-item {
		padding: 16px 20px;
	}
}


/* ================================================
   NOS ADAPTAMOS
   ================================================ */

.wp-block-mwm-nos-adaptamos {
	padding: 50px 56px;
}

.mwm-nos-adaptamos__inner {
	width: 100%;
	max-width: 1104px;
	margin: 0 auto;
	background: var(--mwm-color-primary);
	border-radius: 16px;
	padding: 80px;
	display: flex;
	align-items: flex-start;
	gap: 72px;
	box-sizing: border-box;
}

/* Columna izquierda */
.mwm-nos-adaptamos__col-text {
	flex-shrink: 0;
	width: 392px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.mwm-nos-adaptamos__title {
	font-family: var(--mwm-font);
	font-size: 40px;
	font-weight: 700;
	color: var(--mwm-color-white);
	line-height: 48px;
	letter-spacing: 0;
	margin: 0;
}

.mwm-nos-adaptamos__body {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.mwm-nos-adaptamos__desc {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--mwm-color-white);
	line-height: 24px;
	margin: 0;
}

.mwm-nos-adaptamos__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 0;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.mwm-nos-adaptamos__cta:hover,
.mwm-nos-adaptamos__cta:focus {
	opacity: 0.8;
	text-decoration: none;
}

.mwm-nos-adaptamos__cta-text {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--mwm-color-accent);
	line-height: 24px;
	white-space: nowrap;
}

.mwm-nos-adaptamos__cta-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.mwm-nos-adaptamos__cta-icon svg {
	display: block;
}

/* Columna derecha — grid de sectores */
.mwm-nos-adaptamos__sectors {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-content: flex-start;
}

.mwm-nos-adaptamos__sector-card {
	width: calc(50% - 8px);
	background: var(--mwm-color-primary-hover);
	border-radius: 8px;
	padding: 16px;
	display: flex;
	align-items: center;
	gap: 16px;
	box-sizing: border-box;
}

.mwm-nos-adaptamos__sector-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}

.mwm-nos-adaptamos__sector-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.mwm-nos-adaptamos__sector-label {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--mwm-color-white);
	line-height: 24px;
}

/* Editor preview */
.mwm-nos-adaptamos__sector-icon-label {
	font-family: var(--mwm-font);
	font-size: 11px;
	color: rgba(255,255,255,0.5);
	flex-shrink: 0;
}

/* --- Responsive --- */

@media (max-width: 1200px) {
	.wp-block-mwm-nos-adaptamos {
		padding: 50px 24px;
	}

	.mwm-nos-adaptamos__inner {
		padding: 60px 48px;
		gap: 48px;
	}
}

@media (max-width: 991px) {
	.mwm-nos-adaptamos__inner {
		flex-direction: column;
		gap: 40px;
	}

	.mwm-nos-adaptamos__col-text {
		width: 100%;
	}

	.mwm-nos-adaptamos__sectors {
		width: 100%;
	}
}

@media (max-width: 599px) {
	.wp-block-mwm-nos-adaptamos {
		padding: 50px 16px;
	}

	.mwm-nos-adaptamos__inner {
		padding: 40px 24px;
	}

	.mwm-nos-adaptamos__title {
		font-size: 28px;
		line-height: 36px;
	}

	.mwm-nos-adaptamos__sector-card {
		width: 100%;
	}
}


/* ================================================
   SERVICIOS
   ================================================ */

.wp-block-mwm-servicios {
	padding: 50px 56px;
}

.mwm-servicios__grid {
	width: 100%;
	max-width: 1104px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.mwm-servicios__card {
	width: calc(25% - 12px);
	flex-shrink: 0;
	border: 1px solid #f8f8f8;
	border-radius: 16px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	box-sizing: border-box;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	text-decoration: none;
}

.mwm-servicios__card:hover {
	background-color: var(--mwm-color-primary);
	border-color: var(--mwm-color-primary);
	box-shadow: 3px 4px 13px 0px rgba(0, 43, 255, 0.4);
}

.mwm-servicios__card:hover .mwm-servicios__title,
.mwm-servicios__card:hover .mwm-servicios__desc {
	color: #ffffff;
}

.mwm-servicios__icon {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
}

.mwm-servicios__icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.mwm-servicios__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mwm-servicios__title {
	font-family: var(--mwm-font);
	font-size: 24px;
	font-weight: 700;
	color: var(--mwm-color-primary);
	line-height: 32px;
	letter-spacing: 0;
	margin: 0;
	transition: color 0.2s ease;
}

.mwm-servicios__desc {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--mwm-color-primary);
	line-height: 24px;
	margin: 0;
	transition: color 0.2s ease;
}

/* Editor preview: etiqueta de icono */
.mwm-servicios__icon-label {
	font-family: var(--mwm-font);
	font-size: 12px;
	color: var(--mwm-color-text-muted);
	padding: 4px 0;
}

/* --- Responsive --- */

@media (max-width: 1200px) {
	.wp-block-mwm-servicios {
		padding: 50px 24px;
	}
}

@media (max-width: 991px) {
	.mwm-servicios__card {
		width: calc(50% - 8px);
	}
}

@media (max-width: 599px) {
	.wp-block-mwm-servicios {
		padding: 50px 16px;
	}

	.mwm-servicios__card {
		width: 100%;
	}
}

/* ==============================================
   BANNER FOTO
   ============================================== */

.wp-block-mwm-banner-foto {
	width: 100%;
}

.mwm-banner-foto__img {
	display: block;
	width: 100%;
	height: 424px;
	object-fit: cover;
	object-position: center;
}

.mwm-banner-foto__placeholder {
	width: 100%;
	height: 424px;
	background: #e8edf5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mwm-banner-foto__placeholder span {
	font-family: var(--mwm-font);
	font-size: 16px;
	color: var(--mwm-color-text-muted);
}

/* --- Responsive --- */

@media (max-width: 991px) {
	.mwm-banner-foto__img,
	.mwm-banner-foto__placeholder {
		height: 300px;
	}
}

@media (max-width: 599px) {
	.mwm-banner-foto__img,
	.mwm-banner-foto__placeholder {
		height: 220px;
	}
}

/* ==============================================
   CONÓCENOS — TÍTULO Y TEXTO
   ============================================== */

.wp-block-mwm-conocenos-titulo-texot {
	padding: 50px 0;
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 100%;
}

.mwm-ctt__heading-row {
	padding: 0 168px;
}

.mwm-ctt__heading {
	max-width: 495px;
	font-family: var(--mwm-font);
	font-size: 48px;
	font-weight: 400;
	color: var(--mwm-color-primary);
	line-height: 56px;
	letter-spacing: 0;
	margin: 0;
}

.mwm-ctt__text-row {
	padding: 0 168px;
	display: flex;
	justify-content: flex-end;
}

.mwm-ctt__text-col {
	width: 544px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.mwm-ctt__lead {
	font-family: var(--mwm-font);
	font-size: 32px;
	font-weight: 400;
	color: var(--mwm-color-primary);
	line-height: 40px;
	margin: 0;
}

.mwm-ctt__body {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--mwm-color-dark);
	line-height: 24px;
	margin: 0;
}

.mwm-ctt__body strong {
	font-weight: 700;
}

/* --- Responsive --- */

@media (max-width: 1200px) {
	.mwm-ctt__heading-row,
	.mwm-ctt__text-row {
		padding: 0 48px;
	}
}

@media (max-width: 991px) {
	.mwm-ctt__heading-row,
	.mwm-ctt__text-row {
		padding: 0 24px;
	}

	.mwm-ctt__text-row {
		justify-content: flex-start;
	}

	.mwm-ctt__text-col {
		width: 100%;
	}

	.mwm-ctt__heading {
		font-size: 36px;
		line-height: 44px;
	}

	.mwm-ctt__lead {
		font-size: 24px;
		line-height: 32px;
	}
}

@media (max-width: 599px) {
	.mwm-ctt__heading-row,
	.mwm-ctt__text-row {
		padding: 0 16px;
	}

	.mwm-ctt__heading {
		font-size: 28px;
		line-height: 36px;
	}

	.mwm-ctt__lead {
		font-size: 20px;
		line-height: 28px;
	}
}

/* ==============================================
   SITE FOOTER
   ============================================== */

.site-footer {
	width: 100%;
	background: var(--mwm-color-primary);
}

.site-footer__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 96px 168px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/* Top row */

.site-footer__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 56px;
}

/* Brand column */

.site-footer__brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	flex-shrink: 0;
	max-width: 262px;
}

.site-footer__logo {
	display: flex;
	text-decoration: none;
}

.site-footer__logo svg {
	width: 200px;
	height: auto;
}

.site-footer__contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}

.site-footer__address {
	font-style: normal;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.site-footer__address p,
.site-footer__address a {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
	line-height: 24px;
	margin: 0;
}

.site-footer__address a {
	text-decoration: underline;
}

.site-footer__address a:hover {
	opacity: 0.8;
}

.site-footer__social {
	display: flex;
	align-items: center;
	gap: 16px;
}

.site-footer__social-label {
	font-family: var(--mwm-font);
	font-size: 12px;
	font-weight: 400;
	color: #ffffff;
	line-height: 16px;
}

.site-footer__social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	transition: opacity 0.2s ease;
}

.site-footer__social-icon:hover {
	opacity: 0.7;
}

/* Nav columns */

.site-footer__nav {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 56px;
}

.site-footer__nav-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.site-footer__nav-heading {
	font-family: var(--mwm-font);
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	line-height: 32px;
	margin: 0 0 4px;
}

.site-footer__nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.site-footer__nav-list li a {
	font-family: var(--mwm-font);
	font-size: 14px;
	font-weight: 400;
	color: #ffffff;
	text-decoration: none;
	line-height: 24px;
	padding: 8px 0;
	display: block;
	transition: opacity 0.2s ease;
}

.site-footer__nav-list li a:hover {
	opacity: 0.7;
}

/* Bottom */

.site-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.site-footer__divider {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	margin: 0;
}

.site-footer__bottom-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 136px;
}

.site-footer__cert-info {
	display: flex;
	flex-direction: column;
	gap: 16px;
	flex: 1 1 0;
}

.site-footer__certifications {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.site-footer__certifications img {
	display: block;
	max-height: 48px;
	width: auto;
	height: auto;
	object-fit: contain;
	opacity: 0.9;
}

.site-footer__roesba-text {
	font-family: var(--mwm-font);
	font-size: 12px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	line-height: 16px;
	margin: 0;
}

.site-footer__legal {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.site-footer__copyright {
	font-family: var(--mwm-font);
	font-size: 12px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	line-height: 16px;
	margin: 0;
}

.site-footer__legal-links {
	display: flex;
	align-items: center;
}

.site-footer__legal-list {
	display: flex;
	align-items: center;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__legal-list li a {
	font-family: var(--mwm-font);
	font-size: 12px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	line-height: 16px;
	text-decoration: none;
	transition: color 0.2s;
}

.site-footer__legal-list li a:hover {
	color: #fff;
}

.site-footer__badge-seipa {
	flex-shrink: 0;
}

.site-footer__badge-seipa img {
	display: block;
	width: 264px;
	height: 29px;
	opacity: 0.9;
}

/* --- Responsive --- */

@media (max-width: 1200px) {
	.site-footer__inner {
		padding: 72px 48px;
	}
}

@media (max-width: 991px) {
	.site-footer__inner {
		padding: 56px 24px;
	}

	.site-footer__top {
		flex-direction: column;
		gap: 40px;
	}

	.site-footer__nav {
		width: 100%;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 40px;
	}

	.site-footer__bottom-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 32px;
	}

	.site-footer__badge-seipa img {
		width: 200px;
		height: auto;
	}

	.site-footer__legal {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.site-footer__legal-list {
		flex-wrap: wrap;
		gap: 8px 16px;
	}
}

@media (max-width: 599px) {
	.site-footer__inner {
		padding: 48px 16px;
	}

	.site-footer__nav {
		flex-direction: column;
		gap: 32px;
	}

	.site-footer__logo svg {
		width: 160px;
	}
}

/* ==============================================
   SITE HEADER
   ============================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100%;
	background: #ffffff;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	max-width: 1440px;
	margin: 0 auto;
	padding: 16px 56px;
	box-sizing: border-box;
}

.site-header__logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	text-decoration: none;
}

.site-header__logo svg {
	width: 220px;
	height: auto;
}

/* Nav */

.site-header__nav {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

.site-header__nav-list {
	display: flex;
	align-items: center;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-header__nav-list li a {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--mwm-color-dark);
	text-decoration: none;
	line-height: 24px;
	padding: 12px 0;
	display: block;
	transition: color 0.2s ease;
}

.site-header__nav-list > li > a:hover,
.site-header__nav-list > li.current-menu-item > a {
	color: var(--mwm-color-accent);
}

/* Sub-menu dropdown */

.site-header__nav-list li.menu-item-has-children {
	position: relative;
}

.site-header__nav-list li.menu-item-has-children > a {
	display: flex;
	align-items: center;
	gap: 4px;
}

.site-header__nav-list li.menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 8px;
	height: 5px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 8 5' fill='none'%3E%3Cpath d='M1 1L4 4L7 1' stroke='%23001A40' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.site-header__nav-list li.menu-item-has-children:hover > a::after {
	transform: rotate(180deg);
}

.site-header__nav-list .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: var(--mwm-color-primary);
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 12, 36, 0.24);
	padding: 12px 0 8px;
	list-style: none;
	margin: 0;
	z-index: 200;
}

.site-header__nav-list li.menu-item-has-children:hover > .sub-menu {
	display: block;
}

.site-header__nav-list .sub-menu li a {
	font-size: 15px;
	padding: 10px 20px;
	white-space: nowrap;
	color: #ffffff;
}

.site-header__nav-list .sub-menu li a:hover {
	color: #ffffff;
	text-decoration: underline;
}

/* CTA button */

.site-header__cta {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--mwm-color-primary);
	color: #ffffff;
	font-family: var(--mwm-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	text-decoration: none;
	border-radius: 24px;
	padding: 8px 16px;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.site-header__cta:hover {
	background: var(--mwm-color-accent);
	color: var(--mwm-color-secondary);
}

/* Hamburger */

.site-header__burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
}

.site-header__burger-bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--mwm-color-dark);
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header__burger.is-active .site-header__burger-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.site-header__burger.is-active .site-header__burger-bar:nth-child(2) {
	opacity: 0;
}
.site-header__burger.is-active .site-header__burger-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* --- Responsive --- */

@media (max-width: 991px) {
	.site-header__inner {
		padding: 16px 24px;
	}

	.site-header__logo svg {
		width: 160px;
	}

	.site-header__burger {
		display: flex;
	}

	.site-header__nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #ffffff;
		box-shadow: 0 8px 24px rgba(0, 12, 36, 0.12);
		padding: 16px 24px 24px;
	}

	.site-header__nav.is-open {
		display: flex;
		flex-direction: column;
	}

	.site-header__nav-list {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: 100%;
	}

	.site-header__nav-list li {
		width: 100%;
		border-bottom: 1px solid rgba(0, 12, 36, 0.08);
	}

	.site-header__nav-list li:last-child {
		border-bottom: none;
	}

	.site-header__nav-list li a {
		padding: 14px 0;
	}

	.site-header__nav-list li.menu-item-has-children > .sub-menu {
		display: none;
		position: static;
		box-shadow: none;
		border-radius: 0;
		padding: 4px 0 4px 16px;
		background: var(--mwm-color-primary);
	}

	.site-header__nav-list li.menu-item-has-children.is-open > .sub-menu {
		display: block;
	}

	.site-header__nav-list li.menu-item-has-children.is-open > a::after {
		transform: rotate(180deg);
	}

	.site-header__nav-list .sub-menu li {
		border-bottom: none;
	}

	.site-header__cta {
		display: none;
	}
}

@media (max-width: 599px) {
	.site-header__inner {
		padding: 12px 16px;
	}

	.site-header__logo svg {
		width: 140px;
	}
}

/* ==============================================
   CONTACTA NOSOTROS
   ============================================== */

.wp-block-mwm-contacta-nosotros {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 50px 24px;
	box-sizing: border-box;
}

.mwm-contacta-nosotros__inner {
	width: 100%;
	max-width: 1104px;
	background: #f8f8f8;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	padding: 40px 48px;
	box-sizing: border-box;
}

.mwm-contacta-nosotros__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	max-width: 640px;
	width: 100%;
	text-align: center;
}

.mwm-contacta-nosotros__title {
	font-family: var(--mwm-font);
	font-size: 40px;
	font-weight: 700;
	color: var(--mwm-color-primary);
	line-height: 48px;
	letter-spacing: 0;
	margin: 0;
}

.mwm-contacta-nosotros__description {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--mwm-color-dark);
	line-height: 24px;
	margin: 0;
}

.mwm-contacta-nosotros__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--mwm-color-accent);
	color: var(--mwm-color-dark);
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-decoration: none;
	border-radius: 32px;
	padding: 8px 24px;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.mwm-contacta-nosotros__btn:hover {
	background-color: var(--mwm-color-primary);
	color: #ffffff;
}

/* --- Responsive --- */

@media (max-width: 991px) {
	.mwm-contacta-nosotros__title {
		font-size: 32px;
		line-height: 40px;
	}
}

@media (max-width: 599px) {
	.wp-block-mwm-contacta-nosotros {
		padding: 50px 16px;
	}

	.mwm-contacta-nosotros__inner {
		padding: 32px 24px;
	}

	.mwm-contacta-nosotros__title {
		font-size: 28px;
		line-height: 36px;
	}
}

/* ============================================================
   CONÓCENOS — BANNER AZUL CON LOGO
   ============================================================ */

.wp-block-mwm-banner-azul-con-logo {
	padding: 50px 24px;
	display: flex;
	justify-content: center;
}

.mwm-bal__card {
	background: var(--mwm-color-primary);
	border-radius: 16px;
	padding: 56px 152px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	width: 100%;
	max-width: 1104px;
	box-sizing: border-box;
}

.mwm-bal__logo {
	display: flex;
	align-items: center;
	gap: 16px;
}

.mwm-bal__logo svg {
	flex-shrink: 0;
}

.mwm-bal__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}

.mwm-bal__heading {
	color: #ffffff;
	font-family: var(--mwm-font);
	font-size: 32px;
	font-weight: 700;
	line-height: 40px;
	margin: 0;
}

.mwm-bal__body {
	color: #ffffff;
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	margin: 0;
	max-width: 800px;
}

.mwm-bal__body strong {
	font-weight: 700;
}

/* --- Responsive --- */

@media (max-width: 991px) {
	.mwm-bal__card {
		padding: 48px 64px;
	}

	.mwm-bal__heading {
		font-size: 28px;
		line-height: 36px;
	}
}

@media (max-width: 599px) {
	.wp-block-mwm-banner-azul-con-logo {
		padding: 50px 16px;
	}

	.mwm-bal__card {
		padding: 40px 24px;
	}

	.mwm-bal__heading {
		font-size: 24px;
		line-height: 32px;
	}
}

/* ============================================================
   CONÓCENOS — IMAGEN CON TEXTO
   ============================================================ */

.wp-block-mwm-imagen-con-texto {
	padding: 50px 24px;
	display: flex;
	justify-content: center;
}

.mwm-ict__inner {
	display: flex;
	align-items: flex-start;
	gap: 80px;
	width: 100%;
	max-width: 1104px;
}

.mwm-ict__text-col {
	width: 480px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.mwm-ict__text-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mwm-ict__heading {
	font-family: var(--mwm-font);
	font-size: 32px;
	font-weight: 400;
	color: var(--mwm-color-primary);
	line-height: 40px;
	margin: 0;
}

.mwm-ict__body {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--mwm-color-dark);
	line-height: 24px;
	margin: 0;
}

.mwm-ict__body strong {
	font-weight: 700;
}

.mwm-ict__list {
	line-height: 24px;
}

.mwm-ict__btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: var(--mwm-color-accent);
	color: var(--mwm-color-dark);
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-decoration: none;
	border-radius: 32px;
	padding: 8px 24px;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease;
	align-self: flex-start;
}

.mwm-ict__btn:hover {
	background-color: var(--mwm-color-primary);
	color: #ffffff;
}

.mwm-ict__media-col {
	flex: 1 1 0;
	align-self: stretch;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.mwm-ict__img {
	flex: 1 1 0;
	width: 100%;
	min-height: 200px;
	object-fit: cover;
	object-position: center;
	display: block;
	border-radius: 16px;
}

.mwm-ict__img-banner {
	background: var(--mwm-color-primary);
	border-radius: 8px;
	padding: 24px;
	flex-shrink: 0;
}

.mwm-ict__img-banner-text {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 700;
	color: var(--mwm-color-white);
	line-height: 24px;
	margin: 0;
}

.mwm-ict__img-placeholder {
	width: 100%;
	height: 100%;
	min-height: 300px;
	background: #e8e8e8;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: 14px;
}

/* --- Responsive --- */

@media (max-width: 991px) {
	.mwm-ict__inner {
		flex-direction: column;
		gap: 40px;
	}

	.mwm-ict__text-col {
		width: 100%;
	}

	.mwm-ict__media-col {
		width: 100%;
		align-self: auto;
	}

	.mwm-ict__img {
		flex: none;
		height: 360px;
	}

	.mwm-ict__img-placeholder {
		height: 360px;
		min-height: 0;
	}

	.mwm-ict__heading {
		font-size: 28px;
		line-height: 36px;
	}
}

@media (max-width: 599px) {
	.wp-block-mwm-imagen-con-texto {
		padding: 50px 16px;
	}

	.mwm-ict__inner {
		gap: 32px;
	}

	.mwm-ict__heading {
		font-size: 24px;
		line-height: 32px;
	}

	.mwm-ict__img {
		flex: none;
		height: 260px;
	}
}

/* imagen a la izquierda */
.wp-block-mwm-imagen-con-texto.has-image-left .mwm-ict__inner {
	flex-direction: row-reverse;
}

/* body RichText — permite listas y párrafos */
.mwm-ict__body ul,
.mwm-ict__body ol {
	padding-left: 20px;
	margin: 8px 0;
}

.mwm-ict__body li {
	margin-bottom: 4px;
}

.mwm-ict__body p {
	margin: 0 0 8px;
}

.mwm-ict__body p:last-child {
	margin-bottom: 0;
}

/* =========================================================
   SERVICIOS — TÍTULO DE SERVICIO
   ========================================================= */

.wp-block-mwm-titulo-servicio {
	padding: 50px 168px 0;
}

.mwm-ts__inner {
	display: flex;
	align-items: center;
	gap: 24px;
}

.mwm-ts__icon {
	width: 34px;
	height: 42px;
	flex-shrink: 0;
	color: var(--mwm-color-accent);
}

.mwm-ts__icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.mwm-ts__heading {
	font-family: var(--mwm-font);
	font-size: 48px;
	font-weight: 400;
	line-height: 56px;
	color: var(--mwm-color-primary);
	margin: 0;
}

@media (max-width: 991px) {
	.wp-block-mwm-titulo-servicio {
		padding: 50px 40px 0;
	}

	.mwm-ts__heading {
		font-size: 36px;
		line-height: 44px;
	}
}

@media (max-width: 599px) {
	.wp-block-mwm-titulo-servicio {
		padding: 40px 16px 0;
	}

	.mwm-ts__heading {
		font-size: 28px;
		line-height: 36px;
	}
}

/* =========================================================
   SERVICIOS — IMAGEN, TEXTO CON LOGOS
   ========================================================= */

.wp-block-mwm-img-texto-con-logos {
	padding: 50px 168px;
}

.mwm-itcl__inner {
	display: flex;
	align-items: flex-start;
	gap: 80px;
}

.mwm-itcl__col-text {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
}

.mwm-itcl__header {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mwm-itcl__subheading {
	font-family: var(--mwm-font);
	font-size: 32px;
	font-weight: 400;
	line-height: 40px;
	color: var(--mwm-color-primary);
	margin: 0;
}

.mwm-itcl__body {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--mwm-color-secondary);
	margin: 0;
}

.mwm-itcl__highlight {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: var(--mwm-color-primary);
	margin: 0;
}

.mwm-itcl__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 24px;
	background-color: var(--mwm-color-accent);
	color: var(--mwm-color-secondary);
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	border-radius: 32px;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.mwm-itcl__btn:hover {
	background-color: var(--mwm-color-primary);
	color: #ffffff;
}

.mwm-itcl__badge {
	display: flex;
	align-items: center;
	gap: 60px;
	padding: 16px 48px;
	background-color: #f8f8f8;
	border-radius: 16px;
}

.mwm-itcl__badge-logo {
	width: 150px;
	height: 40px;
	flex-shrink: 0;
	color: var(--mwm-color-primary);
}

.mwm-itcl__badge-logo svg {
	width: 100%;
	height: 100%;
	display: block;
}

.mwm-itcl__badge-text {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mwm-itcl__badge-label {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: var(--mwm-color-secondary);
	margin: 0;
}

.mwm-itcl__badge-code {
	font-family: var(--mwm-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: var(--mwm-color-primary);
	margin: 0;
}

.mwm-itcl__media-col {
	flex: 1 1 0;
}

.mwm-itcl__img {
	width: 100%;
	height: 512px;
	object-fit: cover;
	object-position: center;
	display: block;
	border-radius: 16px;
}

.mwm-itcl__img-placeholder {
	width: 100%;
	height: 512px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #e8e8e8;
	border-radius: 16px;
	color: #999;
}


.mwm-itcl__list-area .wp-block-list {
	font-family: var(--mwm-font, 'Ubuntu', sans-serif);
	font-size: 16px;
	line-height: 28px;
	color: var(--mwm-color-text, #1a1a1a);
	padding-left: 1.5em;
	margin: 0;
}

.mwm-itcl__list-area .wp-block-list li {
	margin-bottom: 8px;
}

.mwm-itcl__list-area .wp-block-list li:last-child {
	margin-bottom: 0;
}

.mwm-itcl__list-area .wp-block-list li::marker {
	color: var(--mwm-color-primary);
}

@media (max-width: 991px) {
	.wp-block-mwm-img-texto-con-logos {
		padding: 50px 40px;
	}

	.mwm-itcl__inner {
		flex-direction: column;
		gap: 48px;
	}

	.mwm-itcl__col-text {
		width: 100%;
	}

	.mwm-itcl__media-col {
		width: 100%;
	}

	.mwm-itcl__img,
	.mwm-itcl__img-placeholder {
		height: 360px;
	}

	.mwm-itcl__badge {
		gap: 32px;
		padding: 16px 24px;
	}
}

@media (max-width: 599px) {
	.wp-block-mwm-img-texto-con-logos {
		padding: 40px 16px;
	}

	.mwm-itcl__subheading {
		font-size: 24px;
		line-height: 32px;
	}

	.mwm-itcl__badge {
		flex-direction: column;
		gap: 16px;
		padding: 16px 20px;
	}

	.mwm-itcl__img,
	.mwm-itcl__img-placeholder {
		height: 260px;
	}
}

/* =========================================================
   SERVICIOS — BANNER CON LOGOS DE SECTORES
   ========================================================= */

.wp-block-mwm-banner-con-logos {
	padding: 50px 168px;
}

.mwm-bcl__inner {
	background-color: var(--mwm-color-primary);
	border-radius: 16px;
	padding: 56px 80px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.mwm-bcl__heading {
	font-family: var(--mwm-font);
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	color: var(--mwm-color-white);
	margin: 0;
}

.mwm-bcl__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.mwm-bcl__card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	background-color: var(--mwm-color-primary-hover);
	border-radius: 8px;
}

.mwm-bcl__card-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	color: var(--mwm-color-accent);
}

.mwm-bcl__card-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.mwm-bcl__card-label {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--mwm-color-white);
}

@media (max-width: 991px) {
	.wp-block-mwm-banner-con-logos {
		padding: 50px 40px;
	}

	.mwm-bcl__inner {
		padding: 40px 32px;
	}

	.mwm-bcl__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 599px) {
	.wp-block-mwm-banner-con-logos {
		padding: 40px 16px;
	}

	.mwm-bcl__inner {
		padding: 32px 20px;
	}

	.mwm-bcl__grid {
		grid-template-columns: 1fr;
	}

	.mwm-bcl__heading {
		font-size: 20px;
		line-height: 28px;
	}
}

/* =========================================================
   SERVICIOS — FORMULARIO DE CONTACTO (LANDING)
   ========================================================= */

.wp-block-mwm-formulario-contacto-landing {
	padding: 50px 168px;
}

.mwm-fcl__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 56px;
	background-color: #f8f8f8;
	border-radius: 16px;
	padding: 56px;
}

/* — Columna izquierda — */

.mwm-fcl__col-info {
	width: 349px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.mwm-fcl__text-group {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mwm-fcl__heading {
	font-family: var(--mwm-font);
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	color: var(--mwm-color-primary);
	margin: 0;
}

.mwm-fcl__body {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--mwm-color-secondary);
	margin: 0;
}

.mwm-fcl__phone-card {
	display: flex;
	flex-direction: column;
	padding: 8px 24px;
	background-color: var(--mwm-color-primary);
	border-radius: 8px;
}

.mwm-fcl__phone-label {
	font-family: var(--mwm-font);
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	color: var(--mwm-color-white);
}

.mwm-fcl__phone-number {
	font-family: var(--mwm-font);
	font-size: 40px;
	font-weight: 700;
	line-height: 48px;
	color: var(--mwm-color-accent);
	text-decoration: none;
}

.mwm-fcl__phone-number:hover {
	opacity: 0.85;
}

/* — Columna derecha: formulario CF7 — */

.mwm-fcl__col-form {
	flex: 1 1 0;
}

.mwm-fcl__no-form {
	color: #717171;
	font-style: italic;
}

/* ---- Contact Form 7 — estructura real del HTML generado ----
   CF7 envuelve cada campo en <p><span.wpcf7-form-control-wrap>
   Los [acceptance] dejan el texto FUERA del span, como texto suelto en el <p>
   Los párrafos RGPD son <p> independientes tras <p class="mwm-cf7-rgpd">
   ---------------------------------------------------------------- */

/* Contenedor principal */
.mwm-fcl__col-form .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Reset de <p> y <br> que CF7 inserta */
.mwm-fcl__col-form .wpcf7-form p {
	margin: 0;
}
.mwm-fcl__col-form .wpcf7-form br {
	display: none;
}

/* --- Filas de 2 columnas ---
   Estructura real: <div.mwm-cf7-row> > <p> > span + span
   El flex va en el <p>, no en el div */
.mwm-fcl__col-form .wpcf7-form .mwm-cf7-row > p {
	display: flex;
	gap: 24px;
	margin: 0;
}

/* Los wpcf7-form-control-wrap dentro de la fila son los flex items */
.mwm-fcl__col-form .wpcf7-form .mwm-cf7-row > p > .wpcf7-form-control-wrap {
	flex: 1 1 0;
	min-width: 0;
	display: block;
}

/* --- Campos de texto fuera de fila (textarea, etc.) ---
   wpcf7-form-control-wrap debe ser block y ocupar todo el ancho */
.mwm-fcl__col-form .wpcf7-form > p > .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

/* --- Inputs y textarea --- */
.mwm-fcl__col-form .wpcf7-form input[type="text"],
.mwm-fcl__col-form .wpcf7-form input[type="tel"],
.mwm-fcl__col-form .wpcf7-form input[type="email"],
.mwm-fcl__col-form .wpcf7-form textarea {
	display: block;
	width: 100%;
	height: 56px;
	background: transparent;
	border: none;
	border-bottom: 1px solid #717171;
	border-radius: 0;
	padding: 16px 0;
	font-family: var(--mwm-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: var(--mwm-color-secondary);
	outline: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
}

.mwm-fcl__col-form .wpcf7-form input::placeholder,
.mwm-fcl__col-form .wpcf7-form textarea::placeholder {
	color: #717171;
}

.mwm-fcl__col-form .wpcf7-form input[type="text"]:focus,
.mwm-fcl__col-form .wpcf7-form input[type="tel"]:focus,
.mwm-fcl__col-form .wpcf7-form input[type="email"]:focus,
.mwm-fcl__col-form .wpcf7-form textarea:focus {
	border-bottom-color: var(--mwm-color-primary);
}

.mwm-fcl__col-form .wpcf7-form input.wpcf7-not-valid,
.mwm-fcl__col-form .wpcf7-form textarea.wpcf7-not-valid {
	border-bottom-color: #d32f2f;
}

.mwm-fcl__col-form .wpcf7-form textarea {
	height: auto !important;
	resize: vertical;
	min-height: 56px;
}

/* --- Acceptance: el texto está FUERA del wpcf7-form-control-wrap ---
   Estructura: <p> > <span.wpcf7-form-control-wrap>(checkbox) + " texto suelto" + <a>
   Solución: posicionamos el span del checkbox absolute y damos padding-left al <p> */
.mwm-fcl__col-form .wpcf7-form p:has(.wpcf7-acceptance) {
	position: relative;
	padding-left: 40px; /* 24px checkbox + 16px gap */
	min-height: 24px;
	font-family: var(--mwm-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: var(--mwm-color-secondary);
}

.mwm-fcl__col-form .wpcf7-form p:has(.wpcf7-acceptance) > .wpcf7-form-control-wrap {
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
}

.mwm-fcl__col-form .wpcf7-form .wpcf7-acceptance,
.mwm-fcl__col-form .wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
	display: block;
	margin: 0;
}

.mwm-fcl__col-form .wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
	display: block;
	width: 24px;
	height: 24px;
	margin: 0;
	border: 1px solid #717171;
	border-radius: 0;
	background: transparent;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
}

.mwm-fcl__col-form .wpcf7-form .wpcf7-acceptance input[type="checkbox"]:checked {
	background-color: var(--mwm-color-primary);
	border-color: var(--mwm-color-primary);
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 8l4.5 4.5L14 4' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-size: 14px;
	background-position: center;
	background-repeat: no-repeat;
}

/* Enlace dentro del texto de acceptance */
.mwm-fcl__col-form .wpcf7-form p:has(.wpcf7-acceptance) a {
	color: var(--mwm-color-primary);
	text-decoration: underline;
}

/* --- RGPD: CF7 genera un <p> por línea. Solo el primero tiene la clase.
   Usamos ~ para seleccionar los hermanos siguientes hasta el submit --- */
.mwm-fcl__col-form .wpcf7-form .mwm-cf7-rgpd {
	font-family: var(--mwm-font);
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	color: var(--mwm-color-primary);
	margin: 0;
}

/* Párrafos RGPD hermanos (Finalidad, Legitimación, Destinatario, Derechos) */
.mwm-fcl__col-form .wpcf7-form .mwm-cf7-rgpd ~ p:not(:has([type="submit"])) {
	font-family: var(--mwm-font);
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	color: var(--mwm-color-primary);
	margin-top: -20px; /* compensa el gap: 24px → queda ~4px entre líneas RGPD */
}

/* --- Botón submit --- */
.mwm-fcl__col-form .wpcf7-form input[type="submit"],
.mwm-fcl__col-form .wpcf7-form .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 24px;
	background-color: var(--mwm-color-accent);
	color: var(--mwm-color-secondary);
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	border: none;
	border-radius: 32px;
	cursor: pointer;
	white-space: nowrap;
	-webkit-appearance: none;
	appearance: none;
}

.mwm-fcl__col-form .wpcf7-form input[type="submit"]:not([disabled]):hover,
.mwm-fcl__col-form .wpcf7-form .wpcf7-submit:not([disabled]):hover {
	opacity: 0.85;
}

/* Submit deshabilitado (estado inicial de CF7) */
.mwm-fcl__col-form .wpcf7-form input[type="submit"][disabled] {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Spinner oculto */
.mwm-fcl__col-form .wpcf7-spinner {
	display: none !important;
}

/* --- Mensajes de validación --- */
.mwm-fcl__col-form .wpcf7-not-valid-tip {
	display: block;
	font-family: var(--mwm-font);
	font-size: 12px;
	color: #d32f2f;
	margin-top: 4px;
}

.mwm-fcl__col-form .wpcf7-response-output {
	margin: 0 !important;
	padding: 12px 16px;
	border: none !important;
	border-radius: 8px;
	font-family: var(--mwm-font);
	font-size: 14px;
	line-height: 20px;
}

.mwm-fcl__col-form .wpcf7-mail-sent-ok {
	background-color: #e8f5e9;
	color: #2e7d32;
}

.mwm-fcl__col-form .wpcf7-mail-sent-ng,
.mwm-fcl__col-form .wpcf7-aborted {
	background-color: #ffebee;
	color: #c62828;
}

.mwm-fcl__col-form .wpcf7-validation-errors,
.mwm-fcl__col-form .wpcf7-acceptance-missing {
	background-color: #fff8e1;
	color: #e65100;
}

/* Preview en el editor (JS) */
.mwm-fcl__form-preview {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mwm-fcl__form-placeholder {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 8px;
}

.mwm-fcl__form-row {
	display: flex;
	gap: 24px;
}

.mwm-fcl__form-field {
	flex: 1;
	height: 40px;
	border-bottom: 1px solid #717171;
}

.mwm-fcl__form-field--full {
	flex: 1 1 100%;
}

/* — Responsive — */

@media (max-width: 991px) {
	.wp-block-mwm-formulario-contacto-landing {
		padding: 50px 40px;
	}

	.mwm-fcl__inner {
		flex-direction: column;
		padding: 40px 32px;
		gap: 40px;
	}

	.mwm-fcl__col-info {
		width: 100%;
	}

	.mwm-fcl__phone-number {
		font-size: 32px;
		line-height: 40px;
	}
}

@media (max-width: 599px) {
	.wp-block-mwm-formulario-contacto-landing {
		padding: 40px 16px;
	}

	.mwm-fcl__inner {
		padding: 32px 20px;
	}

	.mwm-fcl__heading {
		font-size: 20px;
		line-height: 28px;
	}

	.mwm-fcl__phone-number {
		font-size: 28px;
		line-height: 36px;
	}

	.mwm-fcl__col-form .wpcf7-form .mwm-cf7-row {
		flex-direction: column;
		gap: 0;
	}
}


/* =========================================================
   CONTACTO — FORMULARIO CF7 (TARJETA STANDALONE)
   Estructura CF7 real:
   - .mwm-cf7-row > <p> > span(s).wpcf7-form-control-wrap
   - <p> > span.wpcf7-form-control-wrap > textarea
   - .mwm-cf7-footer > .mwm-cf7-checks + <p>(submit)
   - Ambos [acceptance] en el MISMO <p> separados por <br>
   - RGPD: primer <p> con clase, los siguientes sin ella
   ========================================================= */

.wp-block-mwm-formulario-cf7 {
	padding: 50px 168px;
}

/* Tarjeta contenedora */
.mwm-fcf__card {
	background-color: #f8f8f8;
	border-radius: 16px;
	padding: 56px;
	max-width: 1104px;
	margin: 0 auto;
	box-sizing: border-box;
}

.mwm-fcf__no-form {
	color: #717171;
	font-style: italic;
	margin: 0;
}

/* ---- Contenedor del form ---- */
.mwm-fcf__card .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Reset de <p> y <br> generales */
.mwm-fcf__card .wpcf7-form p {
	margin: 0;
}
.mwm-fcf__card .wpcf7-form br {
	display: none;
}

/* ---- Filas de columnas (.mwm-cf7-row > <p> > spans) ----
   El flex va en el <p> dentro del div, no en el div */
.mwm-fcf__card .wpcf7-form .mwm-cf7-row > p {
	display: flex;
	gap: 24px;
	margin: 0;
}

.mwm-fcf__card .wpcf7-form .mwm-cf7-row > p > .wpcf7-form-control-wrap {
	flex: 1 1 0;
	min-width: 0;
	display: block;
}

/* Campos sueltos fuera de fila (textarea) */
.mwm-fcf__card .wpcf7-form > p > .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

/* ---- Inputs y textarea ---- */
.mwm-fcf__card .wpcf7-form input[type="text"],
.mwm-fcf__card .wpcf7-form input[type="tel"],
.mwm-fcf__card .wpcf7-form input[type="email"],
.mwm-fcf__card .wpcf7-form textarea {
	display: block;
	width: 100%;
	height: 56px;
	background: transparent;
	border: none;
	border-bottom: 1px solid #717171;
	border-radius: 0;
	padding: 16px 0;
	font-family: var(--mwm-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: var(--mwm-color-secondary);
	outline: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
}

.mwm-fcf__card .wpcf7-form input::placeholder,
.mwm-fcf__card .wpcf7-form textarea::placeholder {
	color: #717171;
}

.mwm-fcf__card .wpcf7-form input[type="text"]:focus,
.mwm-fcf__card .wpcf7-form input[type="tel"]:focus,
.mwm-fcf__card .wpcf7-form input[type="email"]:focus,
.mwm-fcf__card .wpcf7-form textarea:focus {
	border-bottom-color: var(--mwm-color-primary);
}

.mwm-fcf__card .wpcf7-form input.wpcf7-not-valid,
.mwm-fcf__card .wpcf7-form textarea.wpcf7-not-valid {
	border-bottom-color: #d32f2f;
}

.mwm-fcf__card .wpcf7-form textarea {
	height: auto !important;
	resize: vertical;
	min-height: 56px;
}

/* ---- Footer: checks a la izq, botón a la dcha ---- */
.mwm-fcf__card .wpcf7-form .mwm-cf7-footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
}

/* ---- .mwm-cf7-checks: columna con los checks + RGPD ---- */
.mwm-fcf__card .wpcf7-form .mwm-cf7-checks {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* ---- Acceptance: los DOS están en el MISMO <p>, separados por <br> ----
   El <br> se necesita como salto de línea → lo reactivamos solo aquí.
   Cada wpcf7-form-control-wrap se pone inline-block a la izquierda
   con margin-right de 16px, y el texto fluye a su derecha. */
.mwm-fcf__card .wpcf7-form .mwm-cf7-checks br {
	display: inline; /* restaurar el <br> para separar los dos checkboxes */
}

.mwm-fcf__card .wpcf7-form .mwm-cf7-checks p:has(.wpcf7-acceptance) {
	font-family: var(--mwm-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 28px; /* algo más alto para que el checkbox no tape el texto */
	color: var(--mwm-color-secondary);
}

/* El span del checkbox: inline-block, alineado arriba, con gap a la dcha */
.mwm-fcf__card .wpcf7-form .mwm-cf7-checks p > .wpcf7-form-control-wrap {
	display: inline-block;
	width: 24px;
	vertical-align: top;
	margin-top: 2px; /* micro-ajuste para centrar visualmente con el texto */
	margin-right: 12px;
}

.mwm-fcf__card .wpcf7-form .wpcf7-acceptance,
.mwm-fcf__card .wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
	display: block;
	margin: 0;
}

.mwm-fcf__card .wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
	display: block;
	width: 24px;
	height: 24px;
	margin: 0;
	border: 1px solid #717171;
	border-radius: 0;
	background: transparent;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
}

.mwm-fcf__card .wpcf7-form .wpcf7-acceptance input[type="checkbox"]:checked {
	background-color: var(--mwm-color-primary);
	border-color: var(--mwm-color-primary);
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 8l4.5 4.5L14 4' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-size: 14px;
	background-position: center;
	background-repeat: no-repeat;
}

/* Enlace de política de privacidad */
.mwm-fcf__card .wpcf7-form .mwm-cf7-checks p a {
	color: var(--mwm-color-primary);
	text-decoration: underline;
}

/* ---- RGPD: primer <p> con clase, hermanos sin ella ----
   Todos son flex-items de .mwm-cf7-checks con gap: 16px.
   Para los hermanos RGPD reducimos el espacio con margin negativo. */
.mwm-fcf__card .wpcf7-form .mwm-cf7-rgpd {
	font-family: var(--mwm-font);
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	color: var(--mwm-color-primary);
	max-width: 348px;
	margin: 0;
}

/* Hermanos del RGPD (Finalidad, Legitimación, Destinatario, Derechos) */
.mwm-fcf__card .wpcf7-form .mwm-cf7-rgpd ~ p {
	font-family: var(--mwm-font);
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	color: var(--mwm-color-primary);
	max-width: 348px;
	margin-top: -12px; /* compensa el gap: 16px → queda ~4px entre líneas */
}

/* ---- Botón submit (dentro del <p> del footer) ---- */
.mwm-fcf__card .wpcf7-form .mwm-cf7-footer > p {
	flex-shrink: 0;
}

.mwm-fcf__card .wpcf7-form input[type="submit"],
.mwm-fcf__card .wpcf7-form .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 24px;
	background-color: var(--mwm-color-accent);
	color: var(--mwm-color-secondary);
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	border: none;
	border-radius: 32px;
	cursor: pointer;
	white-space: nowrap;
	-webkit-appearance: none;
	appearance: none;
}

.mwm-fcf__card .wpcf7-form input[type="submit"]:not([disabled]):hover {
	opacity: 0.85;
}

.mwm-fcf__card .wpcf7-form input[type="submit"][disabled] {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Spinner oculto */
.mwm-fcf__card .wpcf7-spinner {
	display: none !important;
}

/* ---- Mensajes de validación ---- */
.mwm-fcf__card .wpcf7-not-valid-tip {
	display: block;
	font-family: var(--mwm-font);
	font-size: 12px;
	color: #d32f2f;
	margin-top: 4px;
}

.mwm-fcf__card .wpcf7-response-output {
	margin: 0 !important;
	padding: 12px 16px;
	border: none !important;
	border-radius: 8px;
	font-family: var(--mwm-font);
	font-size: 14px;
	line-height: 20px;
}

.mwm-fcf__card .wpcf7-mail-sent-ok {
	background-color: #e8f5e9;
	color: #2e7d32;
}

.mwm-fcf__card .wpcf7-mail-sent-ng,
.mwm-fcf__card .wpcf7-aborted {
	background-color: #ffebee;
	color: #c62828;
}

.mwm-fcf__card .wpcf7-validation-errors,
.mwm-fcf__card .wpcf7-acceptance-missing {
	background-color: #fff8e1;
	color: #e65100;
}

/* ---- Preview editor (JS) ---- */
.mwm-fcf__editor-preview {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 16px;
}

.mwm-fcf__editor-row {
	display: flex;
	gap: 24px;
}

.mwm-fcf__editor-field {
	flex: 1;
	height: 40px;
	border-bottom: 1px solid #717171;
}

.mwm-fcf__editor-field--full {
	flex: 1 1 100%;
}

/* ---- Responsive ---- */

@media (max-width: 1100px) {
	.wp-block-mwm-formulario-cf7 {
		padding: 50px 40px;
	}
}

@media (max-width: 768px) {
	.mwm-fcf__card {
		padding: 40px 32px;
	}

	.mwm-fcf__card .wpcf7-form .mwm-cf7-row > p {
		flex-direction: column;
		gap: 0;
	}

	.mwm-fcf__card .wpcf7-form .mwm-cf7-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}
}

@media (max-width: 599px) {
	.wp-block-mwm-formulario-cf7 {
		padding: 40px 16px;
	}

	.mwm-fcf__card {
		padding: 32px 20px;
	}
}


/* =============================================================
   SERVICIOS — FAQ
   ============================================================= */

.wp-block-mwm-faq {
	padding: 50px 168px;
}

.mwm-faq__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mwm-faq__item {
	background: #f8f8f8;
	border-radius: 16px;
	padding: 16px 32px;
}

.mwm-faq__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	cursor: pointer;
}

.mwm-faq__question {
	font-size: 16px;
	font-weight: 700;
	font-family: var(--mwm-font, 'Ubuntu', sans-serif);
	color: var(--mwm-color-primary);
	line-height: 24px;
	margin: 0;
	flex: 1;
}

.mwm-faq__toggle {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	background: var(--mwm-color-primary);
	border: none;
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #fff;
	transition: background 0.2s;
	padding: 0;
}

.mwm-faq__toggle:hover {
	background: var(--mwm-color-primary-hover, #134ac8);
}

.mwm-faq__toggle svg {
	width: 17px;
	height: 17px;
	display: block;
}

.mwm-faq__plus-v {
	transition: opacity 0.25s, transform 0.25s;
	transform-origin: 8.5px 8.5px;
}

.mwm-faq__item.is-open .mwm-faq__plus-v {
	opacity: 0;
	transform: rotate(90deg);
}

.mwm-faq__answer {
	padding-top: 16px;
	padding-bottom: 4px;
}

.mwm-faq__answer p {
	font-size: 16px;
	line-height: 26px;
	color: var(--mwm-color-secondary);
	margin: 0;
}

/* — Responsive 991px — */
@media ( max-width: 991px ) {
	.wp-block-mwm-faq {
		padding: 50px 40px;
	}
}

/* — Responsive 599px — */
@media ( max-width: 599px ) {
	.wp-block-mwm-faq {
		padding: 40px 16px;
	}

	.mwm-faq__item {
		padding: 16px 20px;
	}

	.mwm-faq__question {
		font-size: 14px;
		line-height: 22px;
	}
}


/* =============================================================
   SERVICIOS — LOGOS SERVICIOS
   ============================================================= */

.wp-block-mwm-logos-servicios {
	padding: 50px 168px;
}

.mwm-ls__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.mwm-ls__card {
	flex: 1 1 0;
	min-width: 130px;
	border: 1px solid #f8f8f8;
	border-radius: 16px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.mwm-ls__icon {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	color: var(--mwm-color-accent);
	display: flex;
	align-items: center;
	justify-content: center;
}

.mwm-ls__icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* placeholder en el editor (sin SVG) */
.mwm-ls__icon-placeholder {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	background: var(--mwm-color-accent);
	border-radius: 8px;
	opacity: 0.3;
}

.mwm-ls__label {
	font-size: 16px;
	font-weight: 700;
	font-family: var(--mwm-font, 'Ubuntu', sans-serif);
	color: var(--mwm-color-primary);
	line-height: 24px;
	text-align: center;
	margin: 0;
}

/* — Responsive 991px — */
@media ( max-width: 991px ) {
	.wp-block-mwm-logos-servicios {
		padding: 50px 40px;
	}

	.mwm-ls__card {
		min-width: 110px;
	}
}

/* — Responsive 599px — */
@media ( max-width: 599px ) {
	.wp-block-mwm-logos-servicios {
		padding: 40px 16px;
	}

	.mwm-ls__grid {
		gap: 12px;
	}

	.mwm-ls__card {
		min-width: calc( 50% - 6px );
		flex: 1 1 calc( 50% - 6px );
	}
}

/* =====================================================
   SECTORES — SECTORES BLOQUES
   ===================================================== */

.wp-block-mwm-sectores-bloques {
	width: 100%;
	background: var(--mwm-color-primary, #0040c5);
	display: flex;
	justify-content: center;
	padding: 88px 40px;
}

.mwm-sb__grid {
	width: 100%;
	max-width: 1104px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}

.mwm-sb__card {
	background: var(--mwm-color-primary-hover, #134ac8);
	border-radius: 16px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mwm-sb__top {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.mwm-sb__icon {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	color: var(--mwm-color-accent, #fbb03b);
}

.mwm-sb__icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* placeholder en el editor (sin SVG) */
.mwm-sb__icon-placeholder {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	background: var(--mwm-color-accent, #fbb03b);
	border-radius: 8px;
	opacity: 0.4;
}

.mwm-sb__title {
	font-size: 24px;
	font-family: var(--mwm-font, 'Ubuntu', sans-serif);
	font-weight: 700;
	color: #ffffff;
	line-height: 32px;
	margin: 0;
}

.mwm-sb__bottom {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mwm-sb__subtitle {
	font-size: 16px;
	font-family: var(--mwm-font, 'Ubuntu', sans-serif);
	font-weight: 400;
	color: #ffffff;
	line-height: 24px;
	margin: 0;
}

.mwm-sb__body {
	font-size: 16px;
	font-family: var(--mwm-font, 'Ubuntu', sans-serif);
	font-weight: 400;
	color: #ffffff;
	line-height: 24px;
	margin: 0;
}

.mwm-sb__body strong {
	font-weight: 700;
}

/* — Responsive 991px — */
@media ( max-width: 991px ) {
	.wp-block-mwm-sectores-bloques {
		padding: 60px 24px;
	}

	.mwm-sb__grid {
		gap: 24px;
	}

	.mwm-sb__card {
		padding: 32px 24px;
	}
}

/* — Responsive 599px — */
@media ( max-width: 599px ) {
	.wp-block-mwm-sectores-bloques {
		padding: 48px 16px;
	}

	.mwm-sb__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

/* =====================================================
   CORE BLOCKS — límites laterales para heading y paragraph
   ===================================================== */

.site-main .wp-block-heading,
.site-main .wp-block-paragraph,
.site-main .wp-block-list,
.site-main .wp-block-quote,
.site-main .wp-block-image:not(.alignfull):not(.alignwide) {
	max-width: calc(1104px + 32px);
	margin-left: auto;
	margin-right: auto;
	padding-left: 16px;
	padding-right: 16px;
	box-sizing: border-box;
}

h1.wp-block-heading {
	color: var(--mwm-color-primary);
	font-family: Ubuntu, sans-serif;
	font-size: 48px;
	font-style: normal;
	font-weight: 400;
	line-height: 56px;
}

/* ================================================
   TÍTULO CONTACTO
   ================================================ */

.wp-block-mwm-titulo-contacto {
	width: 100%;
	padding: 80px 0;
	background: var(--mwm-color-white);
}

.mwm-tc__inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 100%;
	padding: 0 168px;
	box-sizing: border-box;
}

.mwm-tc__row {
	display: flex;
	align-items: flex-start;
	gap: 128px;
}

.mwm-tc__row--bottom {
	align-items: flex-end;
}

.mwm-tc__tagline {
	font-family: var(--mwm-font);
	font-size: 48px;
	font-weight: 400;
	color: var(--mwm-color-primary);
	line-height: 56px;
	letter-spacing: 0;
	margin: 0;
}

.mwm-tc__content {
	display: flex;
	flex-direction: column;
	gap: 32px;
	flex: 0 0 544px;
}

.mwm-tc__heading {
	font-family: var(--mwm-font);
	font-size: 32px;
	font-weight: 400;
	color: var(--mwm-color-primary);
	line-height: 40px;
	letter-spacing: 0;
	margin: 0;
	max-width: 387px;
}

.mwm-tc__text {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--mwm-color-secondary);
	line-height: 24px;
	margin: 0;
}

.mwm-tc__text strong {
	font-weight: 700;
}

.mwm-tc__contact {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 0 0 544px;
}

.mwm-tc__phone {
	font-family: var(--mwm-font);
	font-size: 40px;
	font-weight: 700;
	color: var(--mwm-color-primary);
	line-height: 48px;
	letter-spacing: 0;
	margin: 0;
}

.mwm-tc__email {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--mwm-color-secondary);
	line-height: 24px;
	margin: 0;
}

@media (max-width: 1100px) {
	.mwm-tc__inner {
		padding: 0 40px;
	}

	.mwm-tc__row {
		flex-direction: column;
		gap: 40px;
		align-items: flex-start;
	}

	.mwm-tc__content,
	.mwm-tc__contact {
		flex: unset;
		width: 100%;
	}

	.mwm-tc__heading {
		max-width: 100%;
	}
}

@media (max-width: 600px) {
	.wp-block-mwm-titulo-contacto {
		padding: 48px 0;
	}

	.mwm-tc__inner {
		padding: 0 24px;
		gap: 32px;
	}

	.mwm-tc__tagline {
		font-size: 32px;
		line-height: 40px;
	}

	.mwm-tc__phone {
		font-size: 28px;
		line-height: 36px;
	}
}


/* ==============================================
   ANCHO MÁXIMO CONSISTENTE — todos los bloques mwm
   excepto los que deben ir a pantalla completa
   ============================================== */

[class*="wp-block-mwm-"]:not(.wp-block-mwm-banner-foto):not(.wp-block-mwm-sectores-bloques) {
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

/* ================================================
   mwm/img-txt-con-banner-azul-en-txt
   ================================================ */
.wp-block-mwm-img-txt-con-banner-azul-en-txt {
	padding: 80px var(--mwm-side-padding, 40px);
}

.mwm-itbat__inner {
	display: flex;
	align-items: flex-start;
	gap: 80px;
	max-width: 1104px;
	margin: 0 auto;
}

.mwm-itbat__media-col {
	flex-shrink: 0;
	width: 544px;
	align-self: stretch;
}

.mwm-itbat__img,
.mwm-itbat__img-placeholder {
	width: 100%;
	height: 100%;
	border-radius: 16px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.mwm-itbat__img-placeholder {
	background: #e8eaf0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 300px;
	color: #888;
}

.mwm-itbat__text-col {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.mwm-itbat__heading {
	font-size: 32px;
	font-family: var(--mwm-font);
	font-weight: 400;
	color: var(--mwm-color-primary);
	line-height: 40px;
	margin: 0;
}

.mwm-itbat__body,
.mwm-itbat__footer-text {
	font-size: 16px;
	font-family: var(--mwm-font);
	font-weight: 400;
	color: var(--mwm-color-secondary);
	line-height: 24px;
	margin: 0;
}

.mwm-itbat__banner {
	background: var(--mwm-color-primary);
	border-radius: 8px;
	padding: 24px;
}

.mwm-itbat__banner-text {
	font-size: 16px;
	font-family: var(--mwm-font);
	font-weight: 700;
	color: var(--mwm-color-white);
	line-height: 24px;
	margin: 0;
}

@media (max-width: 900px) {
	.mwm-itbat__inner {
		flex-direction: column;
		gap: 40px;
	}

	.mwm-itbat__media-col {
		width: 100%;
		align-self: auto;
	}

	.mwm-itbat__img {
		height: 300px;
	}
}

/* ============================================================
   mwm/text-con-faq
   ============================================================ */

.wp-block-mwm-text-con-faq {
	width: 100%;
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	padding: 50px 168px;
}

.mwm-text-con-faq__inner {
	display: flex;
	align-items: flex-start;
	gap: 40px;
}

/* Columna izquierda */
.mwm-text-con-faq__left {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
}

.mwm-text-con-faq__title {
	font-family: var(--mwm-font);
	font-size: 32px;
	font-weight: 400;
	line-height: 40px;
	color: var(--mwm-color-primary);
	margin: 0;
}

.mwm-text-con-faq__text {
	font-family: var(--mwm-font);
	font-size: 16px;
	line-height: 24px;
	color: var(--mwm-color-secondary);
	margin: 0;
}

.mwm-text-con-faq__text strong {
	font-weight: 700;
}

.mwm-text-con-faq__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--mwm-color-accent);
	color: var(--mwm-color-secondary);
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-decoration: none;
	border-radius: 32px;
	padding: 8px 24px;
	transition: opacity 0.2s ease;
}

.mwm-text-con-faq__btn:hover {
	opacity: 0.85;
}

/* Columna derecha */
.mwm-text-con-faq__right {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.mwm-text-con-faq__faqs-label {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: var(--mwm-color-secondary);
	margin: 0;
}

.mwm-text-con-faq__faqs {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* FAQ item */
.mwm-text-con-faq__faq-item {
	background: #f8f8f8;
	border-radius: 16px;
	padding: 16px 32px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.mwm-text-con-faq__faq-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	cursor: pointer;
}

.mwm-text-con-faq__faq-question {
	font-family: var(--mwm-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: var(--mwm-color-primary);
}

.mwm-text-con-faq__faq-toggle {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	background: var(--mwm-color-primary);
	color: #fff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, transform 0.2s ease;
}

.mwm-text-con-faq__faq-toggle:hover {
	background: var(--mwm-color-primary-hover);
}

.mwm-text-con-faq__faq-item.is-open .mwm-text-con-faq__plus-v {
	transform: scaleY(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.mwm-text-con-faq__plus-v {
	transition: transform 0.2s ease;
}

.mwm-text-con-faq__faq-answer {
	padding-top: 16px;
}

.mwm-text-con-faq__faq-answer p {
	font-family: var(--mwm-font);
	font-size: 16px;
	line-height: 24px;
	color: var(--mwm-color-secondary);
	margin: 0;
}

@media (max-width: 991px) {
	.wp-block-mwm-text-con-faq {
		padding: 50px 40px;
	}
}

@media (max-width: 768px) {
	.wp-block-mwm-text-con-faq {
		padding: 40px 16px;
	}

	.mwm-text-con-faq__inner {
		flex-direction: column;
		gap: 48px;
	}

	.mwm-text-con-faq__left,
	.mwm-text-con-faq__right {
		width: 100%;
	}

	.mwm-text-con-faq__title {
		font-size: 26px;
	}

	.mwm-text-con-faq__faq-item {
		padding: 16px 20px;
	}
}

button.site-header__burger > span {
    background: var(--mwm-color-primary);
}