/* =======================================================================
   styles-single.css
   Shared base styles for single-page scrollable landings
   (meditacion, meditacion-individual, etc.)
   Browser-default 16px rem base -- no 62.5% trick
   ======================================================================= */


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

html, body, h1, h2, h3, h4, h5, h6, p, figure, blockquote,
ul, ol, dl, dd { margin: 0; padding: 0; }

body { line-height: 1.4; background: #fff; color: #474747; }

img, picture, video, canvas, svg { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; }
a { color: inherit; }


/* --- Base Typography ----------------------------------------------------- */
html, body {
	font-family: TikTok Sans, ui-rounded, 'Hiragino Maru Gothic ProN',
		Quicksand, Comfortaa, Manjari, 'Arial Rounded MT Bold', Calibri,
		source-sans-pro, sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-variation-settings: "slnt" 0, "wdth" 100;
}

.ff-t {
	font-family: Bebas Neue, ui-rounded, 'Hiragino Maru Gothic ProN',
		Quicksand, Comfortaa, Manjari, 'Arial Rounded MT Bold', Calibri,
		source-sans-pro, sans-serif;
}

.dib {
	display: inline-block;
}

/* --- Header Component ---------------------------------------------------- */
.entry-header {
	margin: 0;
}

.entry-header--multi {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
	gap: 0.75rem;
	padding: 0.65rem 1rem;
}

.entry-header--multi .entry-title,
.entry-header--multi .logo__header {
	flex: 0 1 auto;
}

.entry-header--multi .entry-subtitle,
.entry-header--multi .entry-title {
	margin: 0;
	line-height: 1.15;
	position: relative;
}

.entry-header--multi .entry-title:not(:only-child) {
	margin-bottom: 0;
}
.entry-header--multi .entry-subtitle:not(:only-child) {
	margin-top: 0.15rem;
}

.logo__header {
	display: inline-block;
}
.logo__header img {
	display: block;
	width: 60px;
	max-width: 100%;
}

.entry-title {
	font-weight: 300;
	text-transform: uppercase;
}

.entry-title::after {
	content: '';
	display: block;
	height: 0.04em;
	position: absolute;
	bottom: -0.15em;
	left: 0;
	right: 0;
	width: 100%;
	z-index: -1;
	background: #bf9f80;
}

.entry-title__fzx {
	color: #2c3e50;
	font-weight: 700;
	font-size: 1.55rem;
}

.entry-subtitle {
	font-weight: 300;
	line-height: 1.25;
}

.entry-subtitle__fzx {
	color: #6c757d;
	font-size: 0.92rem;
}

.logo__texto {
	flex: 1 1 auto;
}

@media (max-width: 369px) {
	.logo__header img { width: 50px; }
	.entry-title__fzx { font-size: 1.3rem; }
	.entry-subtitle__fzx { font-size: 0.82rem; }
}

@media (min-width: 768px) {
	.logo__header img { width: 68px; }
	.entry-title__fzx { font-size: 1.75rem; }
	.entry-subtitle__fzx { font-size: 1rem; }
	.entry-header--multi { gap: 1rem; }
}


/* --- Footer Component ---------------------------------------------------- */
.footer {
	margin-top: auto;
	background: #f8f9fa;
	padding: 0.75rem 0;
	text-align: center;
}
.footer__content {
	padding: 0 1rem;
	font-size: 0.85rem;
	color: #6c757d;
}


/* --- Floating WhatsApp --------------------------------------------------- */
.floating-whatsapp {
	position: fixed;
	right: 0.9rem;
	bottom: 1rem;
	z-index: 99;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
	transition: transform 0.2s;
}
.floating-whatsapp:hover {
	transform: scale(1.08);
}

@media (min-width: 768px) {
	.floating-whatsapp {
		right: 1.5rem;
		bottom: 1.5rem;
		width: 60px;
		height: 60px;
	}
}


/* =========================================================================
   MEDITACION LANDING
   Page-specific styles for /meditacion (and variants)
   ========================================================================= */

/* --- Custom Properties --------------------------------------------------- */
:root {
	--med-accent: #bf9f80;
	--med-accent-dark: #b8956b;
	--med-accent-gradient: linear-gradient(135deg, #c9a77c 0%, #b8956b 100%);
	--med-text: #2c3e50;
	--med-text-soft: #555;
	--med-text-muted: #6c757d;
	--med-bg: #fffdfc;
	--med-card-bg: #fff;
	--med-border: rgba(191, 159, 128, 0.2);
	--med-border-solid: rgba(191, 159, 128, 0.35);
	--med-mp-accent: #00b1ea;
	--med-success: #25d366;
	--med-error: #e74c3c;
	--med-radius: 10px;
	--med-max-w: 720px;
}

/* --- Base override ------------------------------------------------------- */
.meditacion-landing {
	background-color: var(--med-bg);
}

/* --- Main Container ------------------------------------------------------ */
.meditacion-main {
	max-width: var(--med-max-w);
	margin: 0 auto;
	padding: 0 1rem 2rem;
	text-align: center;
}

/* --- Header -------------------------------------------------------------- */
.meditacion-header { cursor: pointer; justify-content: center; }
.meditacion-header .logo__texto { flex: 0 1 auto; }
.meditacion-header .entry-title { margin-bottom: 0.5rem; }
.meditacion-header .entry-title::after { display: none; }
.meditacion-header .logo__texto::after {
	content: '';
	display: block;
	height: 2px;
	margin-top: 0.25rem;
	background: #bf9f80;
}

/* --- Content Sections ---------------------------------------------------- */
.med-section {
	padding: 1.4rem 0;
}
.med-section + .med-section {
	border-top: 1px solid var(--med-border);
}
.med-title {
	font-family: Bebas Neue, sans-serif;
	font-size: 1.75rem;
	line-height: 1.12;
	font-weight: 700;
	margin: 0 0 0.65rem;
	letter-spacing: 0.02em;
	color: var(--med-text);
}
.med-lead {
	font-size: 1.68rem;
	line-height: 1.18;
	margin: 0;
}
.med-p {
	font-size: 1.4rem;
	line-height: 1.4;
	margin: 0.6rem 0 0;
}

/* --- Lists --------------------------------------------------------------- */
.med-list {
	list-style: none;
	margin: 0.85rem 0 0;
	padding: 0;
	display: inline-block;
	text-align: left;
}
.med-list li {
	position: relative;
	padding-left: 1.15rem;
	margin-bottom: 0.55rem;
	line-height: 1.32;
	font-size: 1.3rem;
}
.med-list li::before {
	content: "\00B7";
	position: absolute;
	left: 0;
	top: -0.25em;
	color: var(--med-accent);
	font-weight: 700;
	font-size: 1.5em;
}

/* --- Pillar Cards -------------------------------------------------------- */
.med-pillars {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.65rem;
	margin-top: 0.85rem;
}
.med-pillar {
	border: 1px solid var(--med-border-solid);
	border-radius: var(--med-radius);
	padding: 0.8rem 0.9rem;
	background: var(--med-card-bg);
}
.med-pillar strong {
	display: block;
	font-size: 1.16rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	margin-bottom: 0.15rem;
	color: var(--med-accent-dark);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
	text-transform: uppercase;
}
.med-pillar span {
	font-size: 1.15rem;
	color: var(--med-text-soft);
	line-height: 1.45;
}

/* --- Note / Callout ------------------------------------------------------ */
.med-note {
	border-left: 3px solid var(--med-accent);
	padding: 0.85rem 0 0.85rem 0.9rem;
	background: rgba(191, 159, 128, 0.07);
	border-radius: 0 var(--med-radius) var(--med-radius) 0;
	margin-top: 0.5rem;
}
.med-note p {margin: 0;line-height: 1.6;font-size: 1.2rem;}

.med-quote {
	font-size: 1.35rem;
	line-height: 1.25;
	font-style: italic;
	margin: 0.25rem 0 0.5rem;
	color: var(--med-text);
}

/* --- Photos -------------------------------------------------------------- */
.med-photo { margin: 1.1rem 0 0.4rem; }
.med-photo img {
	display: block;
	width: 100%;
	max-width: 580px;
	height: auto;
	border-radius: var(--med-radius);
	margin: 0 auto;
}

/* --- Group Cards (Modalidad) --------------------------------------------- */
.med-groups {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.5rem;
	margin-top: 0.85rem;
}
.med-group-item {
	border: 1px solid rgba(191, 159, 128, 0.28);
	border-radius: 8px;
	padding: 0.7rem 0.85rem;
	background: var(--med-card-bg);
}
.med-group-item strong {
	font-weight: 600;
}
.med-group-item--wide {
	grid-column: 1 / -1;
}

/* --- CTA Buttons --------------------------------------------------------- */
.med-cta { margin-top: 1.1rem; text-align: center; }
.med-cta-btn {
	display: inline-block;
	min-width: 220px;
	max-width: 100%;
	padding: 0.85em 2em;
	background: var(--med-accent-gradient);
	color: #fff;
	border: none;
	border-radius: 2em;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	-webkit-appearance: none;
	appearance: none;
}
.med-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(201, 167, 124, 0.4);
	color: #fff;
}
.med-cta-scroll {
	background: transparent;
	color: var(--med-accent-dark);
	border: 2px solid var(--med-accent);
	font-size: 1rem;
	padding: 0.7em 1.8em;
}
.med-cta-scroll:hover {
	background: var(--med-accent);
	color: #fff;
}
.med-final { text-align: center; }
.med-final-phrase {
	font-size: 1.15rem;
	font-style: italic;
	margin-top: 1.2rem;
	color: var(--med-text-soft);
}

.reservar-section-title {
	font-size: 1.5rem;
}

.lead-intro {
	font-size: 1.3rem;
}

/* --- Reservation Flow ---------------------------------------------------- */
.reservar-section { padding-top: 1.6rem; }
.reservar-flow {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.5s ease, opacity 0.35s ease, margin 0.3s ease;
	margin-top: 0;
}
.reservar-flow.active {
	max-height: 3000px;
	opacity: 1;
	margin-top: 1.2rem;
}
.reservar-card {
	background: var(--med-card-bg);
	border-radius: var(--med-radius);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
	padding: 1.5rem 1.25rem;
}
.reservar-step { margin-bottom: 1.25rem; }
.reservar-step:last-child { margin-bottom: 0; }
.reservar-step-title {
	font-family: Bebas Neue, sans-serif;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--med-text);
	margin: 0 0 0.65rem;
	letter-spacing: 0.02em;
}
.reservar-divider {
	border: none;
	border-top: 1px solid var(--med-border);
	margin: 1.25rem 0;
}

