/* ============================================================
   Mira Más Arriba — Landing de Servicios
   "Patio interior al atardecer" · v3
   ============================================================ */

:root {
	/* Tierras y créma */
	--mma-paper:      #FAF5EC; /* fondo principal, papel solar */
	--mma-paper-2:    #F2E8D5; /* alterno cards */
	--mma-paper-3:    #EDDFC6; /* más oscuro, contraste */
	--mma-ivory:      #FFFDF7; /* blanco hueso para cards */
	--mma-night:      #2B1F17; /* tinta principal */
	--mma-night-2:    #1F1611; /* hero oscuro de contraste */

	/* Acentos cálidos */
	--mma-clay:       #C66B4E; /* terracota viva — protagonista */
	--mma-clay-dark:  #A35640;
	--mma-clay-soft:  #E89C7D;
	--mma-ochre:      #D9A05B; /* dorado tierra */
	--mma-honey:      #E9C68E; /* dorado pálido */
	--mma-sage:       #7E8967; /* verde salvia, acento orgánico */

	/* Tinta */
	--mma-ink:        #2B1F17;
	--mma-ink-2:      #4A3B2E;
	--mma-ink-3:      #6B5B4A;
	--mma-mute:       #9C8B79;

	/* Bordes y veladuras */
	--mma-border:     rgba(43, 31, 23, 0.10);
	--mma-border-soft:rgba(43, 31, 23, 0.06);
	--mma-shadow:     0 1px 2px rgba(43, 31, 23, 0.04), 0 12px 32px -16px rgba(198, 107, 78, 0.20);
	--mma-shadow-lg:  0 4px 12px rgba(43, 31, 23, 0.06), 0 28px 64px -28px rgba(198, 107, 78, 0.30);

	/* Tipografía */
	--mma-display:    'Fraunces', 'Cormorant Garamond', Georgia, serif;
	--mma-body:       'DM Sans', system-ui, sans-serif;

	/* Layout */
	--mma-max:        1180px;
	--mma-max-text:   760px;
	--mma-pad-x:      clamp(1.5rem, 4vw, 4rem);

	/* Radius — siempre redondeado, nunca rígido */
	--mma-r-sm:       8px;
	--mma-r:          16px;
	--mma-r-lg:       28px;
	--mma-r-xl:       40px;
	--mma-r-full:     999px;
}

/* ============================================================
   Reset + base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.mma-landing-body {
	margin: 0;
	background: var(--mma-paper);
	color: var(--mma-ink-2);
	font-family: var(--mma-body);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	font-optical-sizing: auto;
}

@media (min-width: 900px) {
	body.mma-landing-body { font-size: 19px; }
}

.mma-landing img { max-width: 100%; height: auto; display: block; }
.mma-landing a { color: inherit; text-decoration: none; }
::selection { background: var(--mma-clay); color: var(--mma-paper); }

/* ============================================================
   Tipografía base
   ============================================================ */
.mma-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--mma-body);
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--mma-clay);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	line-height: 1;
}
.mma-eyebrow::before {
	content: '';
	width: 32px;
	height: 1px;
	background: var(--mma-clay);
}
.mma-eyebrow--centered { justify-content: center; }
.mma-eyebrow--centered::after {
	content: '';
	width: 32px;
	height: 1px;
	background: var(--mma-clay);
}

/* Display title generic */
.mma-h {
	font-family: var(--mma-display);
	font-weight: 400;
	color: var(--mma-ink);
	line-height: 1.05;
	letter-spacing: -0.015em;
	margin: 0 0 1.5rem;
	font-variation-settings: "opsz" 144, "SOFT" 50;
}
.mma-h em {
	font-style: italic;
	color: var(--mma-clay);
	font-weight: 400;
	font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* ============================================================
   Layout containers
   ============================================================ */
.mma-landing {
	background: var(--mma-paper);
	overflow: hidden;
}

.mma-container {
	max-width: var(--mma-max);
	margin: 0 auto;
	padding-inline: var(--mma-pad-x);
	position: relative;
}
.mma-container--text { max-width: 820px; }

.mma-section {
	padding-block: clamp(5rem, 9vw, 9rem);
	position: relative;
}

/* ============================================================
   Header propio — luminoso, contenido
   ============================================================ */
.mma-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 200;
	padding: 1.25rem var(--mma-pad-x);
	background: rgba(250, 245, 236, 0.85);
	backdrop-filter: blur(14px) saturate(120%);
	border-bottom: 1px solid transparent;
	transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.mma-header.is-scrolled {
	background: rgba(250, 245, 236, 0.95);
	border-bottom-color: var(--mma-border-soft);
	padding-block: 0.85rem;
	box-shadow: 0 2px 14px rgba(43, 31, 23, 0.04);
}

.mma-header__inner {
	max-width: var(--mma-max);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.mma-brand {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	flex-shrink: 0;
}
.mma-brand__mark {
	width: 42px;
	height: 42px;
	color: var(--mma-clay);
	display: flex;
	align-items: center;
	justify-content: center;
}
.mma-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1;
	gap: 4px;
}
.mma-brand__name {
	font-family: var(--mma-display);
	font-weight: 500;
	font-style: italic;
	font-size: 1.3rem;
	color: var(--mma-ink);
	font-variation-settings: "opsz" 14, "SOFT" 100;
	letter-spacing: -0.01em;
}
.mma-brand__tag {
	font-family: var(--mma-body);
	font-size: 0.65rem;
	letter-spacing: 0.2em;
	color: var(--mma-ink-3);
	text-transform: uppercase;
	font-weight: 500;
}

.mma-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}
.mma-nav__list {
	display: flex;
	align-items: center;
	gap: 1.85rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.mma-nav__link {
	font-family: var(--mma-body);
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--mma-ink-2);
	position: relative;
	padding: 0.5rem 0;
	transition: color 0.25s ease;
}
.mma-nav__link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0.25rem;
	width: 100%;
	height: 1px;
	background: var(--mma-clay);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}
