/* Estilos personalizados para complementar Tailwind CSS */

/* Gradiente para hero sections */
.hero-gradient {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

/* Smooth scroll para toda la página */
html {
  scroll-behavior: smooth;
}

/* Animación para el loader */
#div_carga img {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* Estilos para el dropdown de productos */
.productos-dropdown {
  position: relative;
}

#productos-menu {
  z-index: 50;
  min-width: 14rem;
}

/* Asegurar que el menú móvil esté por encima del contenido */
#mobile-menu {
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

/* Transición suave para elementos interactivos */
a, button {
  transition: all 0.3s ease;
}

/* Override para evitar conflictos con CSS antiguo */
.container {
  max-width: 100% !important;
}

/* Estilos para la barra de búsqueda */
input[type="text"]:focus {
  outline: none;
}

input[type="text"]::placeholder {
  color: #94a3b8;
}

/* Material Icons alineación */
.material-symbols-outlined {
  vertical-align: middle;
  user-select: none;
  font-size: 20px;
}

/* Hover effect para enlaces del menú móvil */
#mobile-menu a:hover {
  transform: translateX(4px);
}

/* Sombra personalizada para el header */
header {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

/* Efecto de backdrop blur mejorado */
@supports (backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px)) {
  header {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
}

/* Prevenir que el logo se deforme */
header img {
  max-height: 64px;
  height: auto;
  width: auto;
}

/* Ajustes responsivos para el buscador móvil */
@media (max-width: 768px) {
  header {
    padding-bottom: 0;
  }
  
  /* Logo más pequeño en móvil */
  header img {
    max-height: 56px;
  }
  
  /* Asegurar que el input de búsqueda no se deforme en móvil */
  input[type="text"] {
    font-size: 12px;
    -webkit-appearance: none;
    appearance: none;
  }
  
  /* Placeholder más pequeño en móvil */
  input[type="text"]::placeholder {
    font-size: 11px;
  }
  
  /* Ajuste del icono de búsqueda en móvil */
  .material-symbols-outlined {
    font-size: 18px !important;
  }
}

/* Estilos modernos para el carrusel hero */
.tp-banner-container {
  position: relative;
}

.tp-banner-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

.tp-banner .caption {
  z-index: 2;
}

/* Mejorar la legibilidad de los textos del slider */
.tp-banner h2 {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.02em;
}

.tp-banner h3 {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.01em;
}

/* Badge modernos en el slider */
.tp-banner span.inline-block {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive para textos del carrusel */
@media (max-width: 768px) {
  .tp-banner h2.font-display {
    font-size: 2.5rem !important;
  }
  
  .tp-banner h3.font-sans {
    font-size: 1.25rem !important;
  }
  
  .tp-banner .text-center {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* Estilos personalizados para complementar Tailwind CSS */

/* Gradiente para hero sections */
.hero-gradient {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

/* Smooth scroll para toda la página */
html {
  scroll-behavior: smooth;
}

/* Animación para el loader */
#div_carga img {
  animation: pulse 1.5s ease-in-out infinite;
}

.tp-banner li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
	z-index: 1;
	pointer-events: none;
}

/* Asegurar que el caption esté sobre el overlay */
.caption {
	position: relative;
	z-index: 2 !important;
}

/* Contenedor de texto con fondo semitransparente */
.text-content-wrapper {
	padding: 2rem 3rem 2rem 2rem;
	border-radius: 1rem;
	
}

/* Mejorar sombras de texto */
.text-shadow-strong {
	text-shadow: 
		0 2px 4px rgba(0, 0, 0, 0.8),
		0 4px 8px rgba(0, 0, 0, 0.6),
		0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Animación sutil para el badge */
.badge-pulse {
	animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.9;
	}
}



/* Estilos modernos para el carrusel hero */
.tp-banner-container {
  position: relative;
}

.tp-banner-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
  pointer-events: none;
}



/* Mejorar la legibilidad de los textos del slider */
.tp-banner h2 {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.02em;
}

.tp-banner h3 {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.01em;
}

/* Badge modernos en el slider */
.tp-banner span.inline-block {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Opacidad para imágenes del slider */
.slider-img-opacity {
  opacity: 0.8;
}

/* Animación del contador */
.counter {
  display: inline-block;
}

/* Prevenir que las imágenes de productos se deforme */
.img_prod, .imgagen_prod {
  max-width: 100%;
  height: auto;
}

/* Estilos para el carrusel de productos */
.showbiz-container {
  position: relative;
}

.showbiz .overflowholder {
  overflow: hidden;
}

/* Tarjetas de productos: centrar imagen y evitar corte de títulos */
.product-image-link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.product-image-link img {
	max-height: 100%;
}

.product-title {
	overflow-wrap: anywhere;
	word-break: break-word;
	line-height: 1.35;
}

/* Transición suave para elementos interactivos */
a, button {
  transition: all 0.3s ease;
}

/* Material Icons alineación */
.material-symbols-outlined {
  vertical-align: middle;
  user-select: none;
  font-size: 20px;
}

/* Dark mode para primary color */
:root {
  --color-primary: #3f2b96;
  --color-primary-light: #93c5fd;
}

.bg-primary {
  background-color: var(--color-primary);
}

.text-primary {
  color: var(--color-primary);
}

.text-primary-light {
  color: var(--color-primary-light);
}

.border-primary {
  border-color: var(--color-primary);
}

.hover\:bg-primary:hover {
  background-color: var(--color-primary);
}

.hover\:text-primary:hover {
  color: var(--color-primary);
}

.ring-primary {
  --tw-ring-color: var(--color-primary);
}

.shadow-primary\/30 {
  --tw-shadow-color: rgba(63, 43, 150, 0.3);
}

.shadow-primary\/5 {
  --tw-shadow-color: rgba(63, 43, 150, 0.05);
}


/* Estilos para proveedores - mismo tamaño de tarjeta en móvil */
@media (max-width: 768px) {
	#our-clients {
		padding: 8px 4px;
	}
	
	#our-clients .overflowholder ul {
		gap: 16px !important;
	}
	
	#our-clients .overflowholder ul li {
		width: 320px !important;
		min-width: 320px !important;
		max-width: 320px !important;
		margin: 0 auto !important;
	}
	
	#our-clients .overflowholder ul li > div {
		width: 100%;
		height: 180px;
		min-height: 180px;
		max-height: 180px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 28px;
	}
	
	#our-clients .overflowholder ul li img {
		max-height: 120px !important;
		max-width: 100% !important;
		width: auto !important;
		height: auto !important;
		object-fit: contain;
	}
	
	/* Ocultar items adicionales en móvil - solo mostrar uno */
	#our-clients .overflowholder {
		display: flex;
		justify-content: center;
		overflow: hidden;
	}

		/* Banner parallax optimizado para móvil */
	#banner-parallax {
		min-height: auto;
	}
	
	#banner-parallax img {
		filter: brightness(0.6);
	}
	
	#banner-parallax .bg-gradient-to-b {
		background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.65));
	}
	
	/* Productos - mostrar uno por uno centrado */
	#new-arrivals .overflowholder {
		display: flex;
		justify-content: center;
		overflow: hidden;
	}
	
	#new-arrivals .overflowholder ul li {
		width: 280px !important;
		min-width: 280px !important;
		max-width: 280px !important;
		margin: 0 auto !important;
	}
	
	#new-arrivals .overflowholder ul li > div {
		width: 280px !important;
	}
	
	/* Reducir tamaño de imagen de producto para que quepa en la tarjeta */
	#new-arrivals .overflowholder ul li img {
		max-width: 85% !important;
		max-height: 85% !important;
		width: auto !important;
		height: auto !important;
		object-fit: contain;
	}
	
	#new-arrivals .overflowholder ul li .mediaholder,
	#new-arrivals .overflowholder ul li .relative {
		padding: 1rem !important;
	}

		.tp-banner h2.font-display {
		font-size: 15px !important;
		color: white !important;
	}
	
	.tp-banner h3.font-sans {
		font-size: 10px !important;
		color: white !important;
	}
	
	.tp-banner .text-left {
		padding-left: 30px !important;
		padding-right: 10px !important;
	}
	
	.tp-banner span.inline-block {
		font-size: 8px !important;
		padding: 4px 8px !important;
		color: white !important;
	}
	
	.tp-banner h3 span {
		color: #93c5fd !important;
	}
}