/* --- Lead Form ----------------------------------------------------------- */
.lead-fields {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}
.lead-field label {
	display: block;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--med-text);
	margin-bottom: 0.2rem;
}
.lead-field input {
	width: 100%;
	padding: 0.7em 0.9em;
	border: 1.5px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
	color: #333;
	background: #fff;
	transition: border-color 0.2s;
	-webkit-appearance: none;
	appearance: none;
}
.lead-field input:focus {
	outline: none;
	border-color: var(--med-accent);
}
.lead-field input.has-error { border-color: var(--med-error); }
.lead-error {
	font-size: 0.8rem;
	color: var(--med-error);
	margin-top: 0.2rem;
	display: none;
}
.lead-error.visible { display: block; }
.lead-honeypot {
	position: absolute;
	left: -9999px;
	opacity: 0;
	height: 0;
	width: 0;
	overflow: hidden;
}
.btn-lead-submit {
	margin-top: 0.4rem;
	padding: 0.75em 1.5em;
	background: var(--med-accent);
	color: #fff;
	border: none;
	border-radius: 2em;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s, opacity 0.2s;
	-webkit-appearance: none;
	appearance: none;
}
.btn-lead-submit:hover { background: var(--med-accent-dark); }
.btn-lead-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.lead-summary {
	padding: 0.7em 1em;
	background: #f0ebe4;
	border-radius: 8px;
	font-size: 0.95rem;
	color: #5a4a3a;
	line-height: 1.4;
}
.lead-summary strong { font-weight: 600; }

