/* ============================================
   ARC IA - CUSTOM STYLES
   ============================================ */

/* Body and Page Background */
body {
	background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
	min-height: 100vh;
}

#main.wrapper {
	background: transparent !important;
}

/* Smooth Scroll */
html {
	scroll-behavior: smooth;
}

/* Smooth Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@keyframes glow {
	0%, 100% {
		box-shadow: 0 10px 40px rgba(0,0,0,0.3);
	}
	50% {
		box-shadow: 0 10px 60px rgba(74, 158, 255, 0.4);
	}
}

/* Video Showcase Section */
.video-showcase-section {
	margin: 3rem 0;
	padding: 4rem 2rem;
	background: linear-gradient(135deg, #0a0e27 0%, #1a1d3e 50%, #2a2d4e 100%);
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
	position: relative;
	overflow: hidden;
	animation: fadeInUp 0.8s ease-out;
}

.video-showcase {
	margin: 3rem 0;
	padding: 4rem 2rem;
	background: linear-gradient(135deg, #0a0e27 0%, #1a1d3e 50%, #2a2d4e 100%);
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
	position: relative;
	overflow: hidden;
	animation: fadeInUp 0.8s ease-out;
}

.video-showcase-section::before,
.video-showcase::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 15% 20%, rgba(74, 158, 255, 0.3) 0%, transparent 40%),
		radial-gradient(circle at 85% 80%, rgba(138, 43, 226, 0.2) 0%, transparent 40%),
		radial-gradient(circle at 50% 50%, rgba(0, 150, 255, 0.1) 0%, transparent 60%);
	pointer-events: none;
	animation: pulse 8s ease-in-out infinite;
}

.video-section-header,
.video-header {
	text-align: center;
	margin-bottom: 2.5rem;
	position: relative;
	z-index: 2;
	animation: fadeInUp 1s ease-out 0.2s both;
}

.video-section-header h3,
.video-header h3 {
	font-size: 2.8rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: white;
	text-shadow: 0 4px 20px rgba(74, 158, 255, 0.5);
	background: linear-gradient(135deg, #fff 0%, #4a9eff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.video-section-header p,
.video-header p {
	font-size: 1.2rem;
	color: rgba(255,255,255,0.9);
	font-weight: 300;
	letter-spacing: 0.5px;
}

/* Videos Grid */
.videos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
	gap: 3rem;
	position: relative;
	z-index: 2;
	margin-top: 3rem;
}

/* Video Card */
.video-card {
	background: rgba(255,255,255,0.05);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid rgba(74, 158, 255, 0.2);
	transition: all 0.3s ease;
	animation: fadeInUp 0.8s ease-out;
}

.video-card:hover {
	transform: translateY(-5px);
	border-color: rgba(74, 158, 255, 0.5);
	box-shadow: 0 15px 40px rgba(74, 158, 255, 0.3);
}

.video-card-header {
	text-align: center;
	margin-bottom: 1.5rem;
}

.video-card-header h4 {
	font-size: 1.5rem;
	font-weight: 700;
	color: white;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.video-card-header p {
	font-size: 1rem;
	color: rgba(255,255,255,0.7);
	font-weight: 300;
}

.video-card-description {
	margin-top: 1.5rem;
	text-align: center;
}

.video-card-description p {
	font-size: 0.95rem;
	color: rgba(255,255,255,0.8);
	line-height: 1.6;
}

/* ARC Visual Banner */
.arc-visual-banner {
	margin: 4rem 0;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 
		0 25px 80px rgba(0,0,0,0.4),
		inset 0 0 0 1px rgba(74, 158, 255, 0.3);
	animation: fadeInUp 1s ease-out 0.8s both;
	transition: all 0.4s ease;
}

.arc-visual-banner:hover {
	transform: scale(1.02);
	box-shadow: 
		0 30px 100px rgba(74, 158, 255, 0.5),
		inset 0 0 0 2px rgba(74, 158, 255, 0.6);
}

.arc-visual-banner img {
	width: 100%;
	height: auto;
	display: block;
	transition: all 0.4s ease;
}

.arc-visual-banner:hover img {
	transform: scale(1.05);
}

.arc-visual-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(74, 158, 255, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
	z-index: 1;
}

.arc-visual-banner:hover::before {
	opacity: 1;
}

.video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 
		0 20px 70px rgba(0,0,0,0.6),
		0 0 0 1px rgba(74, 158, 255, 0.3),
		inset 0 0 0 1px rgba(255,255,255,0.1);
	background: #000;
	margin-bottom: 2.5rem;
	z-index: 2;
	transition: all 0.3s ease;
	animation: fadeInUp 1s ease-out 0.4s both;
}

.video-wrapper:hover {
	transform: scale(1.02);
	box-shadow: 
		0 25px 90px rgba(74, 158, 255, 0.3),
		0 0 0 1px rgba(74, 158, 255, 0.5);
}

.video-wrapper video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 16px;
	outline: none;
}