.mma-nav__link:hover { color: var(--mma-clay); }
.mma-nav__link:hover::after { transform: scaleX(1); }

.mma-nav__cta {
	font-family: var(--mma-body);
	font-size: 0.92rem;
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	background: var(--mma-clay);
	color: var(--mma-paper);
	border-radius: var(--mma-r-full);
	transition: all 0.3s cubic-bezier(.2,.7,.2,1);
	white-space: nowrap;
	box-shadow: 0 6px 18px -8px rgba(198, 107, 78, 0.5);
}
.mma-nav__cta:hover {
	background: var(--mma-clay-dark);
	transform: translateY(-1px);
	box-shadow: 0 10px 24px -10px rgba(198, 107, 78, 0.6);
}

.mma-nav__toggle {
	display: none;
	width: 44px;
	height: 44px;
	background: transparent;
	border: 1px solid var(--mma-border);
	border-radius: var(--mma-r-full);
	cursor: pointer;
	color: var(--mma-ink);
	align-items: center;
	justify-content: center;
	padding: 0;
}

@media (max-width: 900px) {
	.mma-brand__tag { display: none; }
	.mma-nav__list, .mma-nav__cta { display: none; }
	.mma-nav__toggle { display: inline-flex; }
	.mma-nav.is-open .mma-nav__list,
	.mma-nav.is-open .mma-nav__cta { display: flex; }
	.mma-nav.is-open {
		position: fixed;
		inset: 80px 0 0 0;
		background: var(--mma-paper);
		flex-direction: column;
		padding: 3rem var(--mma-pad-x);
		justify-content: flex-start;
		gap: 2.5rem;
		overflow-y: auto;
	}
	.mma-nav.is-open .mma-nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
		width: 100%;
	}
	.mma-nav.is-open .mma-nav__link {
		font-size: 1.4rem;
		font-family: var(--mma-display);
		font-style: italic;
	}
	.mma-nav.is-open .mma-nav__cta {
		width: 100%;
		text-align: center;
		padding: 1.1rem;
		justify-content: center;
		font-size: 1rem;
	}
}

/* ============================================================
   HERO — luminoso, asimétrico, con sol orgánico al fondo
   ============================================================ */
.mma-hero {
	position: relative;
	padding: 9rem var(--mma-pad-x) 6rem;
	overflow: hidden;
	background:
		radial-gradient(ellipse 700px 500px at 75% 35%, rgba(233, 198, 142, 0.45), transparent 60%),
		radial-gradient(ellipse 500px 400px at 20% 80%, rgba(198, 107, 78, 0.10), transparent 60%),
		var(--mma-paper);
	min-height: 100vh;
	display: flex;
	align-items: center;
}

/* Sol decorativo SVG al fondo */
.mma-hero__sun {
	position: absolute;
	right: -120px;
	top: 50%;
	transform: translateY(-50%);
	width: 720px;
	height: 720px;
	opacity: 0.7;
	pointer-events: none;
	animation: mma-rotate 90s linear infinite;
}
@keyframes mma-rotate {
	to { transform: translateY(-50%) rotate(360deg); }
}

.mma-hero__inner {
	max-width: var(--mma-max);
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: end;
	position: relative;
	z-index: 2;
}

@media (min-width: 900px) {
	.mma-hero__inner {
		grid-template-columns: 1.5fr 1fr;
		gap: 5rem;
		align-items: center;
	}
}

.mma-hero__content { max-width: 720px; }

.mma-hero__intro {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	font-family: var(--mma-body);
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--mma-clay);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin-bottom: 1.75rem;
	padding: 0.5rem 1.1rem 0.5rem 0.55rem;
	background: rgba(198, 107, 78, 0.08);
	border-radius: var(--mma-r-full);
	border: 1px solid rgba(198, 107, 78, 0.15);
}
.mma-hero__intro::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--mma-clay);
	box-shadow: 0 0 0 4px rgba(198, 107, 78, 0.2);
}

.mma-hero__title {
	font-family: var(--mma-display);
	font-weight: 400;
	font-size: clamp(2.8rem, 1rem + 7vw, 6rem);
	line-height: 0.98;
	letter-spacing: -0.025em;
	color: var(--mma-ink);
	margin: 0 0 2rem;
	font-variation-settings: "opsz" 144, "SOFT" 50;
}
.mma-hero__title em {
	display: block;
	font-style: italic;
	color: var(--mma-clay);
	font-variation-settings: "opsz" 144, "SOFT" 100;
	font-weight: 400;
	margin-top: 0.15em;
}

.mma-hero__lede {
	font-family: var(--mma-body);
	font-weight: 400;
	font-size: clamp(1.15rem, 0.95rem + 0.7vw, 1.45rem);
	line-height: 1.55;
	color: var(--mma-ink-2);
	margin: 0 0 2.5rem;
	max-width: 580px;
}

.mma-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem 1.5rem;
	align-items: center;
}

.mma-hero__aside {
	position: relative;
	padding: 2.25rem;
	background: var(--mma-ivory);
	border-radius: var(--mma-r-lg);
	box-shadow: var(--mma-shadow-lg);
	border: 1px solid var(--mma-border-soft);
}
.mma-hero__aside::before {
	content: '“';
	position: absolute;
	top: -18px;
	left: 24px;
	font-family: var(--mma-display);
	font-size: 5rem;
	font-style: italic;
	color: var(--mma-clay);
	line-height: 1;
	font-variation-settings: "opsz" 144, "SOFT" 100;
}
.mma-hero__aside-text {
	font-family: var(--mma-body);
	font-style: italic;
	font-weight: 400;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--mma-ink);
	margin: 0 0 1.5rem;
	letter-spacing: -0.005em;
}
.mma-hero__aside-byline {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--mma-body);
	font-size: 0.85rem;
	color: var(--mma-ink-3);
}
.mma-hero__aside-byline::before {
	content: '';
	width: 28px;
	height: 1px;
	background: var(--mma-clay);
}

/* ============================================================
   Botones — pill cálidos, generosos, con vida
   ============================================================ */
