/* PRODUCTOS */

.productos-grid {
	position: relative;
	z-index: 1;
}

.producto-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(0, 51, 102, 0.1);
	border-radius: 30px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.94));
	box-shadow: 0 18px 50px rgba(0, 36, 78, 0.12);
	transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
	color: #08203f;
	text-decoration: none;
	cursor: pointer;
}

.producto-card:hover,
.producto-card:focus-visible {
	transform: translateY(-10px) scale(1.01);
	box-shadow: 0 28px 72px rgba(0, 36, 78, 0.18);
	border-color: rgba(0, 51, 102, 0.18);
	color: #08203f;
}

.producto-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: linear-gradient(145deg, rgba(0, 51, 102, 0.08), rgba(109, 213, 237, 0.12));
	border-bottom: 1px solid rgba(0, 51, 102, 0.08);
}

.producto-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.01);
	transition: transform 700ms ease, filter 700ms ease;
	filter: saturate(1.04) contrast(1.04);
}

.producto-card:hover .producto-card__media img,
.producto-card:focus-visible .producto-card__media img {
	transform: scale(1.06);
	filter: saturate(1.1) contrast(1.08);
}

.producto-card__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(5, 18, 38, 0.06) 58%, rgba(5, 18, 38, 0.22) 100%);
	pointer-events: none;
}

.producto-card__chip {
	position: absolute;
	top: 1rem;
	left: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.7rem;
	height: 2.7rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #003366;
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(10px);
}

.producto-card__chip i {
	font-size: 1.1rem;
}

.producto-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	padding: 1.25rem 1.25rem 1.35rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.96));
}

.producto-card__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	align-self: flex-start;
	padding: 0.38rem 0.78rem;
	border-radius: 999px;
	border: 1px solid rgba(0, 51, 102, 0.12);
	background: rgba(109, 213, 237, 0.12);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: #003366;
}

.producto-card__title {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.22rem;
	line-height: 1.12;
	letter-spacing: -0.05em;
	color: #08203f;
}

.producto-card__text {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.74;
	color: #5e718d;
}

.producto-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: auto;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #003366;
}

.producto-card:hover .producto-card__cta,
.producto-card:focus-visible .producto-card__cta {
	transform: translateX(3px);
}

@media (max-width: 767px) {
	.producto-card__body {
		padding: 1.05rem;
	}

	.producto-card__title {
		font-size: 1.1rem;
	}

	.producto-card__text {
		font-size: 0.92rem;
	}
}

.tamano_h2 {
	font-size: 5em;
	margin: 0 auto;
	display: block;
	text-align: center;
	margin-bottom: 20px;
	font-family: 'Quicksand';
	margin-top: 5%;
	color: white;
}

.tamano_subcategoria {
	font-size: 2em;
	margin: 0 auto;
	display: block;
	text-align: left;
	margin-bottom: 20px;
	font-family: 'Quicksand';
}

.cuadradillo {
	text-align: center;
	margin-bottom: 30px;
	padding-right: 0 !important;
}

.tipo-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
	overflow: hidden;
	border: 1px solid rgba(0, 51, 102, 0.1);
	border-radius: 30px;
	background: #ffffff;
	box-shadow: 0 18px 50px rgba(0, 36, 78, 0.12);
	transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
	color: #08203f;
	text-decoration: none;
	cursor: pointer;
}

.tipo-card:hover,
.tipo-card:focus-visible {
	transform: translateY(-10px) scale(1.01);
	box-shadow: 0 28px 72px rgba(0, 36, 78, 0.18);
	border-color: rgba(0, 51, 102, 0.18);
	color: #08203f;
}

.tipo-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: linear-gradient(145deg, rgba(0, 51, 102, 0.08), rgba(109, 213, 237, 0.12));
	border-bottom: 1px solid rgba(0, 51, 102, 0.08);
}

.tipo-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.01);
	transition: transform 700ms ease, filter 700ms ease;
	filter: saturate(1.04) contrast(1.04);
}