.video-description {
	text-align: center;
	padding: 2rem;
	background: rgba(74, 158, 255, 0.08);
	backdrop-filter: blur(20px);
	border-radius: 16px;
	border: 1px solid rgba(74, 158, 255, 0.3);
	position: relative;
	z-index: 2;
	animation: fadeInUp 1s ease-out 0.6s both;
	transition: all 0.3s ease;
}

.video-description:hover {
	background: rgba(74, 158, 255, 0.12);
	border-color: rgba(74, 158, 255, 0.5);
	transform: translateY(-5px);
}

.video-description p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: rgba(255,255,255,0.95);
	margin: 0;
	font-weight: 300;
}

/* CTA Section Styles */
.cta-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%) !important;
	padding: 4rem 2rem !important;
	border-radius: 20px !important;
	text-align: center;
	color: white;
	box-shadow: 
		0 20px 60px rgba(102, 126, 234, 0.4),
		inset 0 0 0 1px rgba(255,255,255,0.2) !important;
	position: relative;
	overflow: hidden;
	animation: fadeInUp 0.8s ease-out;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
		radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
	pointer-events: none;
	animation: pulse 10s ease-in-out infinite;
}

.cta-section h3 {
	font-size: 2.5rem !important;
	margin-bottom: 1.25rem !important;
	color: white !important;
	text-shadow: 0 4px 20px rgba(0,0,0,0.3);
	font-weight: 800 !important;
	position: relative;
	z-index: 1;
}

.cta-text {
	font-size: 1.2rem !important;
	margin-bottom: 2.5rem !important;
	opacity: 0.95 !important;
	color: white !important;
	font-weight: 300;
	line-height: 1.7;
	position: relative;
	z-index: 1;
}

.cta-buttons {
	display: flex !important;
	justify-content: center !important;
	gap: 2rem !important;
	flex-wrap: wrap !important;
	position: relative;
	z-index: 1;
}

.cta-button {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
}

.cta-button .button {
	padding: 1.2rem 3rem !important;
	font-size: 1.15rem !important;
	border-radius: 50px !important;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
	text-decoration: none !important;
	display: inline-block !important;
	font-weight: 600 !important;
	letter-spacing: 0.5px;
}

.cta-button .button.primary {
	background: white !important;
	color: #667eea !important;
	border: 2px solid white !important;
	box-shadow: 0 10px 40px rgba(0,0,0,0.2) !important;
}

.cta-button .button.primary:hover {
	transform: translateY(-5px) scale(1.05) !important;
	box-shadow: 0 15px 50px rgba(255,255,255,0.4) !important;
	background: #f0f0f0 !important;
}

.cta-button .button:not(.primary) {
	background: rgba(255,255,255,0.15) !important;
	color: white !important;
	border: 2px solid rgba(255,255,255,0.8) !important;
	backdrop-filter: blur(10px);
}

.cta-button .button:not(.primary):hover {
	background: rgba(255,255,255,0.25) !important;
	border-color: white !important;
	transform: translateY(-5px) scale(1.05) !important;
	box-shadow: 0 15px 50px rgba(255,255,255,0.3) !important;
}