.mma-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1.1rem 2.1rem;
	font-family: var(--mma-body);
	font-size: 1rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.35s cubic-bezier(.2,.7,.2,1);
	border-radius: var(--mma-r-full);
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
	position: relative;
}
.mma-btn--primary {
	background: var(--mma-clay);
	color: var(--mma-paper);
	box-shadow: 0 10px 28px -12px rgba(198, 107, 78, 0.55);
}
.mma-btn--primary:hover {
	background: var(--mma-clay-dark);
	transform: translateY(-2px);
	box-shadow: 0 16px 36px -14px rgba(198, 107, 78, 0.7);
}
.mma-btn--ghost {
	background: transparent;
	color: var(--mma-ink);
	border: 1.5px solid var(--mma-ink);
}
.mma-btn--ghost:hover {
	background: var(--mma-ink);
	color: var(--mma-paper);
	transform: translateY(-2px);
}
.mma-btn--text {
	background: none;
	padding: 0.5rem 0;
	color: var(--mma-clay);
	font-weight: 600;
	border-radius: 0;
}
.mma-btn--text::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: var(--mma-clay);
	margin-top: 6px;
	transform-origin: left;
	transition: transform 0.3s ease;
}
.mma-btn--text:hover::after { transform: scaleX(0.5); }

.mma-btn svg { transition: transform 0.3s ease; }
.mma-btn:hover svg { transform: translateX(4px); }

/* ============================================================
   SECCIÓN "POR QUÉ ESTÁS AQUÍ" — conexión emocional inmediata
   ============================================================ */
.mma-why {
	background: var(--mma-paper-2);
	border-top: 1px solid var(--mma-border-soft);
	position: relative;
}
.mma-why__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 4rem;
}
.mma-why__head h2 {
	font-family: var(--mma-display);
	font-weight: 400;
	font-size: clamp(2rem, 1.3rem + 2.4vw, 3.4rem);
	line-height: 1.1;
	color: var(--mma-ink);
	margin: 0;
	letter-spacing: -0.015em;
	font-variation-settings: "opsz" 144, "SOFT" 50;
}
.mma-why__head h2 em {
	font-style: italic;
	color: var(--mma-clay);
	font-variation-settings: "opsz" 144, "SOFT" 100;
}

.mma-why__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 800px) {
	.mma-why__grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

.mma-why__card {
	background: var(--mma-ivory);
	padding: 2.25rem 2rem;
	border-radius: var(--mma-r-lg);
	border: 1px solid var(--mma-border-soft);
	transition: all 0.4s ease;
	position: relative;
}
.mma-why__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--mma-shadow-lg);
}
.mma-why__card-icon {
	width: 52px;
	height: 52px;
	background: rgba(198, 107, 78, 0.1);
	color: var(--mma-clay);
	border-radius: var(--mma-r-full);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}
.mma-why__card-text {
	font-family: var(--mma-body);
	font-weight: 400;
	font-size: 1.1rem;
	line-height: 1.55;
	color: var(--mma-ink);
	margin: 0;
}

.mma-why__caption {
	text-align: center;
	margin-top: 3rem;
	font-family: var(--mma-body);
	font-size: 1.1rem;
	color: var(--mma-ink-2);
}
.mma-why__caption strong {
	color: var(--mma-clay);
	font-weight: 600;
}

/* ============================================================
   FILOSOFÍA — narrativa, conversacional
   ============================================================ */
.mma-philosophy {
	background: var(--mma-paper);
	position: relative;
}
.mma-philosophy__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}
@media (min-width: 900px) {
	.mma-philosophy__grid {
		grid-template-columns: 1.1fr 1fr;
		gap: 5rem;
	}
}

.mma-philosophy h2 {
	font-family: var(--mma-display);
	font-weight: 400;
	font-size: clamp(2rem, 1.3rem + 2.2vw, 3.2rem);
	line-height: 1.05;
	color: var(--mma-ink);
	margin: 0 0 1.75rem;
	letter-spacing: -0.015em;
	font-variation-settings: "opsz" 144, "SOFT" 50;
}
.mma-philosophy h2 em {
	font-style: italic;
	color: var(--mma-clay);
	font-variation-settings: "opsz" 144, "SOFT" 100;
}
.mma-philosophy p {
	font-size: 1.1rem;
	line-height: 1.75;
	color: var(--mma-ink-2);
	margin: 0 0 1.25rem;
}
.mma-philosophy p:last-of-type { margin-bottom: 2rem; }

.mma-philosophy__visual {
	position: relative;
	aspect-ratio: 1 / 1.05;
	border-radius: var(--mma-r-xl);
	overflow: hidden;
	background:
		radial-gradient(circle at 30% 30%, var(--mma-honey), transparent 50%),
		radial-gradient(circle at 70% 70%, var(--mma-clay-soft), transparent 55%),
		linear-gradient(135deg, var(--mma-paper-3), var(--mma-clay-soft));
	box-shadow: var(--mma-shadow-lg);
}
.mma-philosophy__visual::before {
	content: '';
	position: absolute;
	inset: 20px;
	border: 1px solid rgba(255, 253, 247, 0.4);
	border-radius: calc(var(--mma-r-xl) - 12px);
	pointer-events: none;
}
.mma-philosophy__visual svg {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 60%;
	height: 60%;
	color: rgba(255, 253, 247, 0.85);
}

.mma-tools {
	margin-top: 2.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}
.mma-tools__tag {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.5rem 1rem;
	background: var(--mma-ivory);
	color: var(--mma-ink-2);
	border: 1px solid var(--mma-border);
	border-radius: var(--mma-r-full);
	font-size: 0.88rem;
	font-weight: 500;
	transition: all 0.3s ease;
}
.mma-tools__tag::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--mma-clay);
}
.mma-tools__tag:hover {
	background: var(--mma-clay);
	color: var(--mma-paper);
	border-color: var(--mma-clay);
}
.mma-tools__tag:hover::before { background: var(--mma-paper); }

/* ============================================================
   BIO — íntima, cálida
   ============================================================ */
