/**
 * Estilos Públicos de ServicisBellivan (Premium & Minimalist Design)
 */

:root {
	--bellivan-primary: var(--e-global-color-primary, var(--wp--preset--color--primary, var(--wp--preset--color--theme-primary, #4a6cf7)));
	--bellivan-primary-hover: var(--e-global-color-accent, var(--wp--preset--color--secondary, var(--wp--preset--color--theme-secondary, #3654d9)));
	--bellivan-secondary: var(--e-global-color-secondary, var(--wp--preset--color--secondary, #3654d9));
	--bellivan-accent: var(--e-global-color-accent, var(--wp--preset--color--accent, #10b981));
	--bellivan-text: var(--e-global-color-text, var(--wp--preset--color--text, #334155));
}

/* ==========================================================================
   1. Grids e Integración de Layouts (Widget de Elementor)
   ========================================================================== */
.bellivan-services-wrapper {
	width: 100%;
	box-sizing: border-box;
}

.bellivan-services-wrapper *,
.bellivan-services-wrapper *::before,
.bellivan-services-wrapper *::after {
	box-sizing: border-box;
}

/* Rejilla CSS Grid */
.bellivan-services-grid {
	display: grid;
	grid-gap: 30px;
	width: 100%;
}

.bellivan-grid-col-1 { grid-template-columns: repeat(1, 1fr); }
.bellivan-grid-col-2 { grid-template-columns: repeat(2, 1fr); }
.bellivan-grid-col-3 { grid-template-columns: repeat(3, 1fr); }
.bellivan-grid-col-4 { grid-template-columns: repeat(4, 1fr); }

/* Grid Adaptabilidad (Tablet) */
@media (max-width: 1024px) {
	.bellivan-grid-col-tab-1 { grid-template-columns: repeat(1, 1fr) !important; }
	.bellivan-grid-col-tab-2 { grid-template-columns: repeat(2, 1fr) !important; }
	.bellivan-grid-col-tab-3 { grid-template-columns: repeat(3, 1fr) !important; }
	.bellivan-grid-col-tab-4 { grid-template-columns: repeat(4, 1fr) !important; }
}

/* Grid Adaptabilidad (Mobile) */
@media (max-width: 767px) {
	.bellivan-grid-col-mob-1 { grid-template-columns: repeat(1, 1fr) !important; }
	.bellivan-grid-col-mob-2 { grid-template-columns: repeat(2, 1fr) !important; }
	.bellivan-grid-col-mob-3 { grid-template-columns: repeat(3, 1fr) !important; }
	.bellivan-grid-col-mob-4 { grid-template-columns: repeat(4, 1fr) !important; }
}

/* Diseño de Lista (List Layout) */
.bellivan-services-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.bellivan-services-list .bellivan-service-card {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	overflow: hidden;
}

.bellivan-services-list .bellivan-service-image {
	width: 320px;
	max-height: unset;
	flex-shrink: 0;
}

.bellivan-services-list .bellivan-service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

.bellivan-services-list .bellivan-service-card-body {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 30px;
}

@media (max-width: 767px) {
	.bellivan-services-list .bellivan-service-card {
		flex-direction: column;
	}
	
	.bellivan-services-list .bellivan-service-image {
		width: 100%;
		height: 200px;
	}
}

/* Mensaje Sin Resultados */
.bellivan-services-not-found {
	text-align: center;
	padding: 40px;
	font-size: 16px;
	color: #888;
	border: 1px dashed rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

/* ==========================================================================
   2. Estilo de Tarjeta Base (Grid / List)
   ========================================================================== */
.bellivan-service-card {
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
	height: 100%;
}

/* Contenedor de Imagen */
.bellivan-service-image {
	width: 100%;
	overflow: hidden;
	position: relative;
	aspect-ratio: 16 / 10;
}

.bellivan-service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bellivan-service-card:hover .bellivan-service-image img {
	transform: scale(1.07);
}

/* Cuerpo de la Tarjeta */
.bellivan-service-card-body {
	padding: 28px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

/* ==========================================================================
   3. Temas de Diseño (Variables e Identidades de Diseño)
   ========================================================================== */

/* Tema: Sleek Light */
.theme-light-premium .bellivan-service-card {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
}
.theme-light-premium .bellivan-service-title a {
	color: #1a1a2e;
}
.theme-light-premium .bellivan-service-excerpt {
	color: #64748b;
}
.theme-light-premium .bellivan-service-badge {
	background: color-mix(in srgb, var(--bellivan-primary) 8%, transparent);
	color: var(--bellivan-primary);
}
.theme-light-premium .bellivan-service-features-list li {
	color: #475569;
}
.theme-light-premium .bellivan-service-cta-btn {
	background: var(--bellivan-primary);
	color: #ffffff;
}
.theme-light-premium .bellivan-service-cta-btn:hover {
	background: var(--bellivan-primary-hover);
}

/* Tema: Glassmorphism Dark */
.theme-dark-glass .bellivan-service-card {
	background: rgba(15, 23, 42, 0.8);
	backdrop-filter: blur(12px) saturate(190%);
	-webkit-backdrop-filter: blur(12px) saturate(190%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.theme-dark-glass .bellivan-service-title a {
	color: #ffffff;
}
.theme-dark-glass .bellivan-service-excerpt {
	color: #94a3b8;
}
.theme-dark-glass .bellivan-service-badge {
	background: rgba(56, 189, 248, 0.15);
	color: #38bdf8;
}
.theme-dark-glass .bellivan-service-features-list li {
	color: #cbd5e1;
}
.theme-dark-glass .bellivan-service-cta-btn {
	background: #38bdf8;
	color: #0f172a;
}
.theme-dark-glass .bellivan-service-cta-btn:hover {
	background: #0ea5e9;
	color: #ffffff;
}

/* Tema: Gradient Glow */
.theme-gradient-glow .bellivan-service-card {
	background: linear-gradient(145deg, #0f172a, #1e293b);
	border: 1px solid rgba(124, 58, 237, 0.2);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}
.theme-gradient-glow .bellivan-service-title a {
	color: #ffffff;
}
.theme-gradient-glow .bellivan-service-excerpt {
	color: #cbd5e1;
}
.theme-gradient-glow .bellivan-service-badge {
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(236, 72, 153, 0.2));
	color: #f472b6;
	border: 1px solid rgba(236, 72, 153, 0.3);
}
.theme-gradient-glow .bellivan-service-features-list li {
	color: #e2e8f0;
}
.theme-gradient-glow .bellivan-service-cta-btn {
	background: linear-gradient(135deg, #7c3aed, #ec4899);
	color: #ffffff;
}
.theme-gradient-glow .bellivan-service-cta-btn:hover {
	opacity: 0.95;
}

/* ==========================================================================
   4. Componentes Internos de las Tarjetas
   ========================================================================== */
.bellivan-service-header-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 18px;
}

/* Insignia / Badge de Categoría */
.bellivan-service-badge {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 20px;
}

a.bellivan-service-badge,
a.bellivan-single-badge {
	text-decoration: none !important;
	transition: all 0.25s ease;
	display: inline-block;
}

a.bellivan-service-badge:hover,
a.bellivan-single-badge:hover {
	background: color-mix(in srgb, var(--bellivan-primary) 15%, transparent);
	color: var(--bellivan-primary);
	opacity: 0.9;
}

/* Título */
.bellivan-service-title {
	font-size: 21px;
	line-height: 1.35;
	font-weight: 700;
	margin: 0 0 12px 0;
}

.bellivan-service-title a {
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.bellivan-service-title a:hover {
	opacity: 0.85;
}

/* Descripción Corta */
.bellivan-service-excerpt {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
}

/* Lista de Características en Tarjeta */
.bellivan-service-features-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bellivan-service-features-list li {
	display: flex;
	align-items: flex-start;
	font-size: 13.5px;
	line-height: 1.4;
}

.bellivan-check-icon {
	width: 16px;
	height: 16px;
	color: #10b981;
	margin-right: 10px;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Contenedor del Botón de la Tarjeta */
.bellivan-service-cta-container {
	margin-top: auto;
	width: 100%;
}

.bellivan-service-cta-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 12px 24px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bellivan-service-cta-btn svg {
	width: 16px;
	height: 16px;
	margin-left: 8px;
	transition: transform 0.3s ease;
	stroke: currentColor;
}

.bellivan-service-cta-btn:hover svg {
	transform: translateX(4px);
}

/* ==========================================================================
   5. Animaciones Hover en Tarjetas
   ========================================================================== */

/* Hover: Lift */
.hover-effect-lift:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
}
.theme-dark-glass.hover-effect-lift:hover {
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.theme-gradient-glow.hover-effect-lift:hover {
	box-shadow: 0 20px 40px rgba(124, 58, 237, 0.25);
	border-color: rgba(124, 58, 237, 0.5);
}

/* Hover: Scale */
.hover-effect-scale:hover {
	transform: scale(1.03);
}

/* Hover: Glow */
.hover-effect-glow {
	border-color: transparent;
}
.hover-effect-glow:hover {
	border-color: #4a6cf7;
	box-shadow: 0 0 30px rgba(74, 108, 247, 0.25);
}
.theme-dark-glass.hover-effect-glow:hover {
	border-color: #38bdf8;
	box-shadow: 0 0 35px rgba(56, 189, 248, 0.3);
}
.theme-gradient-glow.hover-effect-glow:hover {
	border-color: #f472b6;
	box-shadow: 0 0 35px rgba(244, 114, 182, 0.35);
}

/* ==========================================================================
   6. Estilos de Navegación Swiper (Carrusel)
   ========================================================================== */
.bellivan-swiper {
	padding-bottom: 55px;
	position: relative;
	overflow: hidden; /* Recorta los slides que quedan fuera del contenedor */
}

/* Estilos de estructura Swiper esenciales */
.bellivan-swiper .swiper-wrapper {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	width: 100%;
	height: 100%;
	z-index: 1;
	transition-property: transform;
	box-sizing: content-box;
}

.bellivan-swiper .swiper-slide {
	flex-shrink: 0 !important;
	height: auto;
}

.bellivan-swiper .swiper-button-next,
.bellivan-swiper .swiper-button-prev {
	position: absolute !important;
	top: calc(50% - 28px) !important;
	transform: translateY(-50%) !important;
	width: 44px !important;
	height: 44px !important;
	background: #ffffff !important;
	border-radius: 50% !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05) !important;
	color: var(--bellivan-primary) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	z-index: 20 !important;
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
	border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.bellivan-swiper .swiper-button-prev {
	left: 15px !important;
}

.bellivan-swiper .swiper-button-next {
	right: 15px !important;
}

/* Ocultar flecha por defecto de Swiper font-family */
.bellivan-swiper .swiper-button-next::after,
.bellivan-swiper .swiper-button-prev::after {
	display: none !important;
}

/* Estilo para los SVG de las flechas */
.bellivan-swiper .swiper-button-next svg,
.bellivan-swiper .swiper-button-prev svg {
	width: 20px !important;
	height: 20px !important;
	stroke: currentColor !important;
	fill: none !important;
	transition: transform 0.2s ease !important;
}

.bellivan-swiper .swiper-button-next:hover svg {
	transform: translateX(2px);
}

.bellivan-swiper .swiper-button-prev:hover svg {
	transform: translateX(-2px);
}

/* Adaptación de colores por tema */
.theme-dark-glass .swiper-button-next,
.theme-dark-glass .swiper-button-prev {
	background: rgba(15, 23, 42, 0.9) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
	color: #38bdf8 !important;
}

.theme-gradient-glow .swiper-button-next,
.theme-gradient-glow .swiper-button-prev {
	background: #0f172a !important;
	border: 1px solid rgba(124, 58, 237, 0.3) !important;
	box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2) !important;
	color: #f472b6 !important;
}

/* Hover general */
.bellivan-swiper .swiper-button-next:hover,
.bellivan-swiper .swiper-button-prev:hover {
	background: var(--bellivan-primary) !important;
	color: #ffffff !important;
	border-color: var(--bellivan-primary) !important;
	transform: translateY(-50%) scale(1.08) !important;
	box-shadow: 0 6px 20px color-mix(in srgb, var(--bellivan-primary) 30%, transparent) !important;
}

.theme-dark-glass .swiper-button-next:hover,
.theme-dark-glass .swiper-button-prev:hover {
	background: #38bdf8 !important;
	color: #0f172a !important;
	border-color: #38bdf8 !important;
	box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4) !important;
}

.theme-gradient-glow .swiper-button-next:hover,
.theme-gradient-glow .swiper-button-prev:hover {
	background: linear-gradient(135deg, #7c3aed, #ec4899) !important;
	color: #ffffff !important;
	border-color: transparent !important;
	box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4) !important;
}

.bellivan-swiper .swiper-pagination-bullet {
	background: rgba(0, 0, 0, 0.2);
	opacity: 1;
	width: 8px;
	height: 8px;
	transition: all 0.3s ease;
}

.theme-dark-glass .swiper-pagination-bullet,
.theme-gradient-glow .swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.2);
}

.bellivan-swiper .swiper-pagination-bullet-active {
	background: var(--bellivan-primary);
	width: 20px;
	border-radius: 4px;
}

.theme-dark-glass .swiper-pagination-bullet-active {
	background: #38bdf8;
}

.theme-gradient-glow .swiper-pagination-bullet-active {
	background: #f472b6;
}

/* ==========================================================================
   7. Estilos de la Página Single (Diseño Limpio y Minimalista)
   ========================================================================== */

/* Ocultar títulos duplicados generados por temas standard en la vista del CPT */
.single-bellivan_service h1.entry-title,
.single-bellivan_service h1.post-title,
.single-bellivan_service h1.page-title,
.single-bellivan_service .hero-section-title,
.single-bellivan_service .page-header-title,
.single-bellivan_service .post-header-title {
	display: none !important;
}

/* Asegurar que se visualice solo nuestro título */
.single-bellivan_service .bellivan-single-hero .bellivan-single-title {
	display: block !important;
}

.bellivan-single-service-wrapper {
	padding: 60px 0 100px 0;
	background-color: #f8fafc;
	color: #334155;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.bellivan-single-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Hero de la Página Single */
.bellivan-single-hero {
	text-align: center;
	margin-bottom: 40px;
}

.bellivan-single-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding: 6px 16px;
	background: color-mix(in srgb, var(--bellivan-primary) 8%, transparent);
	color: var(--bellivan-primary);
	border-radius: 50px;
	margin-bottom: 16px;
}

.bellivan-single-title {
	font-size: 42px;
	line-height: 1.25;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 18px 0;
	letter-spacing: -0.5px;
}

.bellivan-single-excerpt {
	font-size: 18px;
	line-height: 1.6;
	color: #64748b;
	max-width: 780px;
	margin: 0 auto;
}

/* Imagen / Banner */
.bellivan-single-banner {
	width: 100%;
	border-radius: 24px;
	overflow: hidden;
	margin-bottom: 60px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
	aspect-ratio: 21 / 9;
}

.bellivan-single-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Grid de Contenido (Dos columnas) */
.bellivan-single-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

@media (min-width: 992px) {
	.bellivan-single-grid {
		grid-template-columns: 65% 31%;
		align-items: start;
	}
}

/* Columna de Contenido Principal */
.bellivan-single-content {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.04);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.bellivan-single-editor-content {
	font-size: 16px;
	line-height: 1.8;
	color: #334155;
}

.bellivan-single-editor-content p {
	margin-bottom: 24px;
}

.bellivan-single-editor-content p:last-child {
	margin-bottom: 0;
}

.bellivan-single-editor-content h2,
.bellivan-single-editor-content h3 {
	color: #0f172a;
	font-weight: 700;
	margin: 40px 0 20px 0;
	letter-spacing: -0.3px;
}

.bellivan-single-editor-content h2 { font-size: 26px; }
.bellivan-single-editor-content h3 { font-size: 22px; }

/* Sección de Beneficios (Al final del contenido principal) */
.bellivan-single-benefits-section {
	margin-top: 50px;
	padding-top: 40px;
	border-top: 1px solid #f1f5f9;
}

.bellivan-benefits-title {
	font-size: 22px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 20px 0;
	letter-spacing: -0.3px;
}

.bellivan-single-benefits-section .bellivan-single-features-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

@media (min-width: 600px) {
	.bellivan-single-benefits-section .bellivan-single-features-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

.bellivan-single-benefits-section .bellivan-single-features-list li {
	display: flex;
	align-items: flex-start;
	font-size: 14.5px;
	line-height: 1.5;
	color: #475569;
}

/* Columna de Sidebar (Fija / Pegajosa) */
.bellivan-single-sidebar {
	position: sticky;
	top: 40px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.bellivan-single-sidebar-card {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 20px;
	padding: 28px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.bellivan-card-title {
	font-size: 17px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 18px 0;
	padding-bottom: 12px;
	border-bottom: 1px solid #f1f5f9;
	letter-spacing: -0.2px;
}

/* Bloque 1: Menú de Navegación de Servicios */
.bellivan-services-nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.bellivan-services-nav-list li {
	border-radius: 8px;
	overflow: hidden;
	transition: background-color 0.25s ease;
}

.bellivan-services-nav-list li a {
	display: flex;
	align-items: center;
	padding: 11px 14px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	color: #64748b;
	transition: all 0.25s ease;
}

.bellivan-nav-arrow {
	width: 14px;
	height: 14px;
	margin-right: 10px;
	stroke: #94a3b8;
	transition: transform 0.25s ease, stroke 0.25s ease;
	flex-shrink: 0;
}

.bellivan-services-nav-list li a:hover {
	color: var(--bellivan-primary);
	background-color: color-mix(in srgb, var(--bellivan-primary) 4%, transparent);
}

.bellivan-services-nav-list li a:hover .bellivan-nav-arrow {
	transform: translateX(3px);
	stroke: var(--bellivan-primary);
}

/* Estado activo del servicio actual */
.bellivan-services-nav-list li.is-active {
	background-color: color-mix(in srgb, var(--bellivan-primary) 6%, transparent);
}

.bellivan-services-nav-list li.is-active a {
	color: var(--bellivan-primary);
	font-weight: 600;
}

.bellivan-services-nav-list li.is-active .bellivan-nav-arrow {
	stroke: var(--bellivan-primary);
	transform: translateX(2px);
}

/* Bloque 2: Redes de Compartir */
.bellivan-share-buttons {
	display: flex;
	align-items: center;
	gap: 12px;
}

.bellivan-share-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	border: 1px solid #f1f5f9;
	background-color: #f8fafc;
	color: #64748b;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	padding: 0;
}

.bellivan-share-btn svg {
	width: 18px;
	height: 18px;
}

.bellivan-share-btn.share-copy svg {
	stroke: currentColor;
}

/* Hover effects */
.bellivan-share-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	color: #ffffff;
}

.bellivan-share-btn.share-whatsapp:hover {
	background-color: #25d366;
	border-color: #25d366;
}

.bellivan-share-btn.share-facebook:hover {
	background-color: #1877f2;
	border-color: #1877f2;
}

.bellivan-share-btn.share-instagram:hover {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
	border-color: transparent;
	color: #ffffff;
}

.bellivan-share-btn.share-tiktok:hover {
	background-color: #000000;
	border-color: #000000;
	color: #ffffff;
}

.bellivan-share-btn.share-copy:hover {
	background-color: #1e293b;
	border-color: #1e293b;
}

/* Alerta de Copiado */
.bellivan-copy-status {
	display: block;
	font-size: 12px;
	font-weight: 500;
	color: #10b981;
	margin-top: 10px;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(4px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Adaptabilidad para Móviles de la Página Single */
@media (max-width: 767px) {
	.bellivan-single-service-wrapper {
		padding: 40px 0 60px 0;
	}
	
	.bellivan-single-title {
		font-size: 30px;
	}
	
	.bellivan-single-excerpt {
		font-size: 16px;
	}
	
	.bellivan-single-banner {
		margin-bottom: 40px;
		border-radius: 16px;
		aspect-ratio: 16 / 9;
	}
	
	.bellivan-single-content {
		padding: 24px;
	}
	
	.bellivan-single-benefits-section {
		margin-top: 35px;
		padding-top: 25px;
	}
}

/* Bloque 3: Llamado a la Acción (CTA) Profesional en Single */
.bellivan-single-cta-section {
	margin-top: 50px;
	padding: 40px;
	background: linear-gradient(135deg, #ffffff, #f8fafc);
	border: 1px solid color-mix(in srgb, var(--bellivan-primary) 12%, transparent);
	border-radius: 20px;
	box-shadow: 0 20px 40px color-mix(in srgb, var(--bellivan-primary) 4%, transparent), 0 1px 3px rgba(0, 0, 0, 0.01);
	position: relative;
	overflow: hidden;
}

/* Decoración de fondo premium */
.bellivan-single-cta-section::before {
	content: '';
	position: absolute;
	top: -60px;
	right: -60px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: radial-gradient(circle, color-mix(in srgb, var(--bellivan-primary) 8%, transparent) 0%, transparent 70%);
	z-index: 0;
	pointer-events: none;
}

.bellivan-single-cta-content {
	position: relative;
	z-index: 1;
}

.bellivan-single-cta-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding: 6px 16px;
	background: color-mix(in srgb, var(--bellivan-primary) 8%, transparent);
	color: var(--bellivan-primary);
	border-radius: 50px;
	margin-bottom: 16px;
}

.bellivan-single-cta-title {
	font-size: 26px;
	line-height: 1.3;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 12px 0;
	letter-spacing: -0.4px;
}

.bellivan-single-cta-desc {
	font-size: 15px;
	line-height: 1.6;
	color: #64748b;
	margin: 0 0 30px 0;
	max-width: 650px;
}

/* Grid de información de contacto */
.bellivan-single-cta-info-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
	.bellivan-single-cta-info-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.bellivan-single-cta-info-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bellivan-single-cta-info-item:hover {
	border-color: var(--bellivan-primary);
	box-shadow: 0 10px 25px color-mix(in srgb, var(--bellivan-primary) 6%, transparent);
	transform: translateY(-2px);
}

.bellivan-single-cta-info-item .info-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.bellivan-single-cta-info-item .info-icon.icon-phone {
	background: rgba(37, 211, 102, 0.1);
	color: #25d366;
}

.bellivan-single-cta-info-item .info-icon.icon-mail {
	background: color-mix(in srgb, var(--bellivan-primary) 10%, transparent);
	color: var(--bellivan-primary);
}

.bellivan-single-cta-info-item .info-icon svg {
	width: 22px;
	height: 22px;
}

.bellivan-single-cta-info-item .info-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.bellivan-single-cta-info-item .info-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #94a3b8;
}

.bellivan-single-cta-info-item .info-value {
	font-size: 16px;
	font-weight: 700;
	color: #1e293b;
	transition: color 0.2s ease;
}

.bellivan-single-cta-info-item:hover .info-value {
	color: var(--bellivan-primary);
}

/* Adaptabilidad móvil */
@media (max-width: 767px) {
	.bellivan-single-cta-section {
		padding: 30px 20px;
		margin-top: 35px;
	}
	
	.bellivan-single-cta-title {
		font-size: 22px;
	}
	
	.bellivan-single-cta-info-item {
		padding: 16px;
	}
}

/* ==========================================================================
   8. Acordeón del Sidebar
   ========================================================================== */
.bellivan-sidebar-accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 10px;
}

.bellivan-accordion-item {
	border: 1px solid #0000003b !important;
	border-radius: 12px;
	overflow: hidden;
	background: #ffffff;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.bellivan-accordion-item.is-expanded {
	border-color: #0000003b !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
}

.bellivan-accordion-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 14px 18px;
	background: #f8fafc;
	border: none;
	outline: none;
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
	cursor: pointer;
	text-align: left;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.bellivan-accordion-header:hover {
	background-color: color-mix(in srgb, var(--bellivan-primary) 4%, transparent);
	color: var(--bellivan-primary);
}

.bellivan-accordion-item.is-expanded .bellivan-accordion-header {
	background-color: color-mix(in srgb, var(--bellivan-primary) 6%, transparent);
	color: var(--bellivan-primary);
	border-bottom: 1px solid color-mix(in srgb, var(--bellivan-primary) 10%, transparent);
}

.bellivan-accordion-icon {
	width: 16px;
	height: 16px;
	transition: transform 0.25s ease;
	stroke: currentColor;
	fill: none;
}

.bellivan-accordion-item.is-expanded .bellivan-accordion-icon {
	transform: rotate(180deg);
}

.bellivan-accordion-content {
	padding: 12px 14px;
}

.bellivan-accordion-content .bellivan-services-nav-list {
	gap: 4px;
}

.bellivan-accordion-content .bellivan-services-nav-list li a {
	padding: 8px 12px;
	font-size: 13.5px;
}

/* ==========================================================================
   9. Estilos de la Galería de Imágenes en la Vista Individual (Single)
   ========================================================================== */
.bellivan-single-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 16px;
	margin-top: 15px;
}

@media (min-width: 480px) {
	.bellivan-single-gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	}
}

.bellivan-gallery-item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	display: block;
	aspect-ratio: 1;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
	border: 1px solid #0000001a;
	transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
}

.bellivan-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bellivan-gallery-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
	border-color: #0000003b;
}

.bellivan-gallery-item:hover img {
	transform: scale(1.06);
}

/* ==========================================================================
   10. Estilos del Lightbox Modal (Superposición Interactiva)
   ========================================================================== */
.bellivan-lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(15, 23, 42, 0.85);
	z-index: 99999;
	display: none; /* Se activa mediante jQuery flex/hide/fadeIn */
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.bellivan-lightbox-content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bellivan-lightbox-img {
	max-width: 100%;
	max-height: 85vh;
	border-radius: 12px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.1);
	animation: bellivanZoomIn 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bellivan-lightbox-close {
	position: absolute;
	top: -45px;
	right: 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 38px;
	font-weight: 300;
	cursor: pointer;
	transition: color 0.2s ease, transform 0.2s ease;
	user-select: none;
	line-height: 1;
}

.bellivan-lightbox-close:hover {
	color: #ffffff;
	transform: scale(1.1);
}

@keyframes bellivanZoomIn {
	from { opacity: 0; transform: scale(0.95); }
	to { opacity: 1; transform: scale(1); }
}