/* Logo positioning - Integrado con el header */
#header {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	z-index: 10000 !important;
	display: flex !important;
	align-items: center !important;
	padding: 1rem 2rem !important;
	background: rgba(26, 29, 35, 0.98) !important;
	backdrop-filter: blur(20px) !important;
	height: 70px !important;
	box-shadow: 0 4px 30px rgba(0,0,0,0.3);
	border-bottom: 1px solid rgba(74, 158, 255, 0.2);
}

#logo {
	position: static !important;
	left: auto !important;
	top: auto !important;
	transform: none !important;
	margin: 0 !important;
	margin-right: 2rem !important;
	z-index: 10001 !important;
	display: flex !important;
	align-items: center !important;
	height: 50px !important;
}

#logo a {
	display: flex !important;
	align-items: center !important;
	height: 100% !important;
}

#logo img {
	display: block !important;
	max-height: 50px !important;
	height: 50px !important;
	width: auto !important;
	filter: brightness(1);
	transition: all 0.3s ease;
	vertical-align: middle;
}

#logo img:hover {
	filter: brightness(1.1);
	transform: scale(1.05);
}

/* Ajustar navegación para que no se solape con el logo */
#nav {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	position: static !important;
	right: auto !important;
	top: auto !important;
}

/* Ajustar main para que no se oculte bajo el header fijo */
#main {
	padding-top: 100px !important;
	position: relative;
	z-index: 1;
}

#main::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 10% 20%, rgba(74, 158, 255, 0.05) 0%, transparent 40%),
		radial-gradient(circle at 90% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 40%);
	pointer-events: none;
	z-index: -1;
}

/* Hero Header Styles */
.hero-header {
	position: relative;
	padding: 3rem 2rem !important;
	margin-bottom: 3rem !important;
	margin-top: 0 !important;
	overflow: hidden;
	border-radius: 15px;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		linear-gradient(135deg, #1a1d23 0%, #2E3842 50%, #3d4f5c 100%),
		repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(74, 158, 255, 0.03) 35px, rgba(74, 158, 255, 0.03) 70px);
	z-index: 0;
}

.hero-background::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 15% 20%, rgba(74, 158, 255, 0.15) 0%, transparent 40%),
		radial-gradient(circle at 85% 80%, rgba(53, 122, 189, 0.15) 0%, transparent 40%),
		radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
	animation: pulse 10s ease-in-out infinite;
}

.gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 50%, rgba(74, 158, 255, 0.12) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(74, 158, 255, 0.08) 0%, transparent 50%),
		linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.1) 100%);
	animation: pulse 10s ease-in-out infinite;
	will-change: opacity;
}

@keyframes pulse {
	0%, 100% { 
		opacity: 0.5;
	}
	50% { 
		opacity: 1;
	}
}

.floating-shapes {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}

.shape {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, rgba(74, 158, 255, 0.25), rgba(255,255,255,0.08));
	backdrop-filter: blur(10px);
	box-shadow: 
		0 0 30px rgba(74, 158, 255, 0.2),
		inset 0 0 20px rgba(255,255,255,0.1);
	border: 1px solid rgba(74, 158, 255, 0.2);
}

.shape-1 {
	width: 150px;
	height: 150px;
	top: -50px;
	left: 10%;
	animation: float 25s ease-in-out infinite, glow 3s ease-in-out infinite alternate;
	will-change: transform;
}

.shape-2 {
	width: 100px;
	height: 100px;
	top: 50%;
	right: 15%;
	animation: float 20s ease-in-out infinite reverse, glow 4s ease-in-out infinite alternate;
	will-change: transform;
}

.shape-3 {
	width: 80px;
	height: 80px;
	bottom: -20px;
	left: 60%;
	animation: float 22s ease-in-out infinite, glow 3.5s ease-in-out infinite alternate;
	will-change: transform;
}

