/**
 * Ferremaq – Checkout / pedido recibido
 */

.fmq-order-invoice {
	max-width: 860px;
	margin: 0 auto 28px;
	padding: clamp(20px, 3vw, 28px);
	background: #ffffff;
	border: 1px solid #c8ced6;
	font-family: 'Montserrat', sans-serif;
	color: #3d4654;
}

.fmq-order-invoice__header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 2px solid #144177;
}

.fmq-order-invoice__company {
	flex: 1 1 280px;
}

.fmq-order-invoice__logo {
	display: block;
	max-width: 180px;
	height: auto;
	margin-bottom: 12px;
}

.fmq-order-invoice-actions {
	max-width: 860px;
	margin: 0 auto 24px;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
}

.fmq-order-invoice-actions__pdf {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: min(100%, 320px);
	padding: 14px 24px;
	background: #144177;
	color: #ffffff !important;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none !important;
	border-radius: 4px;
	transition: filter 0.2s ease, transform 0.2s ease;
}

.fmq-order-invoice-actions__pdf:hover {
	filter: brightness(1.08);
	transform: translateY(-1px);
	color: #ffffff !important;
}

.fmq-order-invoice-actions__pdf i {
	font-size: 18px;
	line-height: 1;
}

.fmq-order-invoice-actions__hint {
	margin: 12px 0 0;
	font-size: 13px;
	color: #5a6472;
}

.fmq-order-invoice__brand {
	margin: 0 0 8px;
	font-size: clamp(20px, 2.8vw, 26px);
	font-weight: 700;
	color: #144177;
}

.fmq-order-invoice__meta {
	margin: 0 0 4px;
	font-size: 13px;
	line-height: 1.5;
}

.fmq-order-invoice__titlebox h2 {
	margin: 0 0 10px;
	font-size: clamp(18px, 2.4vw, 22px);
	font-weight: 700;
	color: #144177;
}

.fmq-order-invoice__titlebox p {
	margin: 0 0 4px;
	font-size: 14px;
}

.fmq-order-invoice__customer {
	margin-bottom: 20px;
}

.fmq-order-invoice__customer h3 {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 700;
	color: #144177;
}

.fmq-order-invoice__customer p {
	margin: 0 0 4px;
	font-size: 14px;
}

.fmq-order-invoice__table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 16px;
	font-size: 14px;
}

.fmq-order-invoice__table th,
.fmq-order-invoice__table td {
	padding: 10px 12px;
	border: 1px solid #d8dee6;
	text-align: left;
}

.fmq-order-invoice__table th {
	background: #f3f6fa;
	font-weight: 700;
	color: #144177;
}

.fmq-order-invoice__total-row td {
	background: #f3f6fa;
	font-size: 15px;
}

.fmq-order-invoice__note {
	margin: 0;
	font-size: 12px;
	line-height: 1.5;
	color: #5a6472;
}

.fmq-order-payment-notice {
	margin: 24px 0 32px;
}

.fmq-order-payment-notice__inner {
	max-width: 640px;
	margin: 0 auto;
	padding: clamp(20px, 3vw, 28px);
	background: #f3f6fa;
	border: 1px solid #c8ced6;
	border-left: 4px solid #144177;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
}

.fmq-order-payment-notice--culqi .fmq-order-payment-notice__inner {
	border-left-color: #25a244;
}

.fmq-order-payment-notice__title {
	margin: 0 0 12px;
	font-size: clamp(18px, 2.4vw, 22px);
	font-weight: 700;
	color: #144177;
}

.fmq-order-payment-notice__text {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.6;
	color: #3d4654;
}

.fmq-order-payment-notice__order {
	margin: 0 0 18px;
	font-size: 15px;
	font-weight: 600;
	color: #144177;
}

.fmq-order-bank-details {
	margin: 0 0 20px;
	padding: 16px 18px;
	background: #ffffff;
	border: 1px solid #d8dee6;
	border-radius: 4px;
	text-align: left;
}

.fmq-order-bank-details h3 {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 700;
	color: #144177;
}

.fmq-order-bank-details ul {
	margin: 0;
	padding-left: 18px;
	font-size: 14px;
	line-height: 1.7;
	color: #3d4654;
}

.fmq-order-bank-details__cci {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 15px;
	font-weight: 700;
	color: #144177;
	letter-spacing: 0.04em;
}

.fmq-order-payment-notice__warning {
	margin: 0 0 16px;
	font-size: 13px;
	color: #8a4b00;
}

.fmq-order-payment-notice__whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: min(100%, 320px);
	padding: 14px 24px;
	background: #25d366;
	color: #ffffff !important;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none !important;
	border-radius: 4px;
	transition: filter 0.2s ease, transform 0.2s ease;
}

.fmq-order-payment-notice__whatsapp:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
	color: #ffffff !important;
}

.fmq-order-payment-notice__whatsapp i {
	font-size: 22px;
	line-height: 1;
}

.fmq-order-payment-notice__phone {
	margin: 14px 0 0;
	font-size: 14px;
	color: #5a6472;
}

.fmq-order-payment-notice__phone strong {
	color: #144177;
	font-weight: 700;
}