.tipo-card:hover .tipo-card__media img,
.tipo-card:focus-visible .tipo-card__media img {
	transform: scale(1.06);
	filter: saturate(1.1) contrast(1.08);
}

.tipo-card__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(5, 18, 38, 0.08) 55%, rgba(5, 18, 38, 0.34) 100%);
	pointer-events: none;
}

.tipo-card__price {
	position: absolute;
	top: 1rem;
	left: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.38rem 0.75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #003366;
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(10px);
	font-weight: 800;
	letter-spacing: 0.08em;
}

.tipo-card__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	width: 100%;
	padding: 1.25rem 1.25rem 1.35rem;
}

.tipo-card__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	align-self: flex-start;
	padding: 0.38rem 0.78rem;
	border-radius: 999px;
	border: 1px solid rgba(0, 51, 102, 0.12);
	background: rgba(255, 255, 255, 0.72);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #003366;
}

.tipo-card__title {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.22rem;
	line-height: 1.12;
	letter-spacing: -0.05em;
	color: #08203f;
}

.tipo-card__text {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.74;
	color: #5e718d;
}

.cuadro_imagen {
	height: 500px;
	max-width: 500px;
	width: 100%;
	margin-bottom: 15px;
}

.cuadro_imagen_relac {
	border-radius: 15px;
	height: 180px;
	background-size: cover;
	max-width: 200px;
	width: 100%;
	margin: 0 auto 15px;
	display: block;
}

.related-slider {
	padding: 0.25rem 0 1rem;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	padding: 0.25rem 0 1rem;
}

.related-grid .slide {
	width: auto !important;
	min-width: 0 !important;
	padding: 0 !important;
}

.related-card {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
	border-radius: 28px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.94));
	box-shadow: 0 18px 50px rgba(0, 36, 78, 0.12);
	border: 1px solid rgba(0, 51, 102, 0.1);
	transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
	cursor: pointer;
}

.related-card:hover,
.related-card:focus-visible {
	transform: translateY(-10px) scale(1.01);
	box-shadow: 0 28px 72px rgba(0, 36, 78, 0.18);
	border-color: rgba(0, 51, 102, 0.18);
	color: inherit;
}

.related-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(145deg, rgba(0, 51, 102, 0.08), rgba(109, 213, 237, 0.12));
}

.related-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 700ms ease, filter 700ms ease;
	filter: saturate(1.04) contrast(1.04);
}

.related-card:hover .related-card__media img,
.related-card:focus-visible .related-card__media img {
	transform: scale(1.06);
	filter: saturate(1.1) contrast(1.08);
}

.related-card__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(5, 18, 38, 0.04) 58%, rgba(5, 18, 38, 0.22) 100%);
	pointer-events: none;
}

.related-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	padding: 1.25rem 1.25rem 1.35rem;
}

.related-card__eyebrow {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	padding: 0.32rem 0.7rem;
	border-radius: 999px;
	border: 1px solid rgba(0, 51, 102, 0.12);
	background: rgba(109, 213, 237, 0.12);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #003366;
}

.related-card__title {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.22rem;
	line-height: 1.12;
	letter-spacing: -0.04em;
	color: #08203f;
}

.product-detail-hero {
	margin-top: 1.75rem;
}

.product-detail-hero > .col-sm-5,
.product-detail-hero > .col-sm-7 {
	margin-bottom: 0;
}

.product-detail-media-col {
	position: sticky;
	top: 115px;
	align-self: start;
}

.product-detail-media-col .cuadro_imagen {
	max-width: none;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	margin-bottom: 0;
	border-radius: 26px;
	box-shadow: 0 20px 55px rgba(0, 36, 78, 0.12);
	border: 1px solid rgba(0, 51, 102, 0.1);
}

.product-detail-body {
	padding: 1.5rem;
	backdrop-filter: blur(10px);
}

.product-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0 0 0.85rem;
	padding: 0.34rem 0.75rem;
	border-radius: 999px;
	background: rgba(109, 213, 237, 0.12);
	border: 1px solid rgba(0, 51, 102, 0.12);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #003366;
}