@keyframes glow {
	0% {
		box-shadow: 0 0 20px rgba(74, 158, 255, 0.2), inset 0 0 20px rgba(255,255,255,0.1);
	}
	100% {
		box-shadow: 0 0 40px rgba(74, 158, 255, 0.4), inset 0 0 30px rgba(255,255,255,0.2);
	}
}

@keyframes float {
	0%, 100% { 
		transform: translateY(0) rotate(0deg);
	}
	50% { 
		transform: translateY(-30px) rotate(180deg);
	}
}

.hero-header-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: white;
}
.animated-title {
	font-size: 3rem !important;
	font-weight: 700 !important;
	margin-bottom: 1.5rem !important;
	color: white !important;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	text-shadow: 0 4px 20px rgba(0,0,0,0.5);
	animation: slideInDown 1s ease-out;
	flex-wrap: wrap;
}animation: slideInDown 1s ease-out;
}

@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.title-icon {
	font-size: 2.8rem;
	animation: rotate 4s ease-in-out infinite;
	will-change: transform;
}

@keyframes rotate {
	0%, 100% { 
		transform: rotate(0deg) scale(1);
	}
	50% { 
		transform: rotate(10deg) scale(1.1);
	}
}

.title-badge {
	background: linear-gradient(135deg, #4a9eff 0%, #357abd 100%);
	backdrop-filter: blur(10px);
	padding: 0.2rem 0.8rem;
	border-radius: 20px;
	font-size: 1.5rem;
	border: 2px solid rgba(255,255,255,0.3);
	box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.animated-subtitle {
	font-size: 1.2rem !important;
	color: rgba(255,255,255,0.9) !important;
	max-width: 900px;
	margin: 0 auto 2rem auto !important;
	line-height: 1.7 !important;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
	animation: slideInUp 1s ease-out 0.3s both;
}animation: slideInUp 1s ease-out 0.3s both;
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.header-stats {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	animation: slideInUp 1s ease-out 0.6s both;
}

.stat-badge {
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(15px);
	padding: 1rem 1.5rem;
	border-radius: 12px;
	border: 2px solid rgba(255,255,255,0.15);
	box-shadow: 0 6px 20px rgba(0,0,0,0.3);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 110px;
}

.stat-badge:hover {
	transform: translateY(-5px) scale(1.05);
	background: rgba(74, 158, 255, 0.2);
	border-color: rgba(74, 158, 255, 0.4);
	box-shadow: 0 10px 30px rgba(74, 158, 255, 0.3);
}

.stat-number {
	font-size: 1.75rem;
	font-weight: 700;
	color: white;
	display: block;
	margin-bottom: 0.25rem;
}

.stat-label {
	font-size: 0.75rem;
	color: rgba(255,255,255,0.85);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Hero Section */
.product-hero {
	position: relative;
	margin-bottom: 3rem;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.hero-image {
	width: 100%;
	height: auto;
	display: block;
}

.hero-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
	padding: 2rem;
	color: white;
}

.hero-content h2 {
	margin: 0 0 0.5rem 0;
	font-size: 2.5rem;
	font-weight: 700;
}

.hero-subtitle {
	margin: 0;
	font-size: 1.1rem;
	opacity: 0.95;
}

/* Features Cards */
.features-modern {
	margin-bottom: 4rem;
	position: relative;
	padding: 3rem 0;
	animation: fadeInUp 0.8s ease-out 0.3s both;
}

.features-modern::before {
	content: '';
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(74, 158, 255, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	z-index: -1;
	animation: pulse 6s ease-in-out infinite;
}

.features-modern h3 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #2c3e50;
	font-weight: 800;
	position: relative;
	padding-bottom: 1rem;
	animation: fadeInUp 1s ease-out 0.5s both;
}

.features-modern h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #4a9eff, transparent);
	border-radius: 2px;
	animation: glow 3s ease-in-out infinite;
}

.feature-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	max-width: 1000px;
	margin: 0 auto;
}

.feature-card {
	background: linear-gradient(135deg, rgba(26, 29, 35, 0.9) 0%, rgba(46, 56, 66, 0.8) 100%);
	padding: 2rem 1.5rem;
	border-radius: 16px;
	box-shadow: 
		0 8px 32px rgba(0,0,0,0.4),
		inset 0 0 0 1px rgba(74, 158, 255, 0.2);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	text-align: center;
	border: 1px solid rgba(74, 158, 255, 0.2);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(20px);
	aspect-ratio: 1 / 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	animation: fadeInUp 0.6s ease-out both;
}

.feature-card:nth-child(1) { animation-delay: 0.7s; }
.feature-card:nth-child(2) { animation-delay: 0.8s; }
.feature-card:nth-child(3) { animation-delay: 0.9s; }
.feature-card:nth-child(4) { animation-delay: 1s; }
.feature-card:nth-child(5) { animation-delay: 1.1s; }
.feature-card:nth-child(6) { animation-delay: 1.2s; }

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(74, 158, 255, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.feature-card:hover {
	transform: translateY(-12px) scale(1.03);
	box-shadow: 
		0 20px 60px rgba(74, 158, 255, 0.4),
		inset 0 0 0 1px rgba(74, 158, 255, 0.6);
	border-color: rgba(74, 158, 255, 0.6);
}

.feature-card:hover::before {
	opacity: 1;
}

.feature-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	filter: drop-shadow(0 4px 8px rgba(74, 158, 255, 0.5));
	transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
	transform: scale(1.2) rotateY(360deg);
	filter: drop-shadow(0 6px 12px rgba(74, 158, 255, 0.8));
}

.feature-card h4 {
	color: white;
	margin-bottom: 0.75rem;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.feature-card:hover h4 {
	color: #4a9eff;
	transform: scale(1.05);
}

.feature-card p {
	color: rgba(255,255,255,0.8);
	line-height: 1.6;
	margin: 0;
	font-size: 0.9rem;
	font-weight: 300;
	transition: all 0.3s ease;
}

.feature-card:hover p {
	color: rgba(255,255,255,0.95);
}

.feature-card p {
	color: rgba(255,255,255,0.75);
	line-height: 1.6;
	margin: 0;
}

/* Requirements / Benefits */
.requirements-modern {
	background: transparent;
	padding: 3rem 0;
	border-radius: 0;
	margin-bottom: 4rem;
	color: white;
	box-shadow: none;
	position: relative;
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.requirements-modern::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	z-index: -1;
	animation: pulse 8s ease-in-out infinite;
}

.requirements-modern h3 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #2c3e50;
	font-weight: 800;
	text-shadow: none;
	position: relative;
	padding-bottom: 1rem;
	animation: fadeInUp 1s ease-out 0.6s both;
}

.requirements-modern h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #8a2be2, transparent);
	border-radius: 2px;
	animation: glow 3s ease-in-out infinite;
}