/* --- Date Options -------------------------------------------------------- */
.date-options {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.date-option {
	display: flex;
	align-items: center;
	padding: 0.65em 1em;
	border: 2px solid #e0d9d2;
	border-radius: 8px;
	cursor: pointer;
	background: var(--med-card-bg);
	transition: border-color 0.2s, background 0.2s;
	gap: 0.75rem;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}
.date-option:hover:not(.disabled) { border-color: var(--med-accent); background: #faf8f5; }
.date-option.selected { border-color: var(--med-accent); background: #faf8f5; }
.date-option.disabled { opacity: 0.55; cursor: not-allowed; background: #f8f9fa; }
.date-option input[type="radio"] { display: none; }
.date-radio {
	width: 18px; height: 18px;
	border: 2px solid #ccc;
	border-radius: 50%;
	flex-shrink: 0;
	position: relative;
}
.date-option.selected .date-radio { border-color: var(--med-accent); }
.date-option.selected .date-radio::after {
	content: '';
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 9px; height: 9px;
	background: var(--med-accent);
	border-radius: 50%;
}
.date-info { flex: 1; }
.date-label { font-weight: 600; color: var(--med-text); display: block; font-size: 1.05rem; }
.date-sublabel { font-size: 0.88rem; color: var(--med-text-muted); }
.date-spots-warning { color: #d69e2e; font-weight: 500; }
.date-spots-full { color: #c53030; }

.no-dates-msg {
	text-align: center;
	padding: 1rem 0.5rem;
	color: var(--med-text-soft);
}
.no-dates-msg p { margin: 0 0 0.75rem; font-size: 1.05rem; }
.dates-loading { text-align: center; padding: 1rem 0; color: var(--med-text-muted); }

/* --- Payment Accordion --------------------------------------------------- */
.pay-accordion {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}
.pay-card {
	border-radius: 0.75em;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}
.pay-card--transfer { border-left: 4px solid var(--med-accent); }
.pay-card--mp { border-left: 4px solid var(--med-mp-accent); }

.pay-card__header {
	display: flex;
	align-items: center;
	gap: 0.8em;
	width: 100%;
	padding: 1em 1.1em;
	background: white;
	border: 2px solid #dee2e6;
	border-left: none;
	border-radius: 0 0.75em 0.75em 0;
	cursor: pointer;
	transition: all 0.2s;
	text-align: left;
	font-family: inherit;
	font-size: inherit;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}
.pay-card__header:hover { background: #faf8f5; border-color: var(--med-accent); }
.pay-card--mp .pay-card__header:hover { border-color: var(--med-mp-accent); }
.pay-card__header[aria-expanded="true"] {
	background: #faf8f5;
	border-color: var(--med-accent);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.pay-card--mp .pay-card__header[aria-expanded="true"] { border-color: var(--med-mp-accent); }

.pay-card__icon { font-size: 1.8em; flex-shrink: 0; }
.pay-card__icon img { height: 1.5em; width: auto; }
.pay-card__text { flex: 1; min-width: 0; }
.pay-card__title {
	display: block;
	font-size: 1.15em;
	font-weight: 700;
	color: var(--med-text);
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 1.2;
}
.pay-card__subtitle {
	display: block;
	font-size: 0.88em;
	color: var(--med-text-muted);
	font-weight: 400;
	line-height: 1.3;
	margin-top: 0.1em;
}
.pay-card__chevron {
	font-size: 1.1em;
	color: #adb5bd;
	transition: transform 0.3s;
	flex-shrink: 0;
}
.pay-card__header[aria-expanded="true"] .pay-card__chevron {
	transform: rotate(180deg);
	color: var(--med-text-muted);
}

.pay-card__body {
	background: #f8f9fa;
	border: 2px solid var(--med-accent);
	border-top: 1px solid #e9ecef;
	border-left: none;
	border-radius: 0 0 0.75em 0;
	padding: 1.15em;
	display: none;
	animation: payOpen 0.3s ease;
}
.pay-card--mp .pay-card__body { border-color: var(--med-mp-accent); border-top-color: #e9ecef; }
.pay-card__body.active { display: block; }
@keyframes payOpen {
	from { opacity: 0; transform: translateY(-6px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Amount radio options (shared transfer + MP) */
.amount-options {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	max-width: 340px;
	margin: 0 auto;
}
.amount-opt {
	display: flex;
	align-items: center;
	padding: 0.55em 1em 0.45em;
	border: 2px solid #dee2e6;
	border-radius: 8px;
	cursor: pointer;
	background: white;
	transition: all 0.2s;
	gap: 0.75em;
	user-select: none;
}
.amount-opt:hover { border-color: var(--med-accent); }
.amount-opt.selected { border-color: var(--med-accent); background: #faf8f5; }
.amount-opt input[type="radio"] { display: none; }
.amount-radio {
	width: 18px; height: 18px;
	border: 2px solid #dee2e6;
	border-radius: 50%;
	flex-shrink: 0;
	position: relative;
}
.amount-opt.selected .amount-radio { border-color: var(--med-accent); }
.amount-opt.selected .amount-radio::after {
	content: '';
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 9px; height: 9px;
	background: var(--med-accent);
	border-radius: 50%;
}
.amount-info { flex: 1; }
.amount-label { font-weight: 600; color: var(--med-text); display: block; font-size: 1.05em; line-height: 1; }
.amount-sublabel { font-size: 0.9em; color: var(--med-text-muted); line-height: 1; }
.amount-price {
	font-weight: 700;
	font-size: 1.25em;
	color: var(--med-accent);
	margin-left: auto;
	flex-shrink: 0;
}

/* --- Transfer: Alias Info ------------------------------------------------ */
.alias-panel {
	margin-top: 1em;
	text-align: center;
	font-size: 1.1em;
}
.alias-panel h5 {
	font-size: 1.15em;
	font-weight: 600;
	color: var(--med-text-muted);
	margin: 0 0 0.5em;
}
.alias-box {
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	gap: 0.15em;
	background: white;
	padding: 1em;
	border-radius: 8px;
	margin-bottom: 0.3em;
}
.alias-box .alias-label { font-size: 0.92em; color: var(--med-text-muted); }
.alias-box .alias-value {
	font-size: 1.6em;
	font-weight: 700;
	color: var(--med-success);
	font-family: 'Courier New', monospace;
	letter-spacing: 1px;
}
.alias-copy-btn {
	background: var(--med-accent);
	border: none;
	padding: 0.3em 0.9em;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1em;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	transition: background 0.2s;
}
.alias-copy-btn:hover { background: var(--med-accent-dark); }
.alias-name { text-align: center; font-size: 1.1em; color: var(--med-text-muted); margin: 0.3em 0; }
.alias-instructions {
	background: white;
	border-radius: 8px;
	padding: 1em;
	margin: 0.5em 0;
	text-align: left;
	font-size: 0.95em;
}
.alias-instructions ol { margin: 0; padding-left: 1.4em; }
.alias-instructions li { margin: 0 0 0.4em; color: var(--med-text-muted); line-height: 1.3; }
.alias-instructions li:last-child { margin-bottom: 0; }

.btn-whatsapp-inline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	padding: 0.4em 0.75em;
	background: var(--med-success);
	color: white;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	transition: background 0.2s, transform 0.2s;
	margin-top: 0.5em;
	font-size: 1em;
}
.btn-whatsapp-inline:hover { background: #128C7E; transform: translateY(-1px); color: #fff; }

/* --- MercadoPago Panel --------------------------------------------------- */
.btn-mp-pay {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6em;
	width: 100%;
	padding: 1em 1.5em;
	background: var(--med-mp-accent);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 1.15em;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
	margin-top: 0.75em;
	-webkit-appearance: none;
	appearance: none;
}
.btn-mp-pay:hover {
	background: #0090c1;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 177, 234, 0.35);
}
.btn-mp-pay:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-mp-pay img { height: 1.5em; width: auto; background: white; border-radius: 5px; padding: 0.2em; }
.mp-note {
	text-align: center;
	color: var(--med-text-muted);
	font-size: 0.88em;
	margin-top: 0.6em;
	line-height: 1.4;
}
.mp-loading {
	text-align: center;
	padding: 1.5em;
	color: var(--med-text-soft);
}
.mp-progress {
	width: 100%;
	max-width: 280px;
	height: 5px;
	background: #eee;
	border-radius: 3px;
	margin: 0.5em auto 0;
	overflow: hidden;
}
.mp-progress__bar {
	width: 0%;
	height: 100%;
	background: var(--med-accent-gradient);
	border-radius: 3px;
	transition: width 0.4s ease-out;
}

/* --- Error / Status Messages --------------------------------------------- */
.reservar-error {
	padding: 0.75em 1em;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 8px;
	color: #991b1b;
	font-size: 0.95em;
	margin-top: 0.75em;
	line-height: 1.4;
}

/* --- Meditacion Responsive ----------------------------------------------- */
@media (min-width: 520px) {
	.med-pillars { grid-template-columns: 1fr 1fr; }
	.med-groups { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
	.meditacion-main { padding-left: 1.5rem; padding-right: 1.5rem; }
	.med-title {font-size: 2.2rem;}
	.med-lead { font-size: 1.9rem; line-height: 1.2; }
	.med-p { font-size: 1.45rem; line-height: 1.45; }
	.med-list li { font-size: 1.35rem; }
	.med-pillars { gap: 0.85rem; }
	.med-groups { gap: 0.7rem; }
	.reservar-card { padding: 2rem 1.75rem; }
}
@media (min-width: 380px) and (max-width: 520px) {
	.med-section { padding: 1.35rem 0; }
	.med-title { font-size: 1.82rem; }
	.med-lead { font-size: 1.62rem; line-height: 1.18; }
	.med-p { font-size: 1.33rem; line-height: 1.4; }
	.med-list li { font-size: 1.22rem; line-height: 1.3; }
	.med-pillar span { font-size: 1.12rem; }
	.med-cta-btn { min-width: 210px; padding: 0.8em 1.5em; font-size: 1.03rem; }
}
@media (max-width: 379px) {
	.meditacion-main { padding-left: 0.85rem; padding-right: 0.85rem; }
	.med-section { padding: 1.2rem 0; }
	.med-title { font-size: 1.62rem; line-height: 1.1; }
	.med-lead { font-size: 1.45rem; line-height: 1.16; }
	.med-p { font-size: 1.24rem; line-height: 1.38; }
	.med-list li { font-size: 1.12rem; line-height: 1.28; margin-bottom: 0.48rem; }
	.med-pillar { padding: 0.72rem 0.72rem; }
	.med-pillar strong { font-size: 1.08rem; }
	.med-pillar span { font-size: 1.05rem; line-height: 1.4; }
	.med-group-item { padding: 0.62rem 0.72rem; }
	.med-cta-btn { min-width: 0; width: 100%; padding: 0.8em 1.2em; font-size: 0.98rem; }
}
@media (max-width: 480px) {
	.reservar-card { padding: 1.15rem 1rem; }
	.amount-price { font-size: 1.1em; }
	.pay-card__header { padding: 0.85em 0.9em; gap: 0.6em; }
	.pay-card__title { font-size: 1.05em; }
}