/* Estilos para proveedores en desktop */
#our-clients .overflowholder ul li {
  width: 192px;
  min-width: 192px;
  max-width: 192px;
}

#our-clients .overflowholder ul li > div {
  width: 100%;
  height: 144px;
  min-height: 144px;
  max-height: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#our-clients .overflowholder ul li img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Flechas hover con color primario de fondo */
#showbiz_left_1:hover,
#showbiz_right_1:hover,
#showbiz_left_2:hover,
#showbiz_right_2:hover {
  background-color: var(--color-primary) !important;
}

#showbiz_left_1:hover i,
#showbiz_right_1:hover i,
#showbiz_left_2:hover i,
#showbiz_right_2:hover i {
  color: white !important;
}


	
/* Asegurar que las tarjetas de proveedores tengan el mismo tamaño */
.provider-card {
	min-height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.provider-card img {
	max-width: 100%;
	max-height: 96px;
	width: auto;
	height: auto;
	object-fit: contain;
}

/* ============================================= */
/* ESTILOS PARA LA SECCIÓN DE PROVEEDORES */
/* Agregar estos estilos al final de tu archivo inicio.css */
/* O incluirlos en una etiqueta <style> al final del archivo PHP */
/* ============================================= */

/* ===== ESTILOS PARA PROVEEDORES CON SCROLL INFINITO ===== */

.providers-marquee {
	width: 100%;
	overflow: hidden;
	position: relative;
	background: transparent;
	padding: 2rem 0;
}

.providers-track {
	display: flex;
	gap: 3rem;
	animation: scroll-providers 40s linear infinite;
	width: fit-content;
}

/* Pausar animación al hover */
.providers-marquee:hover .providers-track {
	animation-play-state: paused;
}

@keyframes scroll-providers {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.provider-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	min-width: 200px;
	flex-shrink: 0;
}

.provider-logo-box {
	width: 140px;
	height: 140px;
	background: white;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
	border: 2px solid #f1f5f9;
}

.provider-logo-box:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	border-color: #3f2b96;
}