.mma-bio {
	background: var(--mma-paper-2);
	position: relative;
	overflow: hidden;
}
.mma-bio::before {
	content: '';
	position: absolute;
	left: -200px;
	top: -200px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(217, 160, 91, 0.18), transparent 60%);
	pointer-events: none;
}
.mma-bio__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
	position: relative;
}
@media (min-width: 800px) {
	.mma-bio__grid { grid-template-columns: 340px 1fr; gap: 5rem; }
}

.mma-bio__portrait {
	position: relative;
	aspect-ratio: 1 / 1;
	max-width: 340px;
	margin: 0 auto;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--mma-clay-soft), var(--mma-honey));
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--mma-shadow-lg);
}
.mma-bio__portrait::after {
	content: '';
	position: absolute;
	inset: -8px;
	border-radius: 50%;
	border: 1px dashed var(--mma-clay);
	opacity: 0.4;
	pointer-events: none;
}
.mma-bio__portrait img {
	width: 100%; height: 100%;
	object-fit: cover;
}
.mma-bio__portrait svg { color: var(--mma-paper); opacity: 0.6; width: 50%; height: 50%; }

.mma-bio__title {
	font-family: var(--mma-display);
	font-weight: 400;
	font-size: clamp(2rem, 1.3rem + 1.8vw, 2.8rem);
	color: var(--mma-ink);
	margin: 0 0 1.5rem;
	line-height: 1.1;
	letter-spacing: -0.015em;
	font-variation-settings: "opsz" 144, "SOFT" 50;
}
.mma-bio__title em {
	font-style: italic;
	color: var(--mma-clay);
	font-variation-settings: "opsz" 144, "SOFT" 100;
}
.mma-bio p {
	margin: 0 0 1.25rem;
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--mma-ink-2);
}
.mma-bio p em { color: var(--mma-clay-dark); font-style: italic; font-weight: 500; font-family: var(--mma-body); }
.mma-bio p a {
	color: var(--mma-clay);
	font-weight: 500;
	border-bottom: 1.5px solid var(--mma-clay);
	transition: all 0.25s ease;
}
.mma-bio p a:hover { color: var(--mma-clay-dark); border-bottom-color: var(--mma-clay-dark); }

.mma-bio__signature {
	margin-top: 2rem;
	font-family: var(--mma-display);
	font-style: italic;
	font-size: 1.65rem;
	color: var(--mma-clay);
	font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* ============================================================
   LAS 5 HERIDAS — cards cálidas, expresivas, con personalidad
   ============================================================ */
.mma-wounds {
	background: var(--mma-paper);
	position: relative;
}
.mma-wounds__head {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 5rem;
}
.mma-wounds__head h2 {
	font-family: var(--mma-display);
	font-weight: 400;
	font-size: clamp(2rem, 1.3rem + 2.5vw, 3.5rem);
	color: var(--mma-ink);
	line-height: 1.05;
	margin: 0 0 1.5rem;
	letter-spacing: -0.015em;
	font-variation-settings: "opsz" 144, "SOFT" 50;
}
.mma-wounds__head h2 em {
	font-style: italic;
	color: var(--mma-clay);
	font-variation-settings: "opsz" 144, "SOFT" 100;
}
.mma-wounds__head p {
	font-size: 1.15rem;
	line-height: 1.6;
	color: var(--mma-ink-2);
	margin: 0;
}

.mma-wounds__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
@media (min-width: 800px) {
	.mma-wounds__grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}

.mma-wound {
	position: relative;
	background: var(--mma-ivory);
	padding: 2.75rem 2.5rem 2.5rem;
	border-radius: var(--mma-r-lg);
	border: 1px solid var(--mma-border-soft);
	transition: all 0.4s cubic-bezier(.2,.7,.2,1);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-shadow: var(--mma-shadow);
}
.mma-wound::before {
	content: attr(data-roman);
	position: absolute;
	top: 1rem;
	right: 1.75rem;
	font-family: var(--mma-display);
	font-weight: 400;
	font-style: italic;
	font-size: 5.5rem;
	line-height: 1;
	color: rgba(198, 107, 78, 0.15);
	letter-spacing: -0.05em;
	pointer-events: none;
	font-variation-settings: "opsz" 144, "SOFT" 100;
	transition: all 0.4s ease;
}
.mma-wound:hover {
	transform: translateY(-6px);
	box-shadow: var(--mma-shadow-lg);
	border-color: rgba(198, 107, 78, 0.3);
}
.mma-wound:hover::before {
	color: rgba(198, 107, 78, 0.32);
	transform: scale(1.05) rotate(-2deg);
}

.mma-wound--wide { grid-column: 1 / -1; }

.mma-wound__head {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	margin-bottom: 1.75rem;
	position: relative;
	z-index: 2;
}
.mma-wound__icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--mma-honey), var(--mma-clay-soft));
	color: var(--mma-paper);
	border-radius: var(--mma-r);
	box-shadow: 0 4px 12px -4px rgba(198, 107, 78, 0.4);
}
.mma-wound__icon svg { width: 24px; height: 24px; }

.mma-wound__title-wrap { flex-grow: 1; }
.mma-wound__title {
	font-family: var(--mma-display);
	font-weight: 500;
	font-size: 1.9rem;
	line-height: 1.05;
	color: var(--mma-ink);
	margin: 0 0 0.35rem;
	letter-spacing: -0.01em;
	font-variation-settings: "opsz" 144, "SOFT" 60;
}
.mma-wound__subtitle {
	display: block;
	font-family: var(--mma-body);
	font-style: italic;
	font-weight: 400;
	font-size: 0.98rem;
	color: var(--mma-clay);
	letter-spacing: -0.005em;
}

.mma-wound__symptom {
	background: var(--mma-paper-2);
	border-radius: var(--mma-r);
	padding: 1.25rem 1.5rem;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 2;
}
.mma-wound__symptom-label {
	display: block;
	font-family: var(--mma-body);
	font-size: 0.68rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--mma-clay);
	margin-bottom: 0.6rem;
	font-weight: 600;
}
.mma-wound__symptom p {
	margin: 0;
	font-family: var(--mma-body);
	font-style: italic;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--mma-ink);
	letter-spacing: -0.005em;
}