.req-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	max-width: 1000px;
	margin: 0 auto;
}

.req-card {
	background: linear-gradient(135deg, rgba(138, 43, 226, 0.15) 0%, rgba(74, 158, 255, 0.15) 100%);
	backdrop-filter: blur(20px);
	padding: 2rem 1.5rem;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid rgba(138, 43, 226, 0.3);
	box-shadow: 
		0 8px 32px rgba(0,0,0,0.3),
		inset 0 0 0 1px rgba(138, 43, 226, 0.2);
	aspect-ratio: 1 / 1;
	text-align: center;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	animation: fadeInUp 0.6s ease-out both;
}

.req-card:nth-child(1) { animation-delay: 0.8s; }
.req-card:nth-child(2) { animation-delay: 0.9s; }
.req-card:nth-child(3) { animation-delay: 1s; }
.req-card:nth-child(4) { animation-delay: 1.1s; }

.req-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(74, 158, 255, 0.2) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.req-card:hover {
	background: linear-gradient(135deg, rgba(138, 43, 226, 0.25) 0%, rgba(74, 158, 255, 0.25) 100%);
	border-color: rgba(138, 43, 226, 0.6);
	transform: translateY(-12px) scale(1.05);
	box-shadow: 
		0 20px 60px rgba(138, 43, 226, 0.5),
		inset 0 0 0 1px rgba(138, 43, 226, 0.6);
}

