/* Branta Claud - Maquinaria y Suministros Especializados */
.bc-maquinaria-suministros {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 3rem 1.5rem;
	box-sizing: border-box;
	background: #f8f9fa;
}

/* ——— Cabecera ——— */
.bc-ms-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2rem;
}

@media (max-width: 768px) {
	.bc-ms-header {
		flex-direction: column;
		gap: 1.5rem;
	}
}

.bc-ms-header-content {
	flex: 1;
}

.bc-ms-title {
	margin: 0 0 1rem;
	font-size: clamp(1.875rem, 4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #1e3a5f;
}

.bc-ms-description {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: #6c757d;
}

.bc-ms-download-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.25rem;
	background: #ffffff;
	border-radius: 10px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #343a40;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	white-space: nowrap;
}

.bc-ms-download-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	text-decoration: none;
	color: #343a40;
}

.bc-ms-download-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #007bff;
}

.bc-ms-download-icon svg {
	width: 16px;
	height: 16px;
}

.bc-ms-download-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #007bff;
	margin-left: 0.25rem;
}

.bc-ms-download-arrow svg {
	width: 14px;
	height: 14px;
}

/* ——— Tabs ——— */
.bc-ms-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #e9ecef;
}

.bc-ms-tab {
	position: relative;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #6c757d;
	text-decoration: none;
	padding-bottom: 0.5rem;
	transition: color 0.2s ease;
	cursor: pointer;
}

.bc-ms-tab:hover {
	color: #007bff;
	text-decoration: none;
}

.bc-ms-tab-active {
	color: #007bff;
}

.bc-ms-tab-active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #007bff;
}

/* ——— Grid de tarjetas ——— */
.bc-ms-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (max-width: 992px) {
	.bc-ms-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.bc-ms-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
}

/* ——— Tarjeta ——— */
.bc-ms-card {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	border: 1px solid #f0f0f0;
}

.bc-ms-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
}

.bc-ms-card-image-wrap {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: #f1f5f9;
}

.bc-ms-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.bc-ms-card-icon-overlay {
	position: absolute;
	top: 12px;
	left: 12px;
	width: 40px;
	height: 40px;
	background: #007bff;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.bc-ms-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 1rem;
}

.bc-ms-card-icon svg {
	width: 1rem;
	height: 1rem;
	fill: #ffffff;
}

.bc-ms-card-content {
	padding: 1.5rem;
}

.bc-ms-card-title {
	margin: 0 0 0.5rem;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.3;
	color: #343a40;
}

.bc-ms-card-subtitle {
	margin: 0 0 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: #6c757d;
}

.bc-ms-card-features {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
}

.bc-ms-card-features li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	line-height: 1.5;
	color: #475569;
}

.bc-ms-card-features li:last-child {
	margin-bottom: 0;
}

.bc-ms-feature-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #007bff;
	margin-top: 0.15rem;
}

.bc-ms-feature-check svg {
	width: 14px;
	height: 14px;
	fill: #007bff;
}

.bc-ms-details-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #007bff;
	border: 1px solid #007bff;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.bc-ms-details-link:hover {
	background-color: #007bff;
	color: #ffffff;
	text-decoration: none;
}

.bc-ms-details-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease;
}

.bc-ms-details-link:hover .bc-ms-details-arrow {
	transform: translateX(4px);
}

.bc-ms-details-arrow svg {
	width: 12px;
	height: 12px;
}
