/* Checks de aceptación alineados horizontalmente y responsivos */
.rcex-checks {
	width: 100%;
	margin: 0 0 10px 0;
	padding: 0;
}
.rcex-check-label {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	width: 100%;
	margin: 0 0 4px 0;
	font-size: 15px;
	line-height: 1.4;
	gap: 10px;
	white-space: normal;
	box-sizing: border-box;
	justify-content: flex-start;
}
.rcex-check-input {
	margin: 2px 8px 0 0;
	width: 18px;
	height: 18px;
	accent-color: #79B5E2;
	flex-shrink: 0;
}
.rcex-check-text {
	text-align: left;
	display: block;
	word-break: break-word;
	white-space: normal;
	flex: 1 1 0%;
	min-width: 0;
}
@media (max-width: 600px) {
	.rcex-check-label {
		font-size: 14px;
		gap: 6px;
		white-space: nowrap;
	}
	.rcex-check-input {
		width: 16px;
		height: 16px;
	}
	.rcex-check-text {
		font-size: 14px;
		white-space: normal;
	}
}
/* Checks alineados profesionalmente */
.rcex-checks {
	width: 100%;
	margin: 0;
	padding: 0;
}
.rcex-check-label {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0 0 4px 0;
	font-size: 15px;
	line-height: 1.4;
}
.rcex-check-input {
	margin: 0 8px 0 0;
	flex-shrink: 0;
	vertical-align: middle;
}
.rcex-check-text {
	flex: 1 1 0%;
	text-align: left;
	display: inline-block;
	vertical-align: middle;
}

/* Contenedor */
.rcex-wrap{max-width:560px;margin:20px auto;background:#fff;border-radius:12px;box-shadow:0 2px 16px rgba(60,60,60,.08);padding:20px;}
.rcex-wrap h2{color:#3f4c61;font-size:24px;margin:0 0 16px 0;font-weight:600;}

/* Filas */
.rcex-row{margin-bottom:14px;}
.rcex-row label{display:block;margin-bottom:6px;color:#3f4c61;font-weight:600;}
.rcex-row input,.rcex-row select{width:100%;padding:10px;border:1px solid #79B5E2;border-radius:6px;background:#f6f7fc;font-size:16px;}
.rcex-row select{white-space:normal;line-height:1.4;padding-right:28px;}
.rcex-msg{font-size:13px;margin-top:4px;}
.rcex-msg.error{color:#eb7452;}
.rcex-msg.ok{color:#2bb673;}

/* Acciones */
.rcex-actions{display:flex;gap:10px;flex-wrap:wrap;align-items:center;}
.rcex-actions .hidden{display:none;}

/* Aviso privacidad */
.rcex-legal{font-size:14px;color:#3f4c61;background:#f6f7fc;padding:10px;border-radius:6px;}

/* Modal */
.rcex-modal{position:fixed;inset:0;display:none;align-items:center;justify-content:center;z-index:99999;}
.rcex-modal[aria-hidden="false"]{display:flex;}
.rcex-modal__overlay{position:absolute;inset:0;background:rgba(0,0,0,.45);}
.rcex-modal__dialog{
	position:relative;
	max-width:420px;
	width:96%;
	background:#fff;
	border-radius:12px;
	box-shadow:0 10px 30px rgba(0,0,0,.25);
	padding:16px 12px 14px 12px;
	outline:none;
	font-size:16px;
}
.rcex-modal__close{position:absolute;top:8px;right:10px;border:none;background:transparent;font-size:24px;line-height:1;cursor:pointer;}
.rcex-modal__content{
	margin:8px 0 12px 0;
	color:#3f4c61;
	font-size:15px;
	line-height:1.5;
}
.rcex-modal__actions{
	display:flex;
	flex-wrap:wrap;
	gap:8px;
	justify-content:center;
	margin-top:8px;
}

@media (max-width: 600px) {
	.rcex-modal__dialog {
		max-width: 98vw;
		padding: 10px 4vw 10px 4vw;
		font-size:15px;
	}
	.rcex-modal__actions button {
		flex:1 1 100%;
		min-width: 0;
		margin: 0 0 6px 0;
		font-size:15px;
	}
}

/* Loading */
.rcex-loading{position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:rgba(255,255,255,.6);z-index:99998;}
.rcex-loading[hidden]{display:none;}
.rcex-loading:not([hidden]){display:flex;}
.rcex-spinner{width:40px;height:40px;border-radius:50%;border:4px solid #cbd5e1;border-top-color:#79B5E2;animation:rcex-spin 1s linear infinite;}
@keyframes rcex-spin{to{transform:rotate(360deg);}}