.req-card:hover::before {
	opacity: 1;
}

.req-icon {
	font-size: 2.5rem;
	filter: drop-shadow(0 4px 8px rgba(138, 43, 226, 0.5));
	margin-bottom: 0.75rem;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.req-card:hover .req-icon {
	transform: scale(1.2) rotate(360deg);
	filter: drop-shadow(0 6px 12px rgba(138, 43, 226, 0.8));
}

.req-details {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 1;
}

.req-details strong {
	font-size: 1.1rem;
	font-weight: 700;
	color: white;
	margin-bottom: 0.5rem;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.req-card:hover .req-details strong {
	color: #bb86fc;
	transform: scale(1.05);
}

.req-details span {
	font-size: 0.9rem;
	font-weight: 300;
	color: rgba(255,255,255,0.8);
	line-height: 1.5;
	transition: all 0.3s ease;
}

.req-card:hover .req-details span {
	color: rgba(255,255,255,0.95);
}

/* Responsive para req-cards */
@media screen and (max-width: 980px) {
	.req-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 736px) {
	.req-cards {
		grid-template-columns: 1fr;
	}
}
/* Modules / Use Cases */
.modules-modern {
	margin-bottom: 4rem;
	position: relative;
	padding: 3rem 0;
}

.modules-modern::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -100px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(0, 255, 157, 0.12) 0%, transparent 70%);
	border-radius: 50%;
	z-index: -1;
	animation: pulse 7s ease-in-out infinite;
}

.modules-modern h3 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #2c3e50;
	font-weight: 800;
	position: relative;
	padding-bottom: 1rem;
}

.modules-modern h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #00ff9d, transparent);
	border-radius: 2px;
}

.modules-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.module-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 244, 248, 0.95) 100%);
	padding: 2.5rem;
	border-radius: 16px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid rgba(0, 255, 157, 0.2);
	box-shadow: 
		0 8px 32px rgba(0,0,0,0.1),
		inset 0 0 0 1px rgba(0, 255, 157, 0.1);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.module-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 255, 157, 0.1) 0%, rgba(74, 158, 255, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.module-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 
		0 20px 60px rgba(0, 255, 157, 0.3),
		inset 0 0 0 1px rgba(0, 255, 157, 0.4);
	border-color: rgba(0, 255, 157, 0.5);
}

.module-card:hover::before {
	opacity: 1;
}

.module-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.25rem;
	position: relative;
	z-index: 1;
}