.mma-wound__desc {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--mma-ink-2);
	margin: 0 0 1.5rem;
	position: relative;
	z-index: 2;
	flex-grow: 1;
}

.mma-wound__intervention {
	margin-top: auto;
	padding: 1.25rem 1.5rem;
	background: rgba(198, 107, 78, 0.08);
	border-radius: var(--mma-r);
	position: relative;
	z-index: 2;
}
.mma-wound__intervention-label {
	display: block;
	font-family: var(--mma-body);
	font-size: 0.68rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--mma-clay);
	margin-bottom: 0.5rem;
	font-weight: 600;
}
.mma-wound__intervention p {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.6;
	color: var(--mma-ink);
}
.mma-wound__intervention p em { color: var(--mma-clay-dark); font-style: italic; font-weight: 500; font-family: var(--mma-body); }

/* === El Páramo — única diferencia: ocupa el ancho completo ===
   Mismo estilo, mismo orden, mismo número romano en la esquina.
   Solo adaptamos padding y limitamos el ancho del texto para que
   las líneas no sean kilométricas e ilegibles. */
.mma-wound--wide {
	grid-column: 1 / -1;
	padding: 3rem 2.5rem 2.5rem;
}
@media (min-width: 800px) {
	.mma-wound--wide {
		padding: 3.25rem 3.5rem 3rem;
	}
}
/* En wide el texto fluye al mismo ancho que las cards de symptom/intervención,
   para que todo "llegue al final" de la tarjeta de manera coherente. */
.mma-wound--wide .mma-wound__desc {
	padding: 0 0.25rem;
	line-height: 1.7;
}

.mma-wounds__cta {
	text-align: center;
	margin-top: 4rem;
}
.mma-wounds__cta-text {
	font-family: var(--mma-body);
	font-style: italic;
	font-size: 1.2rem;
	color: var(--mma-ink);
	margin: 0 0 1.75rem;
	line-height: 1.4;
}

/* ============================================================
   EL MÉTODO — timeline visual conectada
   ============================================================ */
.mma-method {
	background: var(--mma-paper-2);
	border-top: 1px solid var(--mma-border-soft);
	border-bottom: 1px solid var(--mma-border-soft);
	position: relative;
	overflow: hidden;
}
.mma-method::before,
.mma-method::after {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	pointer-events: none;
}
.mma-method::before {
	top: -200px; right: -150px;
	background: radial-gradient(circle, rgba(233, 198, 142, 0.4), transparent 60%);
}
.mma-method::after {
	bottom: -200px; left: -150px;
	background: radial-gradient(circle, rgba(198, 107, 78, 0.15), transparent 60%);
}

.mma-method__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 5rem;
	position: relative;
}
.mma-method__title {
	font-family: var(--mma-display);
	font-weight: 400;
	font-size: clamp(2rem, 1.3rem + 2.5vw, 3.5rem);
	color: var(--mma-ink);
	line-height: 1.05;
	margin: 0 0 1.5rem;
	letter-spacing: -0.015em;
	font-variation-settings: "opsz" 144, "SOFT" 50;
}
.mma-method__title em {
	font-style: italic;
	color: var(--mma-clay);
	font-variation-settings: "opsz" 144, "SOFT" 100;
}
.mma-method__lede {
	font-size: 1.15rem;
	line-height: 1.6;
	color: var(--mma-ink-2);
	margin: 0;
}

.mma-steps {
	max-width: 920px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	position: relative;
}

.mma-step {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	background: var(--mma-ivory);
	padding: 2.25rem 2rem;
	border-radius: var(--mma-r-lg);
	border: 1px solid var(--mma-border-soft);
	transition: all 0.4s ease;
	box-shadow: var(--mma-shadow);
	position: relative;
}
.mma-step:hover {
	transform: translateY(-3px);
	box-shadow: var(--mma-shadow-lg);
}
@media (min-width: 700px) {
	.mma-step { grid-template-columns: 120px 1fr; gap: 2.5rem; padding: 2.5rem 3rem; }
}

.mma-step__num {
	font-family: var(--mma-display);
	font-weight: 400;
	font-style: italic;
	font-size: 5rem;
	line-height: 0.85;
	color: var(--mma-clay);
	letter-spacing: -0.03em;
	font-variation-settings: "opsz" 144, "SOFT" 100;
	position: relative;
}
.mma-step__num::after {
	content: '';
	display: block;
	width: 60%;
	height: 1px;
	background: var(--mma-clay);
	margin-top: 1rem;
	opacity: 0.4;
}
@media (max-width: 700px) { .mma-step__num::after { display: none; } }

.mma-step__title {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	font-family: var(--mma-display);
	font-weight: 500;
	font-size: 1.65rem;
	color: var(--mma-ink);
	margin: 0 0 1rem;
	font-variation-settings: "opsz" 144, "SOFT" 70;
	letter-spacing: -0.01em;
}
.mma-step__title svg {
	color: var(--mma-clay);
	background: rgba(198, 107, 78, 0.1);
	border-radius: var(--mma-r-full);
	padding: 8px;
	width: 36px; height: 36px;
	flex-shrink: 0;
}
.mma-step p {
	margin: 0 0 0.75rem;
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--mma-ink-2);
}
.mma-step p strong { color: var(--mma-ink); font-weight: 600; }
.mma-step__note {
	display: block;
	margin-top: 1rem;
	font-family: var(--mma-body);
	font-style: italic;
	color: var(--mma-ink-3);
	font-size: 0.92rem;
	line-height: 1.6;
}