.product-subtitle {
	margin: 0 0 1rem;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.8rem, 3vw, 2.7rem);
	line-height: 0.98;
	letter-spacing: -0.06em;
	color: #08203f;
}

.product-richtext {
	font-size: 1.02rem;
	line-height: 1.8;
	color: #30445f;
}

.product-richtext p {
	margin: 0 0 1rem;
}

.product-richtext ul {
	margin: 0 0 1rem;
	padding-left: 1.25rem;
}

.product-richtext li {
	margin-bottom: 0.5rem;
}

.product-price-card {
	display: grid;
	gap: 0.25rem;
	margin-top: 1.35rem;
	padding: 1rem 1.1rem;
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(0, 51, 102, 0.04), rgba(109, 213, 237, 0.12));
	border: 1px solid rgba(0, 51, 102, 0.12);
}

.product-price-card__label {
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #6a7d96;
}

.product-price-card__value {
	display: flex;
	align-items: baseline;
	gap: 0.3rem;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(2rem, 4vw, 2.9rem);
	font-weight: 800;
	letter-spacing: -0.08em;
	color: #003366;
}

.product-price-card__value small {
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0;
	color: #5e718d;
}

.product-note {
	margin: 0.85rem 0 0;
	font-size: 0.92rem;
	color: #5e718d;
}

.product-seo-section {
	width: 100%;
	margin: 0 auto;
	padding: clamp(1.1rem, 1.8vw, 1.5rem);
	border-radius: 18px;
}

.product-seo-section__eyebrow {
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #8a6cff;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.product-seo-section__title {
	font-size: 1.2rem;
	margin: 0 0 0.75rem;
	font-weight: 700;
	color: #0f172a;
}

.product-seo-section__text,
.product-seo-section__text p {
	color: #334155;
	line-height: 1.7;
	margin-bottom: 0;
}

.product-faq {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.product-faq__title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.85rem;
	color: #0f172a;
}

.product-faq__item {
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 14px;
	background: linear-gradient(180deg, #fff, #f8fafc);
	padding: 0;
	overflow: hidden;
	margin-bottom: 0;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-faq__item:hover {
	border-color: rgba(0, 51, 102, 0.18);
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.product-faq__item summary {
	cursor: pointer;
	font-weight: 700;
	color: #111827;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.95rem 1rem;
}

.product-faq__item summary::after {
	content: '+';
	flex: 0 0 auto;
	font-size: 1.2rem;
	line-height: 1;
	color: #003366;
	transition: transform 180ms ease;
}

.product-faq__item[open] summary::after {
	content: '-';
}

.product-faq__item[open] summary {
	border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.product-faq__item summary::-webkit-details-marker {
	display: none;
}

.product-faq__answer {
	padding: 0 1rem 1rem;
	color: #334155;
	line-height: 1.7;
}

.product-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

@media (max-width: 1199px) {
	.related-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.tamano_h2 {
		font-size: 3em;
		margin-top: 13%;
	}

	.tamano_subcategoria {
		font-size: 1.2em;
	}

	.cuadradillo {
		padding: 0 !important;
	}

	.tipo-card__body {
		padding: 0.85rem;
	}

	.tipo-card__title {
		font-size: 1.05rem;
	}

	.tipo-card__text {
		font-size: 0.92rem;
	}

	.related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product-detail-media-col {
		position: static;
	}
}

@media (max-width: 767px) {
	.producto-card__body {
		padding: 1.05rem;
	}

	.producto-card__title {
		font-size: 1.1rem;
	}

	.producto-card__text {
		font-size: 0.92rem;
	}

	.product-detail-body {
		padding: 1rem;
	}
}

@media (max-width: 575px) {
	.related-grid {
		grid-template-columns: 1fr;
	}
}

@media only screen and (max-width: 417px) {
	.cuadro_imagen {
		height: 350px;
		max-width: 100%;
		width: 100%;
		margin-bottom: 15px;
	}

	.tamano_h2 {
		font-size: 3em;
		margin-top: 13%;
	}

	.tamano_subcategoria {
		font-size: 1.2em;
	}
}