.module-icon {
	font-size: 2.8rem;
	transition: all 0.3s ease;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.module-card:hover .module-icon {
	transform: scale(1.15) rotate(5deg);
	filter: drop-shadow(0 4px 8px rgba(0, 255, 157, 0.6));
}

.module-card h4 {
	margin: 0;
	color: #2c3e50;
	font-size: 1.5rem;
	font-weight: 700;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.module-card:hover h4 {
	color: #00b574;
}

.module-card p {
	color: #34495e;
	margin: 0;
	line-height: 1.7;
	font-size: 1rem;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.module-card:hover p {
	color: #2c3e50;
}

/* Benefits */
.benefits-modern {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	padding: 3rem 2rem;
	border-radius: 12px;
	margin-bottom: 3rem;
	border: 1px solid rgba(52, 152, 219, 0.1);
	box-shadow: 0 4px 20px rgba(0,0,0,0.05);
	position: relative;
}

.benefits-modern::before {
	content: '';
	position: absolute;
	bottom: -80px;
	left: -80px;
	width: 180px;
	height: 180px;
	background: radial-gradient(circle, rgba(52, 152, 219, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	z-index: -1;
}

.benefits-modern h3 {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 2rem;
	color: #2c3e50;
}

.benefits-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1rem;
	max-width: 900px;
	margin: 0 auto;
}

.benefit-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: white;
	padding: 1.25rem;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
}

.benefit-item:hover {
	transform: translateX(5px);
	box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.check-icon {
	font-size: 1.5rem;
	color: #27ae60;
	font-weight: bold;
}

.benefit-item span:last-child {
	color: #2c3e50;
	font-size: 1rem;
}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	padding: 3rem;
	border-radius: 12px;
	text-align: center;
	color: white;
	margin-bottom: 2rem;
}

.cta-section h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: white;
}

.cta-section p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.cta-section .button {
	font-size: 1.1rem;
	padding: 1rem 2.5rem;
}

/* Fondo General de la Página */
body {
	background: 
		linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
	position: relative;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(52, 152, 219, 0.03) 2px, rgba(52, 152, 219, 0.03) 4px),
		repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(52, 152, 219, 0.03) 2px, rgba(52, 152, 219, 0.03) 4px),
		radial-gradient(circle at 20% 30%, rgba(52, 152, 219, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(74, 158, 255, 0.05) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

#page-wrapper {
	position: relative;
	z-index: 1;
}

.wrapper.style1 {
	background: transparent !important;
}

/* Patrón decorativo en el contenedor */
.container {
	position: relative;
}

.container::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -50px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(74, 158, 255, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: -1;
}

.container::after {
	content: '';
	position: absolute;
	bottom: -50px;
	left: -50px;
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, rgba(52, 152, 219, 0.06) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: -1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media screen and (max-width: 768px) {
	/* Video Grid Responsive */
	.videos-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.video-card {
		padding: 1.5rem;
	}

	.video-section-header h3,
	.video-header h3 {
		font-size: 2rem !important;
	}

	.video-section-header p,
	.video-header p {
		font-size: 1rem !important;
	}

	.video-card-header h4 {
		font-size: 1.3rem;
	}

	.hero-header {
		padding: 2rem 1rem !important;
	}

	.animated-title {
		font-size: 1.8rem !important;
		flex-direction: column;
		gap: 0.5rem;
	}

	.title-icon {
		font-size: 2rem;
	}

	.title-badge {
		font-size: 1rem;
		padding: 0.15rem 0.6rem;
	}

	.animated-subtitle {
		font-size: 0.95rem !important;
	}

	.header-stats {
		gap: 0.75rem;
	}

	.stat-badge {
		padding: 0.75rem 1.25rem;
		min-width: 90px;
	}

	.stat-number {
		font-size: 1.3rem;
	}

	.stat-label {
		font-size: 0.7rem;
	}

	/* Mantener fondo atractivo pero sin animaciones en móvil */
	.hero-background::before {
		animation: none !important;
		opacity: 0.7;
	}

	/* Desactivar animaciones de formas flotantes en móvil */
	.shape-1,
	.shape-2,
	.shape-3 {
		animation: none !important;
		opacity: 0.5;
	}

	.shape-1 {
		width: 80px;
		height: 80px;
	}

	.shape-2 {
		width: 60px;
		height: 60px;
	}

	.shape-3 {
		width: 50px;
		height: 50px;
	}

	/* Desactivar animación del icono en móvil */
	.title-icon {
		animation: none !important;
	}

	/* Desactivar el brillo/pulso del fondo en móvil */
	.gradient-overlay {
		animation: none !important;
		opacity: 0.6;
	}

	/* Optimización de rendimiento en móvil */
	@keyframes float {
		0%, 100% { 
			transform: translateY(0) rotate(0deg);
		}
		50% { 
			transform: translateY(-20px) rotate(90deg);
		}
	}
}

/* Respetar preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
	.shape,
	.gradient-overlay,
	.title-icon,
	.animated-title,
	.animated-subtitle,
	.header-stats {
		animation: none !important;
	}
	
	.stat-badge:hover,
	.req-card:hover,
	.feature-card:hover,
	.module-card:hover,
	.benefit-item:hover {
		transform: none !important;
	}

	.hero-content h2 {
		font-size: 1.8rem;
	}

	.hero-subtitle {
		font-size: 0.95rem;
	}

	.features-modern h3,
	.requirements-modern h3,
	.modules-modern h3,
	.benefits-modern h3,
	.cta-section h3 {
		font-size: 1.5rem;
	}

	.feature-cards,
	.req-cards,
	.modules-grid,
	.benefits-list {
		grid-template-columns: 1fr;
	}

	.requirements-modern {
		padding: 2rem 1rem;
	}

	.cta-section {
		padding: 2rem 1rem;
	}
}

/* Estilos específicos para móviles */
@media screen and (max-width: 736px) {
	.hero-header {
		padding: 2rem 1rem !important;
	}

	.animated-title {
		font-size: 2rem !important;
		flex-wrap: wrap;
		justify-content: center;
	}

	.title-icon {
		font-size: 1.5rem !important;
	}

	.title-badge {
		font-size: 0.8rem !important;
		padding: 0.3rem 0.8rem !important;
	}

	.animated-subtitle {
		font-size: 0.9rem !important;
		line-height: 1.5 !important;
		padding: 0 0.5rem;
	}

	.header-stats {
		flex-direction: column !important;
		gap: 1rem !important;
		width: 100% !important;
		padding: 0 1rem;
	}

	.stat-badge {
		width: 100% !important;
		max-width: 280px !important;
		margin: 0 auto !important;
		padding: 1.2rem 1.5rem !important;
	}

	.stat-number {
		font-size: 2rem !important;
	}

	.stat-label {
		font-size: 0.9rem !important;
	}

	/* Ocultar botón "Solicitar Demo" en móviles */
	#header .button.primary {
		display: none !important;
	}

	/* Ajustar navegación en móvil */
	#nav {
		font-size: 0.9rem !important;
	}

	#nav ul li a {
		padding: 0.5rem 0.8rem !important;
	}

	/* Hero image */
	.hero-image {
		max-width: 100% !important;
		height: auto !important;
	}

	/* Features cards en móvil */
	.feature-cards {
		grid-template-columns: 1fr !important;
		gap: 1rem !important;
	}

	.feature-card {
		padding: 1.5rem !important;
	}

	/* Videos Grid en móviles pequeños */
	.videos-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.video-showcase-section,
	.video-showcase {
		padding: 2rem 1rem;
	}

	.video-card {
		padding: 1rem;
	}

	.video-section-header h3,
	.video-header h3 {
		font-size: 1.5rem !important;
	}

	.video-card-header h4 {
		font-size: 1.1rem;
		flex-direction: column;
		gap: 0.3rem;
	}

	/* Ajustar padding general en móvil */
	.container {
		padding: 0 1rem !important;
	}

	/* Hero content */
	.hero-content h2 {
		font-size: 1.8rem !important;
	}

	.hero-subtitle {
		font-size: 0.95rem !important;
	}
}

/* Para pantallas muy pequeñas */
@media screen and (max-width: 480px) {
	.animated-title {
		font-size: 1.75rem !important;
	}

	.stat-badge {
		padding: 1rem 1.2rem !important;
	}

	.stat-number {
		font-size: 1.75rem !important;
	}

	.stat-label {
		font-size: 0.85rem !important;
	}

	.title-badge {
		font-size: 0.7rem !important;
		padding: 0.25rem 0.6rem !important;
	}

	/* Mantener botón oculto en pantallas muy pequeñas */
	#header .button.primary {
		display: none !important;
	}
}

/* Ajustes adicionales para el header en todas las resoluciones móviles */
@media screen and (max-width: 980px) {
	#header {
		padding: 1rem 1.5rem !important;
		justify-content: center !important;
	}

	/* Ocultar logo en móviles */
	#logo {
		display: none !important;
	}

	/* Ocultar todos los enlaces del menú en la barra superior */
	#nav > ul > li {
		display: none !important;
	}
}