/* Línea roja — alarma cariñosa, no agresiva */
.mma-redline {
	margin-top: 3rem;
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
}
.mma-redline__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	background: linear-gradient(135deg, #FAEBE2, #FFE7DA);
	border-radius: var(--mma-r-lg);
	padding: 2rem;
	border: 1px solid rgba(198, 107, 78, 0.2);
	position: relative;
}
@media (min-width: 700px) {
	.mma-redline__inner { grid-template-columns: 80px 1fr; gap: 2rem; padding: 2.5rem 3rem; align-items: center; }
}
.mma-redline__icon {
	width: 64px;
	height: 64px;
	background: var(--mma-clay);
	color: var(--mma-paper);
	border-radius: var(--mma-r-full);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px -8px rgba(198, 107, 78, 0.5);
}
.mma-redline__title {
	font-family: var(--mma-display);
	font-style: italic;
	font-weight: 500;
	font-size: 1.7rem;
	color: var(--mma-clay-dark);
	margin: 0 0 0.6rem;
	font-variation-settings: "opsz" 144, "SOFT" 100;
}
.mma-redline p {
	margin: 0;
	color: var(--mma-ink);
	font-size: 1.02rem;
	line-height: 1.65;
}
.mma-redline p em { font-style: italic; color: var(--mma-clay-dark); font-weight: 500; font-family: var(--mma-body); }

/* ============================================================
   TARIFAS
   ============================================================ */
.mma-fees {
	background: var(--mma-paper);
	position: relative;
}
.mma-fees__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 4.5rem;
}
.mma-fees__head h2 {
	font-family: var(--mma-display);
	font-weight: 400;
	font-size: clamp(2rem, 1.3rem + 2.5vw, 3.5rem);
	color: var(--mma-ink);
	margin: 0 0 1.25rem;
	line-height: 1.05;
	letter-spacing: -0.015em;
	font-variation-settings: "opsz" 144, "SOFT" 50;
}
.mma-fees__head h2 em {
	font-style: italic;
	color: var(--mma-clay);
	font-variation-settings: "opsz" 144, "SOFT" 100;
}
.mma-fees__head p {
	font-size: 1.15rem;
	color: var(--mma-ink-2);
	margin: 0;
	line-height: 1.6;
}

.mma-fees__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	max-width: 1040px;
	margin: 0 auto;
}
@media (min-width: 800px) {
	.mma-fees__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

.mma-fee {
	position: relative;
	background: var(--mma-ivory);
	border: 1px solid var(--mma-border-soft);
	padding: 3rem 2.5rem;
	border-radius: var(--mma-r-lg);
	display: flex;
	flex-direction: column;
	transition: all 0.4s ease;
	box-shadow: var(--mma-shadow);
}
.mma-fee--featured {
	background: linear-gradient(180deg, var(--mma-ivory), #FAEBE2);
	border: 1px solid var(--mma-clay-soft);
	box-shadow: var(--mma-shadow-lg);
}
.mma-fee:hover {
	transform: translateY(-4px);
	box-shadow: var(--mma-shadow-lg);
}
.mma-fee--featured:hover {
	box-shadow: 0 28px 56px -28px rgba(198, 107, 78, 0.45);
}

.mma-fee__badge {
	position: absolute;
	top: -14px;
	right: 24px;
	font-family: var(--mma-body);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--mma-paper);
	background: var(--mma-clay);
	padding: 0.5rem 1rem;
	border-radius: var(--mma-r-full);
	box-shadow: 0 6px 16px -6px rgba(198, 107, 78, 0.5);
}

.mma-fee__title {
	font-family: var(--mma-display);
	font-weight: 500;
	font-size: 2rem;
	color: var(--mma-ink);
	margin: 0 0 0.5rem;
	line-height: 1.1;
	letter-spacing: -0.01em;
	font-variation-settings: "opsz" 144, "SOFT" 60;
}
.mma-fee__subtitle {
	font-family: var(--mma-body);
	font-style: italic;
	font-size: 1rem;
	color: var(--mma-ink-3);
	margin: 0 0 2rem;
	letter-spacing: -0.005em;
}

.mma-fee__price {
	padding: 1.75rem 0;
	margin: 0 0 2rem;
	border-top: 1px solid var(--mma-border);
	border-bottom: 1px solid var(--mma-border);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.mma-fee__price-amount {
	font-family: var(--mma-display);
	font-weight: 400;
	font-size: 3.5rem;
	color: var(--mma-clay);
	line-height: 1;
	letter-spacing: -0.02em;
	font-variation-settings: "opsz" 144, "SOFT" 60;
}
.mma-fee__price-amount--small {
	font-size: 2.25rem;
	font-style: italic;
	font-variation-settings: "opsz" 144, "SOFT" 100;
}
.mma-fee__price-suffix {
	font-family: var(--mma-body);
	font-size: 0.95rem;
	color: var(--mma-ink-3);
}

.mma-fee__list {
	margin: 0 0 2rem;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	flex-grow: 1;
}
.mma-fee__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 1rem;
	color: var(--mma-ink-2);
	line-height: 1.5;
}
.mma-fee__list svg {
	color: var(--mma-clay);
	flex-shrink: 0;
	margin-top: 0.2rem;
	width: 18px; height: 18px;
}

/* ============================================================
   FAQ — acordeón limpio cálido
   ============================================================ */
.mma-faq {
	background: var(--mma-paper-2);
	border-top: 1px solid var(--mma-border-soft);
	border-bottom: 1px solid var(--mma-border-soft);
}
.mma-faq__head {
	text-align: center;
	margin-bottom: 3.5rem;
}
.mma-faq__head h2 {
	font-family: var(--mma-display);
	font-weight: 400;
	font-size: clamp(2rem, 1.3rem + 2vw, 2.8rem);
	color: var(--mma-ink);
	margin: 0;
	line-height: 1.1;
	letter-spacing: -0.015em;
	font-variation-settings: "opsz" 144, "SOFT" 50;
}
.mma-faq__head h2 em {
	font-style: italic;
	color: var(--mma-clay);
	font-variation-settings: "opsz" 144, "SOFT" 100;
}
.mma-faq__list {
	max-width: 820px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.mma-faq details {
	background: var(--mma-ivory);
	border-radius: var(--mma-r);
	border: 1px solid var(--mma-border-soft);
	transition: all 0.3s ease;
	overflow: hidden;
}
.mma-faq details[open] {
	border-color: var(--mma-clay-soft);
	box-shadow: var(--mma-shadow);
}
.mma-faq summary {
	cursor: pointer;
	padding: 1.5rem 1.75rem;
	font-family: var(--mma-body);
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--mma-ink);
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
	transition: color 0.25s ease;
	letter-spacing: -0.005em;
}
.mma-faq summary:hover { color: var(--mma-clay); }
.mma-faq details[open] summary { color: var(--mma-clay); }
.mma-faq summary::-webkit-details-marker { display: none; }
.mma-faq summary::after {
	content: '';
	width: 28px; height: 28px;
	background: var(--mma-paper-2);
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C66B4E' stroke-width='2'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 14px;
	transition: all 0.3s ease;
	flex-shrink: 0;
}
.mma-faq details[open] summary::after {
	transform: rotate(45deg);
	background-color: var(--mma-clay);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FAF5EC' stroke-width='2'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
}
.mma-faq details p {
	margin: 0;
	padding: 0 1.75rem 1.75rem;
	color: var(--mma-ink-2);
	line-height: 1.7;
	font-size: 1rem;
}

/* ============================================================
   FORMULARIO
   ============================================================ */
.mma-contact {
	background: var(--mma-paper);
	position: relative;
}
.mma-contact__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 3.5rem;
}
.mma-contact__head h2 {
	font-family: var(--mma-display);
	font-weight: 400;
	font-size: clamp(2.2rem, 1.4rem + 2.5vw, 3.5rem);
	color: var(--mma-ink);
	margin: 0 0 1.25rem;
	line-height: 1.05;
	letter-spacing: -0.015em;
	font-variation-settings: "opsz" 144, "SOFT" 50;
}
.mma-contact__head h2 em {
	font-style: italic;
	color: var(--mma-clay);
	font-variation-settings: "opsz" 144, "SOFT" 100;
}
.mma-contact__head p {
	font-size: 1.15rem;
	color: var(--mma-ink-2);
	margin: 0;
	line-height: 1.6;
}