.provider-logo-box img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(0);
	transition: filter 0.3s ease;
}

.provider-item:hover .provider-logo-box img {
	filter: grayscale(0);
}

.provider-name {
	font-weight: 600;
	font-size: 0.875rem;
	color: #334155;
	text-align: center;
	letter-spacing: 0.05em;
}

/* Responsive para móviles */
@media (max-width: 768px) {
	.providers-track {
		gap: 2rem;
		animation-duration: 30s;
	}
	
	.provider-item {
		min-width: 160px;
		gap: 0.75rem;
	}
	
	.provider-logo-box {
		width: 110px;
		height: 110px;
		padding: 1rem;
	}
	
	.provider-name {
		font-size: 0.75rem;
	}
}

/* ============================================= */
/* SLIDER MODERNO - CSS PERSONALIZADO */
/* Colores: primary #3f2b96, primary-light #7c3aed */
/* ============================================= */

/* Variables CSS para consistencia */
:root {
	--primary: #3f2b96;
	--primary-light: #7c3aed;
	--primary-dark: #2d1f6b;
	--accent: #60a5fa;
	--text-light: #f1f5f9;
	--text-gray: #94a3b8;
}

/* Contenedor Principal del Slider */
.modern-slider {
	position: relative;
	width: 100%;
	height: 90vh;
	min-height: 600px;
	overflow: hidden;
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	border-radius: 0 0 1rem 1rem;
}

/* Track de Slides */
.slider-track {
	position: relative;
	width: 100%;
	height: 100%;
}

/* Slide Individual */
.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
	            visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

.slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

/* Background de Slide */
.slide-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.slide-bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* filter: brightness(0.8) saturate(0.9); */
	transform: scale(1);
	transition: transform 8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .slide-bg-img {
	transform: scale(1.1);
}

.slide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(267deg, rgb(44 56 75 / 0%) 0%, rgb(15 23 42 / 0%) 50%, rgb(63 43 150 / 43%) 100%);
	z-index: 1;
}

/* Contenedor de Contenido */
.slide-content-wrapper {
	position: relative;
	z-index: 2;
	height: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 3rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

/* Área de Texto */
.slide-text-area {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	transform: translateX(-50px);
	opacity: 0;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.slide.active .slide-text-area {
	transform: translateX(0);
	opacity: 1;
}

/* Badge Superior */
.slide-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1.25rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 9999px;
	backdrop-filter: blur(10px);
	width: fit-content;
	transition: all 0.3s ease;
}

.slide-badge:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
}

.badge-dot {
	width: 8px;
	height: 8px;
	background: var(--primary-light);
	border-radius: 50%;
	animation: pulse-dot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-dot {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.7;
		transform: scale(1.1);
	}
}