.mma-form-wrap {
	max-width: 760px;
	margin: 0 auto;
	background: var(--mma-ivory);
	padding: 3rem 2rem;
	border: 1px solid var(--mma-border-soft);
	border-radius: var(--mma-r-lg);
	box-shadow: var(--mma-shadow-lg);
}
@media (min-width: 600px) { .mma-form-wrap { padding: 3.5rem; } }

.mma-form-wrap .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.mma-form-wrap .mma-form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 600px) { .mma-form-wrap .mma-form-grid { grid-template-columns: 1fr 1fr; } }

.mma-form-wrap label {
	display: block;
	font-family: var(--mma-body);
	font-size: 0.74rem;
	color: var(--mma-clay);
	margin-bottom: 0.55rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1.3;
}
.mma-form-wrap p { margin: 0; }

/* Los <br /> que CF7 mete entre label-texto y control no aportan separación útil
   porque ya damos margin al label. Los anulamos para evitar gap inconsistente. */
.mma-form-wrap label br {
	display: none;
}

/* El wrapper de control se vuelve block para que el input vaya en su propia línea
   sin depender del <br /> anulado. */
.mma-form-wrap .wpcf7-form-control-wrap {
	display: block;
}

.mma-form-wrap input[type="text"],
.mma-form-wrap input[type="email"],
.mma-form-wrap input[type="tel"],
.mma-form-wrap textarea,
.mma-form-wrap select {
	width: 100%;
	background: var(--mma-paper);
	border: 1.5px solid var(--mma-border);
	border-radius: var(--mma-r);
	color: var(--mma-ink);
	padding: 0.95rem 1.1rem;
	font-family: var(--mma-body);
	font-size: 1rem;
	font-weight: 400;
	transition: all 0.3s ease;
	box-sizing: border-box;
}
.mma-form-wrap input:focus,
.mma-form-wrap textarea:focus,
.mma-form-wrap select:focus {
	outline: none;
	border-color: var(--mma-clay);
	background: var(--mma-ivory);
	box-shadow: 0 0 0 4px rgba(198, 107, 78, 0.1);
}
.mma-form-wrap textarea { min-height: 140px; resize: vertical; }
.mma-form-wrap select {
	appearance: none;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23C66B4E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
}
.mma-form-wrap input::placeholder,
.mma-form-wrap textarea::placeholder {
	color: var(--mma-mute);
	font-style: italic;
	font-family: var(--mma-body);
}

/* === MODALIDAD: radios como pills equivalentes ===
   Jerarquía real CF7:
   .mma-modality > .wpcf7-form-control-wrap > .wpcf7-radio > .wpcf7-list-item (input + .wpcf7-list-item-label)
*/
.mma-modality {
	display: block;
}
.mma-modality .wpcf7-radio {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}
.mma-modality .wpcf7-list-item {
	margin: 0;
	flex: 1 1 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	background: var(--mma-paper);
	border: 1.5px solid var(--mma-border);
	border-radius: var(--mma-r-full);
	padding: 0.85rem 1rem;
	cursor: pointer;
	font-family: var(--mma-body);
	font-size: 0.92rem;
	font-weight: 500;
	color: var(--mma-ink-2);
	transition: all 0.25s ease;
	text-transform: none;
	letter-spacing: 0;
}
.mma-modality .wpcf7-list-item:hover {
	border-color: var(--mma-clay-soft);
}
.mma-modality .wpcf7-list-item:has(input:checked) {
	border-color: var(--mma-clay);
	color: var(--mma-clay);
	background: rgba(198, 107, 78, 0.08);
}
.mma-modality .wpcf7-list-item input[type="radio"] {
	accent-color: var(--mma-clay);
	margin: 0;
	flex-shrink: 0;
	cursor: pointer;
}
.mma-modality .wpcf7-list-item-label {
	display: inline;
	cursor: pointer;
}

.mma-accept .wpcf7-list-item { margin: 0; display: block; }
.mma-accept .wpcf7-acceptance { display: block; }
.mma-accept label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: var(--mma-ink-3);
	font-family: var(--mma-body);
	font-size: 0.88rem;
	line-height: 1.55;
	cursor: pointer;
	margin: 0;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
}
.mma-accept label br { display: inline; }
.mma-accept input[type="checkbox"] {
	accent-color: var(--mma-clay);
	margin-top: 0.25rem;
	flex-shrink: 0;
	width: 18px; height: 18px;
}

.mma-form-wrap input[type="submit"],
.mma-form-wrap .wpcf7-submit {
	background: var(--mma-clay);
	color: var(--mma-paper);
	border: none;
	padding: 1.2rem 2rem;
	font-family: var(--mma-body);
	font-weight: 600;
	font-size: 1.05rem;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	margin-top: 1rem;
	border-radius: var(--mma-r-full);
	box-shadow: 0 10px 24px -10px rgba(198, 107, 78, 0.5);
}
.mma-form-wrap input[type="submit"]:hover,
.mma-form-wrap .wpcf7-submit:hover {
	background: var(--mma-clay-dark);
	transform: translateY(-2px);
	box-shadow: 0 16px 36px -14px rgba(198, 107, 78, 0.65);
}

.mma-form-wrap .wpcf7 form .wpcf7-response-output {
	border: 1.5px solid var(--mma-clay);
	background: rgba(198, 107, 78, 0.08);
	color: var(--mma-ink);
	padding: 1.25rem 1.5rem;
	margin-top: 1.5rem;
	border-radius: var(--mma-r);
	font-size: 0.98rem;
	font-family: var(--mma-body);
}
.mma-form-wrap .wpcf7-not-valid-tip {
	color: var(--mma-clay-dark);
	font-size: 0.85rem;
	margin-top: 0.4rem;
	font-family: var(--mma-body);
	font-style: normal;
}
.mma-form-disclaimer {
	color: var(--mma-ink-3);
	font-family: var(--mma-body);
	font-style: italic;
	font-size: 0.9rem;
	text-align: center;
	margin: 0.5rem 0 0;
	line-height: 1.6;
}

/* ============================================================
   BRIDGE AL BLOG
   ============================================================ */
.mma-bridge {
	background: var(--mma-paper-2);
	padding: clamp(4rem, 8vw, 7rem) var(--mma-pad-x);
	text-align: center;
	position: relative;
	border-top: 1px solid var(--mma-border-soft);
}
.mma-bridge__inner {
	max-width: 640px;
	margin: 0 auto;
}
.mma-bridge h3 {
	font-family: var(--mma-display);
	font-weight: 400;
	font-size: clamp(2rem, 1.4rem + 1.8vw, 2.8rem);
	color: var(--mma-ink);
	margin: 0 0 1rem;
	line-height: 1.1;
	letter-spacing: -0.015em;
	font-variation-settings: "opsz" 144, "SOFT" 50;
}
.mma-bridge h3 em {
	font-style: italic;
	color: var(--mma-clay);
	font-variation-settings: "opsz" 144, "SOFT" 100;
}
.mma-bridge p {
	color: var(--mma-ink-2);
	max-width: 480px;
	margin: 0 auto 2.25rem;
	line-height: 1.7;
	font-size: 1.05rem;
}

/* ============================================================
   FOOTER cálido
   ============================================================ */
.mma-footer {
	background: var(--mma-night);
	color: var(--mma-paper);
	padding: 4rem var(--mma-pad-x) 2.5rem;
}
.mma-footer__inner {
	max-width: var(--mma-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}
@media (min-width: 700px) {
	.mma-footer__inner { grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; }
}

.mma-footer__brand-block {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.mma-footer__brand {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	color: var(--mma-honey);
}
.mma-footer__name {
	font-family: var(--mma-display);
	font-style: italic;
	font-size: 1.4rem;
	color: var(--mma-paper);
	font-variation-settings: "opsz" 14, "SOFT" 100;
}
.mma-footer__motto {
	font-family: var(--mma-body);
	font-style: italic;
	color: var(--mma-honey);
	font-size: 0.95rem;
	line-height: 1.65;
	max-width: 320px;
}

.mma-footer__col h4 {
	font-family: var(--mma-body);
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--mma-honey);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin: 0 0 1.25rem;
}
.mma-footer__col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}
.mma-footer__col a {
	color: rgba(250, 245, 236, 0.8);
	font-size: 0.95rem;
	transition: color 0.25s ease;
}
.mma-footer__col a:hover { color: var(--mma-honey); }

.mma-footer__bottom {
	padding-top: 2rem;
	border-top: 1px solid rgba(250, 245, 236, 0.1);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: center;
	text-align: center;
	font-size: 0.85rem;
	color: rgba(250, 245, 236, 0.5);
}
@media (min-width: 700px) {
	.mma-footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ============================================================
   Scroll reveal — sutil pero presente
   ============================================================ */
.mma-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.85s cubic-bezier(.2,.7,.2,1), transform 0.85s cubic-bezier(.2,.7,.2,1);
}
.mma-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.mma-reveal[data-delay="1"] { transition-delay: 0.1s; }
.mma-reveal[data-delay="2"] { transition-delay: 0.2s; }
.mma-reveal[data-delay="3"] { transition-delay: 0.3s; }
.mma-reveal[data-delay="4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
	.mma-reveal { opacity: 1; transform: none; transition: none; }
	.mma-hero__sun { animation: none; }
	html { scroll-behavior: auto; }
}

/* ============================================================
   Tweaks móvil
   ============================================================ */
@media (max-width: 600px) {
	.mma-hero { min-height: auto; padding: 7rem var(--mma-pad-x) 4rem; }
	.mma-hero__sun { display: none; }
	.mma-section { padding-block: 5rem; }
	.mma-wound { padding: 2.25rem 1.75rem 2rem; }
	.mma-fee { padding: 2.5rem 1.75rem; }
	.mma-form-wrap { padding: 2.5rem 1.5rem; }
	.mma-redline__inner { padding: 2rem 1.5rem; }
}

/* anchor offset */
section[id] { scroll-margin-top: 100px; }