.badge-text {
	font-size: 0.75rem;
	font-weight: 700;
	color: white;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Título */
.slide-title {
	font-size: 4.5rem;
	font-weight: 700;
	color: white;
	line-height: 1.1;
	letter-spacing: -0.04em;
	margin: 0;
	font-family: 'Lexend', 'Inter', sans-serif;
}

/* .slide-highlight {
	color: var(--primary-light);
	background: linear-gradient(135deg, var(--primary-light) 0%, #ddbeef 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}  */
.slide-highlight {
	font-weight: 700;
	color: white;
	line-height: 1.1;
	letter-spacing: -0.04em;
	margin: 0;
	font-family: 'Lexend', 'Inter', sans-serif;
} 

/* Descripción */
.slide-description {
	font-size: 1.25rem;
	color: white;
	line-height: 1.6;
	max-width: 600px;
	margin: 0;
}

.slide-description strong {
	color: white;
	font-weight: 600;
}

/* Botones de Acción */
.slide-actions {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.btn-primary,
.btn-secondary {
	padding: 1rem 2rem;
	border-radius: 0.75rem;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: var(--primary);
	color: white;
	box-shadow: 0 4px 12px rgba(63, 43, 150, 0.3);
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(63, 43, 150, 0.4);
}

.btn-primary:hover::before {
	opacity: 1;
}

.btn-primary span,
.btn-secondary span {
	position: relative;
	z-index: 1;
}

.btn-primary .material-symbols-outlined {
	transition: transform 0.3s ease;
}

.btn-primary:hover .material-symbols-outlined {
	transform: translateX(4px);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
}

/* Área Visual */
.slide-visual-area {
	transform: translateX(50px);
	opacity: 0;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.slide.active .slide-visual-area {
	transform: translateX(0);
	opacity: 1;
}

.visual-container {
	position: relative;
	width: 100%;
	aspect-ratio: 1;
	max-width: 600px;
	margin-left: auto;
}

/* Decoración Visual */
.visual-decoration {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	height: 80%;
	background: radial-gradient(circle, 
		rgba(124, 58, 237, 0.15) 0%, 
		transparent 70%);
	border-radius: 50%;
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		transform: translate(-50%, -55%) scale(1.05);
	}
}

/* Tarjeta Visual */
.visual-card {
	position: relative;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1.5rem;
	padding: 3rem;
	backdrop-filter: blur(20px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.visual-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
	border-color: rgba(124, 58, 237, 0.3);
}

.inventory-label {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.inventory-value {
	font-size: 3rem;
	font-weight: 700;
	color: white;
	margin-bottom: 0.5rem;
	font-family: 'Lexend', sans-serif;
	background: linear-gradient(135deg, white 0%, var(--accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.inventory-desc {
	font-size: 1rem;
	color: var(--text-gray);
}

/* Controles del Slider */
.slider-controls {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	display: flex;
	gap: 1rem;
	z-index: 10;
}

.slider-btn {
	width: 56px;
	height: 56px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.slider-btn:hover {
	background: var(--primary);
	border-color: var(--primary);
	transform: scale(1.1);
	box-shadow: 0 8px 20px rgba(63, 43, 150, 0.4);
}

.slider-btn .material-symbols-outlined {
	color: white;
	font-size: 1.5rem;
}

/* Indicadores */
.slider-indicators {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.75rem;
	z-index: 10;
}

.indicator {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.3);
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.indicator:hover {
	background: rgba(255, 255, 255, 0.5);
	transform: scale(1.2);
}

.indicator.active {
	background: var(--primary-light);
	border-color: var(--primary-light);
	width: 32px;
	border-radius: 6px;
}


/* ============================================= */
/* RESPONSIVE DESIGN */
/* ============================================= */

@media (max-width: 1024px) {
	.slide-content-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 0 2rem;
	}

	.slide-visual-area {
		display: none;
	}

	.slide-title {
		font-size: 3rem;
	}

	.modern-slider {
		height: 70vh;
		min-height: 500px;
	}
}

@media (max-width: 768px) {
	.modern-slider {
		height: 80vh;
		min-height: 600px;
	}

	.slide-content-wrapper {
		padding: 0 1.5rem;
		justify-content: center;
	}

	.slide-text-area {
		gap: 1.5rem;
	}

	.slide-title {
		font-size: 2.25rem;
		line-height: 1.15;
		word-break: break-word;
		hyphens: auto;
	}

	.slide-description {
		font-size: 1rem;
	}

	.slide-actions {
		flex-direction: column;
	}

	.btn-primary,
	.btn-secondary {
		width: 100%;
		justify-content: center;
	}

	.slider-controls {
		bottom: 6rem;
		right: 1rem;
	}

	.slider-btn {
		width: 48px;
		height: 48px;
	}

	.slider-indicators {
		bottom: 1.5rem;
	}

	.slide-content-wrapper {
		padding: 0 1.25rem;
	}

	.slide-description {
		max-width: 100%;
	}
  .slide-bg-img {
      filter: brightness(0.9) saturate(1);
  }

  .slide-overlay {
      /* Overlay más claro en móvil */
      /* background: linear-gradient(135deg, 
          rgba(30, 41, 59, 0.65) 0%, 
          rgba(15, 23, 42, 0.55) 50%,
          rgba(63, 43, 150, 0.1) 100%); */
  }
}

@media (max-width: 480px) {
	.slide-title {
		font-size: 1.85rem;
		line-height: 1.2;
	}

	.slide-highlight {
		font-size: 1.85rem;
		line-height: 1.2;
	}

	.slide-badge {
		padding: 0.375rem 1rem;
	}

	.badge-text {
		font-size: 0.625rem;
	}

	.inventory-value {
		font-size: 2rem;
	}

	.slider-controls {
		bottom: 5rem;
	}

	.slide-description {
		font-size: 0.95rem;
		line-height: 1.5;
	}
}
