/* 
* ANIMACIONES
*/
@keyframes shootRight {
	0% {
		transform: translateX(0);
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	100% {
		transform: translateX(400%);
		opacity: 0;
	}
}

@keyframes pulseBorder {
	0% {
		opacity: 0.4;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0.4;
	}
}

.shooting-line {
	position: absolute;
	height: 2px;
	background: linear-gradient(90deg, transparent, #60a5fa, transparent);
	opacity: 0;
}
		
/* 
* SECCIÓN HERO
*/
#hero {
	position: relative;
	width: 100%;
	overflow: hidden;
}

/* Fondo del hero */
.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.hero-bg-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, 
		rgb(247, 250, 252) 0%, 
		rgb(235, 245, 250) 25%, 
		rgb(228, 242, 246) 50%, 
		rgb(231, 240, 248) 75%, 
		rgb(239, 243, 251) 100%);
}

.hero-bg-grid {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(to right, rgba(205, 217, 228, 0.5) 1px, transparent 1px),
		linear-gradient(rgba(205, 217, 228, 0.5) 1px, transparent 1px);
	background-size: 160px 160px;
	opacity: 0.6;
}

/* Contenido principal del hero */
.hero-content {
	position: relative;
	z-index: 10;
	min-height: calc(100vh - 70px);
	display: flex;
	align-items: center;
	padding: 2rem 0;
}

/* Logo */
.hero-logo-image {
	height: 120px;
	width: auto;
	margin-bottom: 1.5rem;
}

/* Títulos */
.hero-title {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	color: #1f2937;
	margin-bottom: 1rem;
	letter-spacing: -0.5px;
}

.hero-subtitle {
	font-size: 1rem;
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.hero-highlight {
	color: #2563eb;
	font-weight: 700;
}

.hero-description {
	font-size: 1.125rem;
	color: #1f2937;
	font-weight: 500;
	margin-bottom: 2rem;
	line-height: 1.7;
}

/* Botones de acción */
.hero-cta {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 2rem;
}

.hero-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: #2563eb;
	color: #ffffff;
	font-weight: 600;
	padding: 1rem 2rem;
	border-radius: 0.5rem;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	transition: all 0.3s ease;;
	text-decoration: none;
}

.hero-button:hover {
	background: #1d4ed8;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);;
}

.hero-button-secondary {
	background: transparent;
	color: #2563eb;
	border: 2px solid #2563eb;
}

.hero-button-secondary:hover {
	background: #2563eb;
	color: #ffffff;
}

/* Contenedor de video */
.hero-video-wrapper {
	position: relative;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}

.hero-video-border {
	border-radius: 0.5rem;
	border: 2px solid rgba(37, 99, 235, 0.2);
	background: linear-gradient(to bottom right, 
		rgba(37, 99, 235, 0.05), 
		rgba(37, 99, 235, 0.02));
	padding: 0.5rem;
	box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.15);
	overflow: hidden;
}

.hero-video {
	width: 100%;
	height: 730px;
	border-radius: calc(0.5rem - 4px);
	background: #ffffff;
	display: block;
}

.video-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.1));
	pointer-events: none;
	border-radius: calc(0.5rem - 4px);
}

/* ===== SECCIÓN DE ESTADÍSTICAS ===== */
.hero-stats {
	position: relative;
	z-index: 20;
	margin-top: 3rem;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin: 0 auto;
	align-items: stretch; /* Asegura que todas las cards tengan la misma altura */
}

@media (min-width: 768px) {
	.stats-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.25rem;
	}
}

/* Card basada en el ejemplo de Tailwind */
.stat-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 0.75rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);;
	transition: all 0.3s ease;;
	width: 100%;
	min-height: 82px; /* Altura mínima en lugar de fija */
	display: flex;
	flex-direction: column;
	justify-content: space-between; /* Distribuye el contenido */
}

@media (min-width: 768px) {
	.stat-card {
		padding: 1rem 1.25rem;
		min-height: 90px; /* Un poco más alto en desktop */
	}
}

.stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);;
}

.stat-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.25rem;
}

.stat-icon {
	color: #2563eb;
	font-size: 14px; /* Tamaño para iconos Font Awesome */
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (min-width: 768px) {
	.stat-icon {
		font-size: 16px;
		width: 18px;
		height: 18px;
	}
}

.stat-number {
	font-size: 1rem;
	font-weight: 700;
	color: #1f2937;
	line-height: 1;
	margin-bottom: 0 !important;
}

@media (min-width: 768px) {
	.stat-number {
		font-size: 1.125rem;
	}
}

.stat-label {
	font-size: 11px;
	color: #6b7280;
	line-height: 1.3; /* Mejor legibilidad */
	margin: 0;
	word-break: break-word; /* Evita desbordamiento */
}

@media (min-width: 768px) {
	.stat-label {
		font-size: 0.75rem;
		line-height: 1.4;
	}
}

/* Card de certificación - Mejorada */
.cert-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 0.75rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);;
	transition: all 0.3s ease;;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 82px; /* Misma altura mínima que las otras */
	text-align: center;
	gap: 0.5rem; /* Espacio entre elementos */
}

@media (min-width: 768px) {
	.cert-card {
		padding: 1rem 1.25rem;
		min-height: 90px;
		gap: 0.75rem;
	}
}

.cert-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);;
}

.cert-label {
	font-size: 11px;
	color: #6b7280;
	line-height: 1.3;
	margin: 0;
	max-width: 100%;
}

@media (min-width: 768px) {
	.cert-label {
		font-size: 0.75rem;
		line-height: 1.4;
	}
}

.cert-logo {
	height: 24px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}    

/* ===== BARRA LATERAL TERMINAL ===== */
.terminal-sidebar {
	position: absolute;
	right: 20rem;
	top: 0;
	height: 100%;
	width: 220px;
	overflow: hidden;
	z-index: 5;
	pointer-events: none;
}

.terminal-track {
	display: flex;
	flex-direction: column;
	animation: scrollUp 40s linear infinite;
}

.terminal-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-top: 120px;
}

.terminal-line {
	font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
	font-size: 0.8rem;
	white-space: nowrap;
	opacity: 0.7;
}

.terminal-prompt {
	color: #f59e0b;
	margin-right: 0.5rem;
}

.terminal-cyan { color: #06b6d4; }
.terminal-green { color: #10b981; }
.terminal-amber { color: #f59e0b; }
.terminal-blue { color: #2563eb; }

@keyframes scrollUp {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-50%);
	}
}

/* ===== ANIMACIONES ===== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-in-up {
	animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* ===== MEDIA QUERIES ===== */
/* Tablet (md) */
@media (min-width: 768px) {
	.hero-content {
		padding: 4rem 0;
	}

	.hero-logo-image {
		height: 120px;
		margin-bottom: 2rem;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.125rem;
	}

	.hero-cta {
		flex-direction: row;
		justify-content: center;
	}        
}

/* Desktop (lg) */
@media (min-width: 992px) {
	.hero-title {
		font-size: 3rem;
	}

	.hero-cta {
		justify-content: flex-start;
	}

	.hero-video-wrapper {
		margin: 0;
	}		
}

/* Desktop (sm) */
@media (max-width: 1440px) {
	.terminal-sidebar {
		right: 0rem;
	}
}

/* Mobile (sm) */
@media (max-width: 768px) {
	.hero-title {
		font-size: 1.75rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.hero-description {
		font-size: 1rem;
	}

	.hero-video {
		max-height: 300px;
		object-fit: cover;
	}
	
	.hero-logo-image {
		height: 80px;
	}

	.stat-label,
	.cert-label {
		font-size: 10px; /* Un poco más pequeño en móvil */
		line-height: 1.2;
	}
	
	.terminal-sidebar {
		display: none;
	}
}

/* Mobile (xs) */
@media (max-width: 375px) {
	.hero-logo-image {
		height: 50px;
	}
}

/* Ajustes específicos para Bootstrap */
.row.g-4 {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 1.5rem;
}

/* ===== SECCIÓN SEPARADOR ===== */
.section-separator {
	position: relative;
	height: 2rem;
	background: linear-gradient(180deg,hsl(220 20% 98%),#edeff3 40%,#e0e7f5,#edeff3 60%,hsl(220 20% 98%));
}

.section-separator::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0px;
	right: 0px;
	height: 1px;
	background: linear-gradient(90deg,transparent 0%,hsl(220 80% 45% / .2) 20%,hsl(220 80% 45% / .4) 50%,hsl(220 80% 45% / .2) 80%,transparent 100%);
}

/* 
* SECCIÓN DE PROBLEMA
*/

.gradient-line-blue {
	background: linear-gradient(to right, transparent 0%, #3b82f6 20%, #3b82f6 80%, transparent 100%);	
}

/* ===== CONTENEDOR PRINCIPAL ===== */
#problem-section.section-container {
	padding: 5rem 0;
}

/* ===== CABECERA DE LA SECCIÓN ===== */
#problem-section .section-header {
	text-align: center;
	margin-bottom: 3rem;
}

#problem-section .section-subtitle {
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	color: #1754cf;
	text-transform: uppercase;
	font-weight: 600;
}

#problem-section .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #111827;
	margin: 0.5rem 0 1rem;
}

#problem-section .section-description {
	font-size: 1.25rem;
	color: #626d84;
	max-width: 48rem;
	margin: 0 auto;
	line-height: 1.6;
}

/* ===== CONTENEDOR DE NÚMEROS DE PASO (VISIBLE SOLO EN DESKTOP) ===== */
#problem-section .step-numbers-container {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}

#problem-section .step-number-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	width: 100%;
}

#problem-section .step-number-circle {
	width: 3.5rem;
	height: 3.5rem;                
	background-color: #e2e8f0;
	border: 2px solid #e2e8f0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #475569;
	transition: all 0.3s ease;
	position: relative;
	z-index: 4;
	cursor: default;
}

/* ===== CONEXIÓN VISUAL ENTRE NÚMEROS Y CARDS ===== */
/* CARD 1 - Gris */
#problem-section:has(.process-col:nth-child(1):hover)
.step-number-wrapper:nth-child(1) .step-number-circle {
	background-color: #9ca3af;
	border-color: #9ca3af;
	color: #fff;
	transform: scale(1.1);
}

/* CARD 2 - Rojo */
#problem-section:has(.process-col:nth-child(2):hover)
.step-number-wrapper:nth-child(2) .step-number-circle {
	background-color: #ef4444;
	border-color: #ef4444;
	color: #fff;
	transform: scale(1.1);
}

/* CARD 3 - Gris */
#problem-section:has(.process-col:nth-child(3):hover)
.step-number-wrapper:nth-child(3) .step-number-circle {
	background-color: #9ca3af;
	border-color: #9ca3af;
	color: #fff;
	transform: scale(1.1);
}

/* Línea vertical también reacciona para CARD 2 */
#problem-section:has(.process-col:nth-child(2):hover)
.step-number-wrapper:nth-child(2) .vertical-connection-line {
	background-color: #ef4444;
}

/* Líneas verticales entre números */
#problem-section .vertical-connection-line {
	width: .125rem;
	height: 1.5rem;
	position: relative;
	z-index: 2;
	background-color: #e2e8f0;
	border-color: #e2e8f0;
	transition: background-color 0.3s ease;
}

/* ===== CONECTORES (VISIBLE SOLO EN DESKTOP) ===== */
#problem-section .step-row {
	display: flex;
	justify-content: center;
}

#problem-section .step-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	width: 100%;
}

#problem-section .horizontal-connection-line {
	width: 100%;
	height: .25rem;
	background-color: #e2e8f0;
}	

/* ===== CONTENEDOR DE CARDS ===== */
#problem-section .process-row {
	display: flex;
	flex-wrap: wrap;
}

#problem-section .process-col {
	display: flex;
	flex-direction: column;
	position: relative;
}

/* ===== ESTILOS DE LAS CARDS ===== */
#problem-section .process-card-container {
	background: white;
	border-radius: 1rem;
	border: 1px solid #e5e7eb;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	height: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: all 0.3s ease;
	position: relative;
}

#problem-section .process-card-container:hover {
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

/* Bordes superiores de las cards */
#problem-section .card-border-gray1 {
	border-top: 4px solid #9ca3af;
}

#problem-section .card-border-red {
	border-top: 4px solid #ef4444;
}

#problem-section .card-border-gray2 {
	border-top: 4px solid #9ca3af;
}

/* Encabezado de la card */
#problem-section .card-header-section {
	padding: 2rem 2rem 1rem;
	position: relative;
	flex-shrink: 0;
}

/* Icono grande de fondo */
#problem-section .background-large-icon {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 5rem;
	color: #f3f4f6;
	z-index: 0;
	opacity: 0.8;
}

/* Icono principal de la card */
#problem-section .main-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

#problem-section .main-icon-gray {
	background-color: rgba(156, 163, 175, 0.1);
	border: 2px solid rgba(156, 163, 175, 0.3);
}

#problem-section .main-icon-red {
	background-color: rgba(239, 68, 68, 0.1);
	border: 2px solid rgba(239, 68, 68, 0.3);
}

#problem-section .main-card-icon i {
	font-size: 1.5rem;
}

#problem-section .icon-gray-color {
	color: #9ca3af;
}

#problem-section .icon-red-color {
	color: #ef4444;
}

/* Indicador de color pequeño */
#problem-section .small-color-indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin-left: 0.5rem;
}

#problem-section .indicator-color-gray {
	background-color: #9ca3af;
}

#problem-section .indicator-color-red {
	background-color: #ef4444;
}

/* Badge de categoría */
#problem-section .card-category-badge {
	font-family: 'Courier New', monospace;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

#problem-section .badge-color-gray {
	color: #9ca3af;
}

#problem-section .badge-color-red {
	color: #ef4444;
}

/* Título principal de la card */
#problem-section .card-main-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 1rem;
}

/* Contenido de la card */
#problem-section .card-content-section {
	padding: 0 2rem 1.5rem;
	flex-grow: 1;
}

#problem-section .card-content-section p {
	color: #374151;
	font-weight: 500;
	margin-bottom: 1rem;
	line-height: 1.6;
}

/* Listas dentro de las cards */
#problem-section .card-list-items {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
}

#problem-section .card-list-items li {
	color: #6b7280;
	margin-bottom: 0.5rem;
	padding-left: 0;
	line-height: 1.5;
}

/* Texto especial TLBOX */
#problem-section .tlbox-gray-text {
	color: #1754cf;
	font-weight: 600;
}

/* Pie de la card */
#problem-section .card-footer-section {
	background-color: #111827;
	padding: 1rem 2rem;
	font-family: 'Courier New', monospace;
	font-size: 0.85rem;
	color: white;
	line-height: 1.5;
	margin-top: auto;
}

#problem-section .highlighted-footer-text {
	color: #34d399;
	font-weight: 600;
}

/* Texto de toma de decisiones */
#problem-section .problem-title-container {
	margin-top: 2rem;
	margin-bottom: 2rem;
	display: flex;
	justify-content: center;
	text-align: center;
	padding: 0 1rem; /* respiro en móvil */
}

#problem-section .problem-title {
	max-width: 48rem;
	font-size: 2.25rem;   /* 36px */
	line-height: 2.5rem;  /* 40px */
	font-weight: 700;
	color: #111827;
}

#problem-section .problem-title span {
	color: #2563eb;
}

/* Cards de comparación */
#problem-section .card-4 {
	background: #e2e4e94d;
	margin-top: 2rem;
}

#problem-section .card-4 .main-card-icon {
	background: #e2e4e9 !important;
	border: 2px solid #e2e4e9 !important;
	color: #727781 !important;
	font-weight: 600;
}

#problem-section .card-4 .main-card-icon .small-color-indicator {
	background-color: #727781 !important;
}

#problem-section .card-4 .card-list-items li {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

#problem-section .card-4 .card-list-items li i {
	background: #d22d2d1a;
	color: #d22d2d;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	width: 1.75rem;
	height: 1.75rem;
}

#problem-section .card-4 .small-color-indicator {
	margin-right: 0.5rem;
}

#problem-section .card-5 {				
	background: radial-gradient(
			circle at top left,
			rgba(23, 84, 207, 0.12),
			transparent 60%
		),
		radial-gradient(
			circle at bottom right,
			rgba(31, 173, 126, 0.12),
			transparent 60%
		),
		linear-gradient(
			135deg,
			rgba(23, 84, 207, 0.06),
			rgba(31, 173, 126, 0.06)
		);
	margin-top: 2rem;
}

#problem-section .card-5 .main-card-icon {
	background: #1754cf1a !important;
	border: 2px solid #1754cf1a !important;
	color: #1754cf !important;
	font-weight: 600;
}

#problem-section .card-5 .main-card-icon .small-color-indicator {
	background-color: #1754cf !important;
}

#problem-section .card-5 .card-list-items li {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: #111827;
	margin-bottom: 1rem;
}

#problem-section .card-5 .card-list-items li i {
	background: #1fad7e26;
	color: #1fad7e;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	width: 1.75rem;
	height: 1.75rem;
}

#problem-section .card-5 .small-color-indicator {
	margin-right: 0.5rem;
}

/* Texto final */
#problem-section .executive-pill {
	max-width: 52rem;
	margin: 2rem auto 0;
	padding: 1.25rem 2rem;

	text-align: center;

	background:
		linear-gradient(
			135deg,
			rgba(23, 84, 207, 0.08),
			rgba(31, 173, 126, 0.06)
		);

	border-radius: 1rem;

	box-shadow:
		inset 0 0 0 1px rgba(59, 130, 246, 0.25);

	backdrop-filter: blur(2px);
}

#problem-section .executive-pill p {
	margin: 0;
	font-size: 1.125rem;   /* 18px */
	line-height: 1.75rem;
	font-weight: 500;
	color: #111827;
}

#problem-section .executive-pill span {
	color: #2563eb;
	font-weight: 600;
}


/* ====================================================
   MEDIA QUERIES
   ==================================================== */

/* Dispositivos muy pequeños (< 400px) */
@media (max-width: 400px) {
	#problem-section .section-title {
		font-size: 1.5rem;
	}
	
	#problem-section .card-main-title {
		font-size: 1rem;
	}
	
	#problem-section .card-content-section p {
		font-size: 0.875rem;
	}
	
	#problem-section .card-footer-section {
		font-size: 0.65rem;
		padding: 0.75rem 1.25rem;
	}
}

/* Móviles pequeños (< 576px) */
@media (max-width: 576px) {
	#problem-section .card-category-badge {
		font-size: 0.7rem;
	}
	
	#problem-section .card-footer-section {
		padding: 0.875rem 1.5rem;
		font-size: 0.7rem;
	}
	
	#problem-section .background-large-icon {
		font-size: 3rem;
	}
	
	/* Texto toma de decisión */
	#problem-section .problem-title {
		font-size: 1.3rem !important;
		line-height: 1.8rem !important;
	}
}

/* Móviles (576px - 768px) */
@media (max-width: 768px) {
	/* Contenedor principal */
	#problem-section.section-container {
		padding: 3rem 0;
	}
	
	/* OCULTAR NÚMEROS EN MÓVILES */
	#problem-section .step-numbers-container {
		display: none;
	}
	
	/* Cabecera */
	#problem-section .section-header {
		margin-bottom: 2rem;
	}
	
	#problem-section .section-title {
		font-size: 1.75rem;
	}
	
	#problem-section .section-subtitle {
		font-size: 0.7rem;
	}
	
	#problem-section .section-description {
		font-size: 1rem;
	}
			
	#problem-section .process-col {
		margin-bottom: 2rem;
	}
	
	/* Ajustar padding en cards para móviles */
	#problem-section .card-header-section {
		padding: 1.5rem 1.5rem 1rem;
	}
	
	#problem-section .card-content-section {
		padding: 0 1.5rem 1.25rem;
	}
	
	/* Iconos más pequeños */
	#problem-section .background-large-icon {
		font-size: 3.5rem;
		top: 0.5rem;
		right: 0.5rem;
	}
	
	#problem-section .main-card-icon {
		width: 40px;
		height: 40px;
	}
	
	#problem-section .main-card-icon i {
		font-size: 1.25rem;
	}
	
	#problem-section .card-main-title {
		font-size: 1.125rem;
	}
	
	#problem-section .card-content-section p {
		font-size: 0.95rem;
	}
	
	#problem-section .card-list-items li {
		font-size: 0.9rem;
	}
	
	/* OCULTAR CONECTORES EN MÓVILES */
	#problem-section .step-container {
		display: none;
	}
	
	/* Texto toma de decisión */
	#problem-section .problem-title {
		font-size: 1.75rem;   /* 28px */
		line-height: 2.25rem;
	}
	
	/* Card comparativa */
	#problem-section .card-4,
	#problem-section .card-5 {
		margin-top: 0rem;
	}
	
	/* Texto final */
	#problem-section .executive-pill {
		margin-top: 0rem;
		padding: 1rem 1.5rem;
	}

	#problem-section .executive-pill p {
		font-size: 1rem;
		line-height: 1.6rem;
	}
}

/* Tabletas (768px - 992px) */
@media (max-width: 992px) {
	#problem-section .section-title {
		font-size: 2rem;
	}
	
	#problem-section .section-description {
		font-size: 1.125rem;
		padding: 0 1rem;
	}
	
	#problem-section .process-col {
		margin-bottom: 2rem;
	}
	
	/* Iconos de fondo más pequeños */
	#problem-section .background-large-icon {
		font-size: 4rem;
		top: 0.5rem;
		right: 0.5rem;
	}
}

/* Desktop (992px - 1200px) - Ajustes específicos si son necesarios */
@media (min-width: 992px) and (max-width: 1200px) {
	#problem-section .card-header-section,
	#problem-section .card-content-section,
	#problem-section .card-footer-section {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	
	#problem-section .background-large-icon {
		font-size: 4rem;
	}
}

/* Pantallas grandes (> 1200px) */
@media (min-width: 1200px) {
	/* Ajustes específicos para pantallas muy grandes si son necesarios */
}

/* 
* SECCIÓN DE CLARIDAD
*/
#claridad-section.section-container {
	padding: 4rem 0;
	background: #1e293b;
}

#claridad-section .section-header {
	text-align: center;
	margin-bottom: 3rem;
}

#claridad-section .section-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0.5rem 0 1rem;
}

#claridad-section .flip-card {
    perspective: 1000px;
    height: 8rem;
	transition: color 0.3s ease;
}

#claridad-section .flip-card:hover .flip-card-front {
    border: 1px solid #1754cf66;
}

#claridad-section .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    cursor: pointer;
}

#claridad-section .flip-card.is-flipped .flip-card-inner {
    transform: rotateY(180deg);
}

#claridad-section .flip-card-front,
#claridad-section .flip-card-back {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    backface-visibility: hidden;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#claridad-section .flip-card-front {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
    color: #fff;
}

#claridad-section .flip-card-back {
    background: linear-gradient(135deg, #0f172a, #020617);
    transform: rotateY(180deg);
    color: #e5e7eb;
    flex-direction: column;
}

#claridad-section .metric {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
}

#claridad-section .label {
    opacity: 0.85;
	font-size: .75rem;
	line-height: 1rem;
	margin-bottom: 0.2rem;
}

#claridad-section .icon {
    opacity: 0.85;
	font-size: .75rem;
	line-height: 1rem;
	margin-bottom: 0rem;
}

#claridad-section .flip-card:hover .icon {
    color: #0d6efd;
}

#claridad-section .flip-card-back p {
    border-left: 2px solid #f59e0b;
    font-size: .75rem;
    line-height: 1rem;
    text-align: left;
    padding-left: 10px;
}

#claridad-section .flip-card-back small {
    font-size: 9px;
	color: #64748b;
}

#claridad-section .icon-back {
    opacity: 0.85;
	font-size: .75rem;
	line-height: 1rem;
	margin-top: 0.5rem;
	margin-bottom: 0rem;
	color: #64748b;
}

#claridad-section .flip-card:hover .icon-back {
    color: #ffffff;
}

/* Móviles (576px - 768px) */
@media (max-width: 768px) {
	/* Contenedor principal */
	#claridad-section.section-container {
		padding: 3rem 0;
	}
}


/* 
* SECCIÓN DE PROBLEMA
*/

#propuesta-valor-section.section-container {
    padding: 5rem 0;
}

#propuesta-valor-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#propuesta-valor-section .section-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #1754cf;
    text-transform: uppercase;
    font-weight: 600;
}

#propuesta-valor-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0.5rem 0 1rem;
}

#propuesta-valor-section .section-description {
    font-size: 1.25rem;
    color: #626d84;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== CONTENEDOR DE CARDS ===== */
#propuesta-valor-section .process-row {
    display: flex;
    flex-wrap: wrap;
}

#propuesta-valor-section .process-col {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ===== ESTILOS DE LAS CARDS ===== */
#propuesta-valor-section .process-card-container {
    background: white;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

#propuesta-valor-section .process-card-container:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Encabezado de la card */
#propuesta-valor-section .card-header-section {
    padding: 2rem 2rem 1rem;
    position: relative;
    flex-shrink: 0;
}

/* Icono principal de la card */
#propuesta-valor-section .main-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    background-color: rgba(156, 163, 175, 0.1);
    border: 2px solid rgba(156, 163, 175, 0.3);
	font-family: IBM Plex Mono,monospace;
	font-size: 1.25rem;
	font-weight: 700;
}

/* Badge de categoría */
#propuesta-valor-section .card-category-badge {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

#propuesta-valor-section .badge-color-gray {
    color: #9ca3af;
}

#propuesta-valor-section .badge-color-red {
    color: #ef4444;
}

/* Título principal de la card */
#propuesta-valor-section .card-main-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

/* Contenido de la card */
#propuesta-valor-section .card-content-section {
    padding: 0 2rem 1.5rem;
    flex-grow: 1;
}

#propuesta-valor-section .card-content-section p {
    border-left: 4px solid #f59e0b;
    font-size: 1rem;
    line-height: 1.625;
    text-align: left;
    padding-left: 15px;
}

#propuesta-valor-section .btn-cta-container {
	text-align: center;
	margin-top: 2.5rem;
}

#propuesta-valor-section .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
	font-weight: 700;
}

#propuesta-valor-section .btn-cta .cta-icon {
    transition: transform 0.3s ease;
}

#propuesta-valor-section .btn-cta:hover .cta-icon {
    transform: translateX(6px);
}

#propuesta-valor-section .subsection-header {
    text-align: center;
    margin-top: 3.5rem;
}

#propuesta-valor-section .subsection-title {
	font-size: 1.875rem;
	font-weight: 700;
    line-height: 2.25rem;
    color: #111827;
    margin: 0.5rem 0 0.25rem;
}

#propuesta-valor-section .subsection-description {
   	font-size: 1.125rem;
    line-height: 1.75rem;
    color: #626d84;
    max-width: 48rem;
    margin: 0 auto;
}

#propuesta-valor-section #logos-section {
    padding: 1.5rem 0;
}

#propuesta-valor-section .logos-slider {
    overflow: hidden;
    width: 100%;
}

#propuesta-valor-section .logos-track {
    display: flex;
    width: max-content;
    animation: scroll-logos 30s linear infinite;
}

#propuesta-valor-section .logo-item {
    min-width: 180px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 1rem;
    padding: 1rem;

    background: #fff;
    border-radius: 0.75rem;
	border: 1px solid #eee;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

#propuesta-valor-section .logo-item img {
    max-height: 40px;
    max-width: 100%;
    opacity: 0.85;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

#propuesta-valor-section .logo-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
}



/* ====================================================
MEDIA QUERIES
==================================================== */

/* Dispositivos muy pequeños (< 400px) */
@media (max-width: 400px) {
    #propuesta-valor-section .section-title {
        font-size: 1.5rem;
    }

    #propuesta-valor-section .card-main-title {
        font-size: 1rem;
    }

    #propuesta-valor-section .card-content-section p {
        font-size: 0.875rem;
    }
	
	#propuesta-valor-section .subsection-title {
        font-size: 1rem;
    }
}

/* Móviles pequeños (< 576px) */
@media (max-width: 576px) {
    #propuesta-valor-section .card-category-badge {
        font-size: 0.7rem;
    }
}

/* Móviles (576px - 768px) */
@media (max-width: 768px) {

    /* Contenedor principal */
    #propuesta-valor-section.section-container {
        padding: 3rem 0;
    }

    /* Cabecera */
    #propuesta-valor-section .section-header {
        margin-bottom: 2rem;
    }

    #propuesta-valor-section .section-title {
        font-size: 1.75rem;
    }

    #propuesta-valor-section .section-subtitle {
        font-size: 0.7rem;
    }

    #propuesta-valor-section .section-description {
        font-size: 1rem;
    }

    #propuesta-valor-section .process-col {
        margin-bottom: 2rem;
    }

    /* Ajustar padding en cards para móviles */
    #propuesta-valor-section .card-header-section {
        padding: 1.5rem 1.5rem 1rem;
    }

    #propuesta-valor-section .card-content-section {
        padding: 0 1.5rem 1.25rem;
    }

    /* Iconos más pequeños */
    #propuesta-valor-section .main-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    #propuesta-valor-section .card-main-title {
        font-size: 1.125rem;
    }

    #propuesta-valor-section .card-content-section p {
        font-size: 0.95rem;
    }
	
	#propuesta-valor-section .btn-cta-container {
		margin-top: 1.5rem;
	}
	
	#propuesta-valor-section .btn-cta {
		font-size: 1rem;
	}
	
	#propuesta-valor-section .logo-item {
        min-width: 140px;
        height: 70px;
    }
	
	#propuesta-valor-section .subsection-header {
        margin-bottom: 2rem;
    }

    #propuesta-valor-section .subsection-title {
        font-size: 1.5rem;
    }

    #propuesta-valor-section .subsection-description {
        font-size: 1rem;
    }

    #propuesta-valor-section .logo-item img {
        max-height: 32px;
    }
}

/* Tabletas (768px - 992px) */
@media (max-width: 992px) {
    #propuesta-valor-section .section-title {
        font-size: 2rem;
    }

    #propuesta-valor-section .section-description {
        font-size: 1.125rem;
        padding: 0 1rem;
    }

    #propuesta-valor-section .process-col {
        margin-bottom: 2rem;
    }
}

/* Desktop (992px - 1200px) - Ajustes específicos si son necesarios */
@media (min-width: 992px) and (max-width: 1200px) {

    #propuesta-valor-section .card-header-section,
    #propuesta-valor-section .card-content-section,
    #propuesta-valor-section .card-footer-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* 
* LINEAS ANIMADAS
*/

#lineas-animadas-section.section-container {
    padding: 5rem 0;
}

/* Móviles (576px - 768px) */
@media (max-width: 768px) {

    /* Contenedor principal */
    #lineas-animadas-section.section-container {
        padding: 3rem 0;
    }
	   
}

/* 
* CONSTRUYAMOS
*/

#construyamos-section.section-container {
    padding: 2rem 0;
}

/* ======= Formulario =======*/
#formulario-contruyamos .snapshot-card {
	background: #f9fbff;
	border-radius: 16px;
	position: relative;
	overflow: hidden;
	z-index: 1; 
}


#formulario-contruyamos .snapshot-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 16px;
	padding: 2px;
	background: linear-gradient(90deg, #3b82f6, #93c5fd, #3b82f6);
	
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	
	animation: pulseBorder 3s infinite linear;
	
	z-index: -1;          
	pointer-events: none; 
}


#formulario-contruyamos .section-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
	color: #1754cf;
	text-transform: uppercase;
    font-weight: 600;
}

#formulario-contruyamos .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0 1rem;
}

#formulario-contruyamos .section-description p:nth-of-type(1) {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.75rem;
}

#formulario-contruyamos .section-description p:nth-of-type(n+2) {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #626d84;
}

#formulario-contruyamos .section-description p:last-child {
    font-size: 0.75rem;
    font-style: italic;
}

#formulario-diagnostico-construyamos .diagnostic-card {
	background: white;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	padding: 1.5rem;
	transition: all 0.3s ease;
}

@media (max-width: 768px) {
	#formulario-diagnostico-construyamos .diagnostic-card {
		padding: 1.5rem;
		border-radius: 12px;
	}
}

@media (max-width: 480px) {
	#formulario-diagnostico-construyamos .diagnostic-card {
		padding: 1rem;
	}
}

#formulario-diagnostico-construyamos .header-section {
	text-align: center;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #e2e8f0;
}

#formulario-diagnostico-construyamos .logo {
	color: #2563eb;
	font-weight: 700;
	font-size: 1.75rem;
	margin-bottom: 0.5rem;
	letter-spacing: -0.025em;
}

#formulario-diagnostico-construyamos .subtitle {
	color: #64748b;
	font-size: 1rem;
	margin-bottom: 1rem;
}

#formulario-diagnostico-construyamos .progress-section {
	margin-bottom: 2rem;
}

#formulario-diagnostico-construyamos .progress-text {
	font-size: 0.675rem;
	color: #64748b;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

#formulario-diagnostico-construyamos .progress-bar {
	height: 6px;
	border-radius: 3px;
	background-color: #e2e8f0;
	overflow: hidden;
}

#formulario-diagnostico-construyamos .progress-fill {
	height: 100%;
	background-color: #2563eb;
	border-radius: 3px;
	transition: width 0.4s ease;
}

#formulario-diagnostico-construyamos .question-section {
	margin-bottom: 2rem;
}

#formulario-diagnostico-construyamos .question-title {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #1e293b;
}

@media (max-width: 480px) {
	#formulario-diagnostico-construyamos .question-title {
		font-size: 1.125rem;
	}
}

#formulario-diagnostico-construyamos .options-container {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

#formulario-diagnostico-construyamos #step-0 .option-card {
	padding-left: 3.5rem;
}

#formulario-diagnostico-construyamos .option-card {
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 1rem 1rem;
	cursor: pointer;
	transition: all 0.2s ease;
	background-color: white;
	position: relative;
}

#formulario-diagnostico-construyamos .option-card:hover {
	border-color: #2563eb;
	background-color: #f8fafc;
}

#formulario-diagnostico-construyamos .option-card.selected {
	border-color: #2563eb;
	background-color: #eff6ff;
	box-shadow: 0 0 0 1px #2563eb;
}

#formulario-diagnostico-construyamos .option-icon {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	font-size: 0.875rem;
}

#formulario-diagnostico-construyamos .option-text {
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: #1e293b;
}

#formulario-diagnostico-construyamos .option-description {
	font-size: 0.75rem;
	line-height: 1rem;
	color: #64748b;
	margin-top: 0.25rem;
}

#formulario-diagnostico-construyamos .buttons-section {
	display: flex;
	justify-content: space-between;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e2e8f0;
	gap: 1rem;
}

@media (max-width: 480px) {
	#formulario-diagnostico-construyamos .buttons-section {
		flex-direction: column;
	}
}

#formulario-diagnostico-construyamos .btn-custom {
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-weight: 500;
	font-size: .75rem;
	line-height: 1rem;
	transition: all 0.2s ease;
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	position: relative;
	padding-right: 2rem;
}

@media (max-width: 480px) {
	#formulario-diagnostico-construyamos .btn-custom {
		width: 100%;
	}
}

#formulario-diagnostico-construyamos .btn-previous {
	background-color: #f8fafc;
	border: 1px solid #e2e8f0;
	color: #64748b;
	padding-left: 2rem;
	padding-right: 1rem;
}

#formulario-diagnostico-construyamos .btn-previous:hover {
	background-color: #f1f5f9;
	color: #475569;
}

#formulario-diagnostico-construyamos .btn-next {
	background-color: #2563eb;
	color: white;
	font-weight: 600;
}

#formulario-diagnostico-construyamos .btn-next:hover {
	background-color: #1d4ed8;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

#formulario-diagnostico-construyamos .btn-next:disabled {
	background-color: #cbd5e1;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
	opacity: 0.6;
}

#formulario-diagnostico-construyamos .btn-insight {
	background-color: #059669;
	color: white;
	font-weight: 600;
}

#formulario-diagnostico-construyamos .btn-insight:hover {
	background-color: #047857;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

#formulario-diagnostico-construyamos .btn-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: .875rem;
	line-height: 1.25rem;
	padding: 1rem 2rem;
	letter-spacing: .05em;
	font-weight: 600;
	border-radius: .75rem;
}

#formulario-diagnostico-construyamos .btn-cta .cta-icon {
	transition: transform 0.3s ease;
}

#formulario-diagnostico-construyamos .btn-cta:hover .cta-icon {
	transform: translateX(6px);
}

#formulario-diagnostico-construyamos .result-section {
	text-align: center;
	padding: 1rem 0;
}

#formulario-diagnostico-construyamos .checkmark-container {
	width: 64px;
	height: 64px;
	background-color: rgba(5, 150, 105, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

#formulario-diagnostico-construyamos .checkmark {
	color: #059669;
	font-size: 2rem;
}

#formulario-diagnostico-construyamos .result-title {
		font-weight: 700;
		color: #1fad7e;
		margin-bottom: 1.5rem;
		font-size: .75rem;
		line-height: 1rem;
		padding: .375rem .75rem;
		background: #1fad7e1a;
		display: inline-block;
		border-radius: 20px;
}

/* Cards simplificadas sin badges */
#formulario-diagnostico-construyamos .insight-card {
	background-color: #f8fafc;
	border-radius: 12px;
	padding: 1rem 1.5rem;
	margin-bottom: 1rem;
	border-left: 4px solid #2563eb;
	text-align: left;
}

#formulario-diagnostico-construyamos .insight-title {
	font-weight: 600;
	font-size: 0.6rem;
	color: #1754cf;
	margin-bottom: 0.5rem;
	letter-spacing: .05em;
	text-transform: uppercase;
}

#formulario-diagnostico-construyamos .insight-text {
	font-size: .75rem;
	color: #475569;
	line-height: 1.625;
}

#formulario-diagnostico-construyamos .form-section {
	text-align: left;
}

#formulario-diagnostico-construyamos .form-title {
	color: #1e293b;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5rem;
	margin-bottom: 1.25rem;
}

#formulario-diagnostico-construyamos .form-group {
	margin-bottom: 0.7rem;
}

#formulario-diagnostico-construyamos .form-label {
	font-weight: 500;
	color: #475569;
	margin-bottom: 0.5rem;
	display: block;
	font-size: 0.875rem;
}

#formulario-diagnostico-construyamos .form-control {
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: 8px;
	border: 1px solid #cbd5e1;
	font-size: .875rem;
	transition: all 0.2s ease;
	background-color: #f9fafb;
}

#formulario-diagnostico-construyamos .form-control:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#formulario-diagnostico-construyamos .btn-solicitud {
	font-size: .875rem;
	line-height: 1.25rem;
	padding: 1rem 2rem;
	letter-spacing: .05em;
	font-weight: 600;
	border-radius: .75rem;
	width: 100%;
}

#formulario-diagnostico-construyamos .btn-solicitud .solicitud-icon {
	transition: transform 0.3s ease;
	margin-right: 3px;
}

#formulario-diagnostico-construyamos .btn-solicitud:hover .solicitud-icon {
	transform: translateY(-6px);
}						

#formulario-diagnostico-construyamos .form-note {
	font-size: 0.675rem;
	color: #64748b;
	font-style: italic;
	text-align: center;
	margin-top: 0.5rem;
	line-height: 1.4;
}

#formulario-diagnostico-construyamos .hidden {
	display: none !important;
}

#formulario-diagnostico-construyamos .fade-in {
	animation: fadeIn 0.3s ease forwards;
}

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

/* Flechas en botones */
#formulario-diagnostico-construyamos .btn-previous::before {
	content: '←';
	position: absolute;
	left: 0.75rem;
}

#formulario-diagnostico-construyamos .btn-next::after {
	content: '→';
	position: absolute;
	right: 0.75rem;
}

#formulario-diagnostico-construyamos .btn-insight::after {
	content: '→';
	position: absolute;
	right: 0.75rem;
}

/* Eliminados estilos de badges y puntuaciones */
#formulario-diagnostico-construyamos .score-badge,
#formulario-diagnostico-construyamos .pillar-score,
#formulario-diagnostico-construyamos .recommendation-list,
#formulario-diagnostico-construyamos .telemetry-badge {
	display: none !important;
}

/* Mejoras de accesibilidad */
#formulario-diagnostico-construyamos .btn-custom:focus,
#formulario-diagnostico-construyamos .option-card:focus {
	outline: 2px solid #2563eb;
	outline-offset: 2px;
}

#formulario-diagnostico-construyamos .form-control:focus {
	outline: 2px solid #2563eb;
	outline-offset: 0;
}

/* Estilos para animación de envío */
#formulario-diagnostico-construyamos .btn-solicitud {
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

#formulario-diagnostico-construyamos .btn-solicitud.sending {
	background-color: #2563eb;
	pointer-events: none;
	opacity: 0.9;
}

#formulario-diagnostico-construyamos .btn-solicitud.sending .button-content {
	opacity: 0.7;
}

#formulario-diagnostico-construyamos .btn-solicitud.sending .fa-paper-plane {
	animation: flyPlane 0.8s ease forwards;
}

@keyframes flyPlane {
	0% {
		transform: translateX(0) translateY(0);
		opacity: 1;
	}
	50% {
		transform: translateX(100px) translateY(-20px);
		opacity: 0.5;
	}
	100% {
		transform: translateX(200px) translateY(-40px);
		opacity: 0;
	}
}

/* Animación del ícono en mensaje de éxito */
#formulario-diagnostico-construyamos #success-animation {
	position: relative;
	animation: pulseCheck 1.5s ease;
}

@keyframes pulseCheck {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}
	50% {
		transform: scale(1.2);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

#formulario-diagnostico-construyamos #success-animation .fa-paper-plane {
	animation: planeArrival 1s ease forwards;
}

@keyframes planeArrival {
	0% {
		transform: translateX(-50px) translateY(20px) rotate(-20deg);
		opacity: 0;
	}
	100% {
		transform: translateX(0) translateY(0) rotate(0);
		opacity: 1;
	}
}

/* ======= Linea =======*/
#linea-contruyamos .vertical-connector {
    position: relative;
    width: 2px;
    height: 100%;
    background-color: #e2e8f0;
}
#linea-contruyamos .vertical-connector .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;

    color: #2563eb;
    background: #fff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

#linea-contruyamos .vertical-connector::before,
#linea-contruyamos .vertical-connector::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1rem;
    background: #fff;
    z-index: 1;
}

#linea-contruyamos .vertical-connector::before {
    top: 0;
}

#linea-contruyamos .vertical-connector::after {
    bottom: 0;
}

.gradient-line-blue-vertical {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        #3b82f6 45%,
        #3b82f6 65%,
        transparent 100%
    );
}

/* ======= Info =======*/
#info-construyamos .section-title {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
}

#info-construyamos .text-gradient {
	background: linear-gradient(135deg, hsl(220 80% 45%) 0%, hsl(220 70% 35%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#info-construyamos .section-description {
	font-size: .875rem;
	line-height: 1.25rem;
	color: #626d84;
}

/* Pestañas superiores */
#info-construyamos .tabs-container {
	display: flex;
	overflow-x: auto;
	gap: 10px;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE/Edge */
}

#info-construyamos .tabs-container::-webkit-scrollbar {
	display: none; /* Chrome/Safari/Opera */
}

#info-construyamos .tab-btn {
	flex-shrink: 0;
	padding: 0.2rem 0.5rem;
	border-radius: 10px;
	border: 2px solid #dee2e6;
	background-color: #fff;
	text-align: left;
	transition: all 0.3s;
	min-width: 100px;
}

#info-construyamos .tab-btn.active {
	background-color: #000;
	color: white;
	border-color: #000;
	box-shadow: 0 4px 6px rgba(13, 110, 253, 0.2);
}

#info-construyamos .medium.active {
	background-color: #2563eb;
	color: white;
	border-color: #2563eb;
}

#info-construyamos .large.active {
	background-color: #059669;
	color: white;
	border-color: #059669;
}

#info-construyamos .risk.active {
	background-color: #e11d48;
	color: white;
	border-color: #e11d48;
}

#info-construyamos .data.active {
	background-color: #0891b2;
	color: white;
	border-color: #0891b2;
}

#info-construyamos .tab-btn.medium:hover:not(.active) {
	border-color: #2563eb;
	background-color: #e7f1ff;
}

#info-construyamos .tab-btn.large:hover:not(.active) {
	border-color: #059669;
	background-color: #20c9970d;
}

#info-construyamos .tab-btn.risk:hover:not(.active) {
	border-color: #e11d48;
	background-color: #fd7e960d;
}

#info-construyamos .tab-btn.data:hover:not(.active) {
	border-color: #0891b2;
	background-color: #0dcaf00d;
}

#info-construyamos .tab-title {
	font-size: .75rem;
    line-height: 1rem;
	font-weight: 600;
	white-space: nowrap;
	margin-bottom: 2px;
}

#info-construyamos .tab-subtitle {
	font-size: 0.6rem;
	color: rgba(255, 255, 255, 0.8);
}

#info-construyamos .tab-btn:not(.active) .tab-subtitle {
	color: #6c757d;
}

/* Sección REALIDAD OPERATIVA */
#info-construyamos .reality-section {
	background-color: #fff;
	border: 2px solid #ccc;
	border-radius: 12px;
	padding: 24px;
	margin-top: 20px;
	animation: fadeIn 0.5s ease-out;
}

#info-construyamos #medium-tab .reality-section {
	background-color: #e7f1ff !important;
	border: 2px solid #2563eb !important;
}

#info-construyamos #large-tab .reality-section {
	background-color: #20c9970d !important;
	border: 2px solid #059669 !important;
}

#info-construyamos #risk-tab .reality-section {
	background-color: #fd7e960d !important;
	border: 2px solid #e11d48 !important;
}

#info-construyamos #data-tab .reality-section {
	background-color: #0dcaf00d !important;
	border: 2px solid #0891b2 !important;
}

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

#info-construyamos .reality-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #0d6efd;
	font-weight: 600;
	margin-bottom: 10px;
	display: block;
}

#info-construyamos .reality-text {
	font-size: 0.875rem;
	line-height: 1.6;
	margin-bottom: 20px;
}

#info-construyamos .practice-label {
	font-size: 0.875rem;
	color: #6c757d;
	font-weight: 500;
	margin-bottom: 0.4rem;
	display: block;
}

/* Acordeón */
#info-construyamos .accordion-item {
	border: 1px solid #dee2e6;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 10px;
	transition: all 0.3s;
	background-color: rgba(248, 249, 250, 0.4);
	border-color: #dee2e6;
}

#info-construyamos .accordion-header {
	padding: 0;
}

#info-construyamos .accordion-button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 16px;
	background: none;
	border: none;
	text-align: left;
	font-weight: 500;
	font-size: 0.875rem;
	color: #1b2232;
	transition: all 0.2s;
}

#info-construyamos .accordion-button:focus {
	outline: none;
	box-shadow: none;
}

#info-construyamos .accordion-button .icon {
	transition: transform 0.3s;
	font-size: 0.9rem;
}

#info-construyamos .accordion-button[aria-expanded="true"] .icon {
	transform: rotate(180deg);
}

#info-construyamos .accordion-collapse {
	transition: height 0.3s ease;
}

#info-construyamos .accordion-body {
	padding: 0 16px 16px;
}

#info-construyamos .friction-title {
	font-size: 0.8rem;
	font-weight: 500;
	color: #6c757d;
	margin-bottom: 12px;
}

#info-construyamos .friction-list {
	padding-left: 0;
	list-style: none;
	margin-bottom: 16px;
}

#info-construyamos .friction-list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 0.8rem;
	line-height: 1.5;
}

#info-construyamos .friction-list li::before {
	content: "";
	flex-shrink: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: rgba(108, 117, 125, 0.5);
	margin-top: 6px;
}

#info-construyamos .quote {
	padding-top: 12px;
	border-top: 1px solid rgba(222, 226, 230, 0.5);
	font-size: 0.8rem;
	font-weight: 600;
	font-style: italic;
	color: #0d6efd;
}

@media (max-width: 992px) {

    #construyamos-section.section-container {
        padding: 4rem 0;
    }

    #formulario-contruyamos .section-title {
        font-size: 2.1rem;
    }

    #formulario-contruyamos .section-description p:nth-of-type(1) {
        font-size: 1.1rem;
        line-height: 1.6rem;
    }

    #formulario-contruyamos .section-description p:nth-of-type(n+2) {
        font-size: 0.95rem;
    }

    #formulario-contruyamos .snapshot-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {

    #construyamos-section.section-container {
        padding: 1rem 0;
    }

    #formulario-contruyamos .section-subtitle {
        font-size: 0.7rem;
    }

    #formulario-contruyamos .section-title {
        font-size: 1.75rem;
        line-height: 2.2rem;
    }

    #formulario-contruyamos .section-description p:nth-of-type(1) {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    #formulario-contruyamos .section-description p:nth-of-type(n+2) {
        font-size: 0.875rem;
        line-height: 1.4rem;
    }

    #formulario-contruyamos .section-description p {
        margin-bottom: 0.5rem;
    }

    #formulario-contruyamos .snapshot-card {
        padding: 1.25rem;
        border-radius: 14px;
    }
	
	#linea-contruyamos .vertical-connector {
        display: none;
    }
}

@media (max-width: 576px) {
	
	#formulario-contruyamos {
        margin-bottom: 2rem;
    }
	
    #formulario-contruyamos .section-title {
        font-size: 1.5rem;
    }

    #formulario-contruyamos .section-description p:nth-of-type(n+2) {
        font-size: 0.8rem;
    }

    #formulario-contruyamos .snapshot-card {
        padding: 1rem;
        border-radius: 12px;
    }
}


/* 
* LINEAS ANIMADAS 2
*/

#lineas-animadas-section-2.section-container {
    padding: 5rem 0;
}

/* Móviles (576px - 768px) */
@media (max-width: 768px) {

    /* Contenedor principal */
    #lineas-animadas-section-2.section-container {
        padding: 3rem 0;
    }
	   
}


/* 
* SECCIÓN TLBOX REALIDAD
*/

#tlbox-realidad-section.section-container {
    padding: 5rem 0;
	background: #f6f7f9;
}

#tlbox-realidad-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#tlbox-realidad-section .section-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #1754cf;
    text-transform: uppercase;
    font-weight: 600;
}

#tlbox-realidad-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0.5rem 0 1rem;
}

#tlbox-realidad-section .section-description {
    font-size: 1.25rem;
	font-weight: 600;
    color: #626d84;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

#tlbox-realidad-section .text-gradient {
    background: linear-gradient(135deg, hsl(220 80% 45%) 0%, hsl(220 70% 35%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
	font-weight: 600;
}

#tlbox-realidad-section .slider-card {
	width: 100%;
	min-height: 350px;
	border-radius: 18px;
	border-color: #dcdfe5;
	background: #152334;
	box-shadow: 0 15px 35px rgba(0,0,0,0.08);
	display: flex;
	padding: 2rem;
}

#tlbox-realidad-section .slider-card .card-body {
	color: #FFF;
}

#tlbox-realidad-section .slider-card .card-badge {
	display: inline-block;
	letter-spacing: .15em;
	font-size: .75rem;
    line-height: 1rem;
	padding: .375rem .75rem;
	color: #cbd5e1;
	text-transform: uppercase;
	font-family: IBM Plex Mono,monospace;
	background-color: #33415599;
	border: 1px solid #47556980;
	border-radius: 10px;
	margin-bottom: 1.5rem;
}

#tlbox-realidad-section .slider-card .card-title {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2rem;
	margin-bottom: 1.5rem;
}

#tlbox-realidad-section .slider-card .subcard {
	padding: 1rem;
	background-color: #33415533;
	border: 1px dashed #47556980;
	border-radius: 10px;
}

#tlbox-realidad-section .slider-card .subcard .subcard-title {
	letter-spacing: .2em;	
	text-transform: uppercase;
	font-weight: 500;
	font-size: 0.7rem;
	font-family: IBM Plex Mono,monospace;
}

#tlbox-realidad-section .slider-card .subcard .subcard-text,
#tlbox-realidad-section .slider-card .subcard .subcard-list {
	color: #cbd5e1;	
	font-size: .885rem;
	line-height: 1.625;
	margin-bottom: 0px;
}

/* Mejorar indicadores */
#tlbox-realidad-section .carousel-indicators [data-bs-target] {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #0d6efd;
	opacity: .4;
}

#tlbox-realidad-section .carousel-indicators {
	position: relative !important;
	margin-top: 1.5rem;
}

#tlbox-realidad-section .carousel-indicators .active {
	opacity: 1;
}


/* Dispositivos muy pequeños (< 400px) */
@media (max-width: 400px) {
    #tlbox-realidad-section .section-title {
        font-size: 1.5rem;
    }    
	
	#tlbox-realidad-section .slider-card {
        padding: 1.25rem;
    }

    #tlbox-realidad-section .section-title {
        font-size: 1.4rem;
    }

    #tlbox-realidad-section .section-description {
        font-size: 0.95rem;
    }

    /* Subcards en columna total */
    #tlbox-realidad-section .slider-card .row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Móviles (576px - 768px) */
@media (max-width: 768px) {

    /* Contenedor principal */
    #tlbox-realidad-section.section-container {
        padding: 3rem 0;
    }

    /* Cabecera */
    #tlbox-realidad-section .section-header {
        margin-bottom: 2rem;
    }

    #tlbox-realidad-section .section-title {
        font-size: 1.75rem;
    }

    #tlbox-realidad-section .section-subtitle {
        font-size: 0.7rem;
    }

    #tlbox-realidad-section .section-description {
        font-size: 1rem;
    }  
	
	/* Slider card */
    #tlbox-realidad-section .slider-card {
        padding: 1.5rem;
        min-height: auto;
        border-radius: 14px;
    }

    #tlbox-realidad-section .slider-card .card-title {
        font-size: 1.25rem;
        line-height: 1.6rem;
        margin-bottom: 1.25rem;
    }

    #tlbox-realidad-section .slider-card .card-badge {
        font-size: 0.65rem;
        padding: .25rem .6rem;
        margin-bottom: 1rem;
    }

    /* Subcards */
    #tlbox-realidad-section .slider-card .subcard {
        padding: 0.85rem;
        margin-bottom: 1rem;
    }

    #tlbox-realidad-section .slider-card .subcard .subcard-title {
        font-size: 0.65rem;
        letter-spacing: .15em;
    }

    #tlbox-realidad-section .slider-card .subcard .subcard-text,
    #tlbox-realidad-section .slider-card .subcard .subcard-list {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    /* Lista */
    #tlbox-realidad-section .slider-card .subcard .subcard-list li {
        margin-bottom: 4px;
    }  
}

/* Tabletas (768px - 992px) */
@media (max-width: 992px) {
    #tlbox-realidad-section .section-title {
        font-size: 2rem;
    }

    #tlbox-realidad-section .section-description {
        font-size: 1.125rem;
        padding: 0 1rem;
    }
}


/* 
* SECCIÓN SALUD FLOTA
*/
/* ===== SECCIÓN SALUD FLOTA – TODO BAJO #salud-flota-section ===== */
#salud-flota-section.section-container {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0b111e 0%, #080c16 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* HEADER ESTILOS ORIGINALES */
#salud-flota-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 15;
}

#salud-flota-section .section-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #1754cf;
    text-transform: uppercase;
    font-weight: 600;
}

#salud-flota-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0.5rem 0 1rem;
    line-height: 1.2;
}

#salud-flota-section .section-description {
    font-size: 1.25rem;
    font-weight: 600;
    color: #8596ad;
    max-width: 52rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* shooting stars */
#salud-flota-section .shooting-stars-bs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

#salud-flota-section .shooting-star-bs {
    position: absolute;
    width: 120px;
    height: 1.5px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(23, 84, 207, 0.2), transparent);
    border-radius: 999px;
    filter: drop-shadow(0 0 6px rgba(23, 84, 207, 0.5));
    animation: shoot-salud 2.5s infinite ease-in;
    opacity: 0;
    transform: rotate(-25deg);
}

@keyframes shoot-salud {
    0% {
        transform: translateX(0) translateY(0) rotate(-25deg);
        opacity: 1;
    }

    70% {
        opacity: 0.9;
    }

    100% {
        transform: translateX(300px) translateY(150px) rotate(-25deg);
        opacity: 0;
    }
}

/* grid perspective */
#salud-flota-section .grid-perspective-bs {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    perspective: 800px;
    perspective-origin: 50% 0%;
    pointer-events: none;
    z-index: 0;
}

#salud-flota-section .grid-flow-bs {
    position: absolute;
    inset: 0;
    transform: rotateX(60deg) translateZ(0);
    transform-origin: center top;
    background-image: linear-gradient(to right, rgba(23, 84, 207, 0.15) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(23, 84, 207, 0.1) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridMove-salud 20s linear infinite;
}

@keyframes gridMove-salud {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 160px;
    }
}

#salud-flota-section .gradient-overlay-bs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to bottom, #0b111e 0%, transparent 100%);
    z-index: 2;
}

#salud-flota-section .radial-glow-bs {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(23, 84, 207, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

#salud-flota-section .bottom-fade-bs {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0b111e 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* terminal scrolling */
#salud-flota-section .terminal-left,
#salud-flota-section .terminal-right {
    position: absolute;
    top: 4rem;
    z-index: 10;
    opacity: 0.45;
    overflow: hidden;
    height: 14rem;
    max-width: 280px;
}

#salud-flota-section .terminal-left {
    left: 1.5rem;
}

#salud-flota-section .terminal-right {
    right: 1.5rem;
    text-align: right;
}

#salud-flota-section .terminal-scroll {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

#salud-flota-section .terminal-line {
    font-family: 'SF Mono', 'Courier New', monospace;
    font-size: 0.75rem;
    white-space: nowrap;
}


#salud-flota-section .scroll-content {
    animation: scrollUp-salud 25s linear infinite;
}

@keyframes scrollUp-salud {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

#salud-flota-section .gradient-mask-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2.5rem;
    background: linear-gradient(to bottom, #0b111e, transparent);
    pointer-events: none;
    z-index: 3;
}

#salud-flota-section .gradient-mask-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.5rem;
    background: linear-gradient(to top, #0b111e, transparent);
    pointer-events: none;
    z-index: 3;
}

@media (max-width: 1199px) {

    #salud-flota-section .terminal-left,
    #salud-flota-section .terminal-right {
        display: none;
    }
}

/* botones tipo pilar (desktop) */
#salud-flota-section .pillar-btn-bs {
    width: 100%;
    border: 1px solid #2d3a5e;
    background: rgba(18, 26, 40, 0.65);
    backdrop-filter: blur(4px);
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    margin-bottom: 0.75rem;
    color: #e2e8f0;
    text-align: left;
	cursor: pointer;
}

#salud-flota-section .pillar-btn-bs.active {
    background: rgba(23, 84, 207, 0.18);
    border-color: #1754cf;
    box-shadow: 0 0 16px rgba(23, 84, 207, 0.25);
}

#salud-flota-section .pillar-btn-bs:hover {
    background: rgba(23, 84, 207, 0.12);
    border-color: #1754cf;
}

#salud-flota-section .pillar-btn-bs .icon-bg {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    background: rgba(23, 84, 207, 0.2);
}

#salud-flota-section .pillar-btn-bs .icon-bg-dim {
    background: #1e2a44;
}

#salud-flota-section .btn-primary-bs {
    background: #1754cf;
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.6rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
}

#salud-flota-section .btn-primary-bs:hover {
    background: #0f3e9c;
    color: white;
}

#salud-flota-section .btn-outline-primary-bs {
    background: transparent;
    border: 2px solid #1754cf;
    color: #1754cf;
    padding: 0.75rem 2rem;
    border-radius: 0.6rem;
    font-weight: 600;
    transition: all 0.2s;
}

#salud-flota-section .btn-outline-primary-bs:hover {
    background: #1754cf;
    color: white;
}

/* panel de detalle */
#salud-flota-section .panel-card-bs {
    background: rgba(12, 20, 35, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(23, 84, 207, 0.25);
    border-radius: 1.5rem;
    padding: 2rem;
    color: #fff;
}

/* tarjetas para móvil */
#salud-flota-section .mobile-stat-card {
    background: rgba(18, 26, 40, 0.8);
    border: 1px solid #2d3a5e;
    border-radius: 1rem;
    padding: 1.25rem 0.75rem;
    height: 100%;
    backdrop-filter: blur(4px);
}

#salud-flota-section .text-dark-muted {
    color: #94a3b8 !important;
}

#salud-flota-section .font-mono-bs {
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
}

/* ANIMACIÓN NATURAL - SIN CAMBIAR EL ICONO */
#salud-flota-section .pillar-btn-bs i.fa-chevron-right {
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2), color 0.2s ease;
  display: inline-block;
}

/* Flecha activa rotada 90 grados = apunta hacia abajo */
#salud-flota-section .pillar-btn-bs.active i.fa-chevron-right {
  transform: rotate(90deg) !important;
}

/* Hover suave */
#salud-flota-section .pillar-btn-bs:not(.active):hover i.fa-chevron-right {
  transform: translateX(5px);
  color: #3b82f6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    #salud-flota-section .section-title {
        font-size: 2rem;
    }

    #salud-flota-section .section-description {
        font-size: 1.125rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    #salud-flota-section.section-container {
        padding: 3rem 0;
    }

    #salud-flota-section .section-header {
        margin-bottom: 2rem;
    }

    #salud-flota-section .section-title {
        font-size: 1.75rem;
    }

    #salud-flota-section .section-subtitle {
        font-size: 0.7rem;
    }

    #salud-flota-section .section-description {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    #salud-flota-section .section-title {
        font-size: 1.5rem;
    }
}

#salud-flota-section .container {
    position: relative;
    z-index: 20;
}

/* botones centrados y responsivos */
#salud-flota-section .btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
}

@media (max-width: 576px) {
    #salud-flota-section .btn-wrapper {
        flex-direction: column;
        width: 100%;
    }

    #salud-flota-section .btn-primary-bs,
    #salud-flota-section .btn-outline-primary-bs {
        width: 100%;
        justify-content: center;
    }
}

/* Estilo para iconos FA5 */
#salud-flota-section i {
    vertical-align: middle;
}

/* Color para iconos de estado */
#salud-flota-section .text-emerald {
    color: #34d399;
}

#salud-flota-section .text-amber {
    color: #f59e0b;
}


/* 
* SECCIÓN CAPACIDADES
*/

#capacidades-section.section-container {
    padding: 5rem 0;
	background: #fff;
	color: #000;
}

#capacidades-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#capacidades-section .section-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #1754cf;
    text-transform: uppercase;
    font-weight: 600;
}

#capacidades-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0.5rem 0 1rem;
}

#capacidades-section .section-description {
    font-size: 1.25rem;
	font-weight: 600;
    color: #626d84;
    max-width: 52rem;
    margin: 0 auto;
    line-height: 1.6;
}

#capacidades-section .text-gradient {
    background: linear-gradient(135deg, hsl(220 80% 45%) 0%, hsl(220 70% 35%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
	font-weight: 600;
}

 /* ===== ESTILOS ADICIONALES CON ANIMACIÓN FLUIDA DE FLECHAS (FONT AWESOME) ===== */
#capacidades-section .dot-pattern {
	background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.03) 1px, transparent 0px);
	background-size: 40px 40px;
	opacity: 0.3;
}

#capacidades-section .scrollbar-hide::-webkit-scrollbar {
	display: none;
}

#capacidades-section .scrollbar-hide {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

/* estrellas fugaces */
#capacidades-section .shooting-stars {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

#capacidades-section .shooting-star {
	position: absolute;
	width: 80px;
	height: 2px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
	border-radius: 999px;
	transform: rotate(20deg);
	animation: shoot 2.5s infinite ease-out;
}

@keyframes shoot {
	0% {
		transform: translateX(0) translateY(0) rotate(20deg);
		opacity: 1;
	}

	80% {
		opacity: 0.6;
	}

	100% {
		transform: translateX(400px) translateY(200px) rotate(20deg);
		opacity: 0;
	}
}

/* ===== ANIMACIÓN FLUIDA DE FLECHAS CON FONT AWESOME ===== */
#capacidades-section .module-btn {
	transition: all 0.25s ease;
	border: 1px solid transparent;
	background-color: transparent;
	position: relative;
}

#capacidades-section .module-btn.active-module {
	background-color: white !important;
	border: 2px solid #2563eb !important;
	box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

/* CONTENEDOR DEL ICONO PARA ANIMACIÓN FLUIDA - FONT AWESOME */
#capacidades-section .module-btn .arrow-icon {
	transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), color 0.25s ease;
	will-change: transform;
	display: inline-block;
	font-size: 0.9rem;
}

/* Hover botones inactivos */
#capacidades-section .module-btn:not(.active-module):hover i, 
#capacidades-section .module-btn:not(.active-module):hover span {
	color: #212529 !important;
}

#capacidades-section .module-btn.active-module i, 
#capacidades-section .module-btn.active-module span {
	color: #212529 !important;
}

/* ANIMACIÓN DE DERECHA A ABAJO - FLUIDA Y NATURAL */
#capacidades-section .module-btn.active-module .arrow-icon {
	transform: rotate(90deg) scale(1.05);
	color: #2563eb !important;
}

/* Hover suave en botones inactivos */
#capacidades-section .module-btn:not(.active-module):hover .arrow-icon {
	transform: translateX(6px);
	color: #4b5563 !important;
}

/* Hover en botones activos (mantiene rotación) */
#capacidades-section .module-btn.active-module:hover .arrow-icon {
	transform: rotate(90deg) scale(1.1);
}

/* colores de módulos */
#capacidades-section .bg-blue-soft {
	background-color: #eff6ff;
}

#capacidades-section .bg-emerald-soft {
	background-color: #ecfdf5;
}

#capacidades-section .bg-amber-soft {
	background-color: #fffbeb;
}

#capacidades-section .border-blue-soft {
	border-color: #bfdbfe;
}

#capacidades-section .border-emerald-soft {
	border-color: #a7f3d0;
}

#capacidades-section .border-amber-soft {
	border-color: #fed7aa;
}

/* tabs internas con transiciones suaves */
#capacidades-section .detail-tab {
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

#capacidades-section .detail-tab.active-tab {
	background-color: #2563eb !important;
	color: white !important;
}

#capacidades-section .detail-tab:not(.active-tab) {
	background-color: rgba(255, 255, 255, 0.1);
	color: #94a3b8;
}

#capacidades-section .detail-tab:not(.active-tab):hover {
	background-color: rgba(255, 255, 255, 0.18);
	transform: translateY(-1px);
}

#capacidades-section .text-white-80 {
	color: #e2e8f0;
}

/* botón outline personalizado con animación - FONT AWESOME */
#capacidades-section .btn-outline-primary-custom {
	border: 2px solid #1754cf;
	color: #1754cf;
	background: transparent;
	transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
}

#capacidades-section .btn-outline-primary-custom:hover {
	background: #1754cf;
	color: white;
	border-color: #1754cf;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(23, 84, 207, 0.2);
}

#capacidades-section .btn-outline-primary-custom:hover .fa-chevron-right {
	transform: translateX(6px);
}

#capacidades-section .btn-outline-primary-custom .fa-chevron-right {
	transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
}

/* animación para móvil */
#capacidades-section .mobile-feature {
	transition: all 0.2s ease;
	cursor: pointer;
}

#capacidades-section .mobile-feature:active {
	transform: scale(0.98);
}

/* ===== ESTILOS PARA EL TEXTO "POR QUÉ IMPORTA" ADAPTADO ===== */
#capacidades-section .why-title {
	font-size: 0.75rem;
	font-family: 'Inter', monospace;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #1754cf;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

#capacidades-section .why-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

#capacidades-section .why-list li {
	font-size: 0.875rem;
	color: #cbd5e1;
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 0.375rem;
}

#capacidades-section .why-list li span.dot {
	margin-top: 0.4rem;
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 50%;
	background-color: #1754cf;
	flex-shrink: 0;
}

/* Para los textos específicos de Planificación de Rutas */
#capacidades-section .text-slate-300 {
	color: #cbd5e1;
}

#capacidades-section .bg-primary-custom {
	background-color: #1754cf;
}

#capacidades-section .font-mono {
	font-family: 'Inter', monospace;
}

#capacidades-section .tracking-wider {
	letter-spacing: 0.05em;
}

/* Ajuste para íconos de Font Awesome en móvil y desktop */
#capacidades-section .fa-chevron-right {
	font-size: 0.9rem;
}

#capacidades-section .module-card i,
.mobile-feature i {
	font-size: 1rem;
}

#capacidades-section .detail-icon {
	font-size: 1.75rem;
}


/* Dispositivos muy pequeños (< 400px) */
@media (max-width: 400px) {
    #capacidades-section .section-title {
        font-size: 1.5rem;
    }    
}

/* Móviles (576px - 768px) */
@media (max-width: 768px) {

    /* Contenedor principal */
    #capacidades-section.section-container {
        padding: 3rem 0;
    }

    /* Cabecera */
    #capacidades-section .section-header {
        margin-bottom: 2rem;
    }

    #capacidades-section .section-title {
        font-size: 1.75rem;
    }

    #capacidades-section .section-subtitle {
        font-size: 0.7rem;
    }

    #capacidades-section .section-description {
        font-size: 1rem;
    }  
}

/* Tabletas (768px - 992px) */
@media (max-width: 992px) {
    #capacidades-section .section-title {
        font-size: 2rem;
    }

    #capacidades-section .section-description {
        font-size: 1.125rem;
        padding: 0 1rem;
    }
}

/* 
* SECCIÓN RESPALDO
*/

/*---------------------------------------------------------------------------
  #CONTENEDOR PRINCIPAL - TUS ESTILOS ORIGINALES
---------------------------------------------------------------------------*/

#respaldo-section.section-container {
    padding: 5rem 0;
    background: #fff;
    color: #000;
}

#respaldo-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#respaldo-section .section-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #1754cf;
    text-transform: uppercase;
    font-weight: 600;
}

#respaldo-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0.5rem 0 1rem;
}

#respaldo-section .section-description {
    font-size: 1.25rem;
    font-weight: 600;
    color: #626d84;
    max-width: 52rem;
    margin: 0 auto;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

#respaldo-section .section-button {
    font-size: .875rem;
    line-height: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1754cf;
    font-weight: 500;
    background: transparent;
    border: none;
    padding: 0;
}

#respaldo-section .section-button i {
    transition: transform 0.2s ease;
}

#respaldo-section .section-button:hover i {
    transform: translateX(4px);
}

#respaldo-section .text-gradient {
    background: linear-gradient(135deg, hsl(220, 80%, 45%) 0%, hsl(220, 70%, 35%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/*---------------------------------------------------------------------------
  #DIVISOR CON PUNTO LUMINOSO
---------------------------------------------------------------------------*/

#respaldo-section .divider-container {
    position: relative;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    #respaldo-section .divider-container {
        margin: 4rem 0;
    }
}

#respaldo-section .divider-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1754cf, transparent);
    transform: translateY(-50%);
}

#respaldo-section .divider-dot {
    position: relative;
    width: 12px;
    height: 12px;
    background: #1754cf;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 12px #1754cf;
}

#respaldo-section .pulse {
    animation: pulse-respaldo 2s ease-in-out infinite;
}

@keyframes pulse-respaldo {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(23, 84, 207, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(23, 84, 207, 0);
    }
}

/*---------------------------------------------------------------------------
  #MÉTRICAS - CARDS
  - Móvil: col-6, icono arriba, centrado
  - Desktop: col-12, icono a la izquierda, texto a la derecha
---------------------------------------------------------------------------*/

#respaldo-section .metric-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

@media (min-width: 768px) {
    #respaldo-section .metric-card {
        flex-direction: row;
        align-items: center;
        gap: 1.25rem;
        padding: 1.25rem;
        text-align: left;
    }
}

#respaldo-section .metric-card:hover {
    border-color: #1754cf;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(23, 84, 207, 0.1);
}

#respaldo-section .metric-icon {
    font-size: 1.25rem;
    color: #1754cf;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    #respaldo-section .metric-icon {
        font-size: 1.75rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

#respaldo-section .metric-card:hover .metric-icon {
    transform: scale(1.1);
}

#respaldo-section .metric-content {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    #respaldo-section .metric-content {
        flex: 1;
    }
}

#respaldo-section .metric-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1754cf;
    margin-bottom: 0.25rem;
    font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
    #respaldo-section .metric-number {
        font-size: 1.75rem;
    }
}

@media (min-width: 992px) {
    #respaldo-section .metric-number {
        font-size: 2rem;
    }
}

#respaldo-section .metric-label {
    font-size: 0.75rem;
    color: #626d84;
    line-height: 1.3;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    #respaldo-section .metric-label {
        font-size: 0.875rem;
    }
}

/* Ocultar número falso en móvil para la card de certificaciones */
#respaldo-section .metric-number.d-md-none {
    display: block;
    opacity: 0;
    pointer-events: none;
}

@media (min-width: 768px) {
    #respaldo-section .metric-number.d-md-none {
        display: none !important;
    }
}

/*---------------------------------------------------------------------------
  #MAPA DE PRESENCIA GLOBAL
---------------------------------------------------------------------------*/

#respaldo-section .map-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    #respaldo-section .map-card {
        padding: 2rem;
    }
}

#respaldo-section .map-subtitle {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #626d84;
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    #respaldo-section .map-subtitle {
        margin-bottom: 2rem;
    }
}

#respaldo-section .map-container {
    position: relative;
    width: 100%;
    aspect-ratio: 900/500;
    border-radius: 0.75rem;
    overflow: hidden;
    flex: 1;
}

#respaldo-section .map-bg-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a1424, #0f1a2c, #0c1729);
}

#respaldo-section .map-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image: 
        linear-gradient(rgba(148, 163, 184, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.4) 1px, transparent 1px);
    background-size: 40px 40px;
}

#respaldo-section .map-gradient-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 40%, rgba(23, 84, 207, 0.1), transparent 60%);
}

#respaldo-section .map-gradient-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(23, 84, 207, 0.08), transparent 60%);
}

#respaldo-section .map-svg {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

/*---------------------------------------------------------------------------
  #CERTIFICACIÓN NISSAN
---------------------------------------------------------------------------*/

#respaldo-section .nissan-badge-container {
    margin-top: 3rem;
    padding: 1.5rem 1rem;
    background: #e8ecf0;
    border-radius: 0.75rem;
}

@media (min-width: 768px) {
    #respaldo-section .nissan-badge-container {
        margin-top: 4rem;
        padding: 2.5rem 1.5rem;
        border-radius: 1rem;
    }
}

@media (min-width: 992px) {
    #respaldo-section .nissan-badge-container {
        padding: 3rem 2rem;
    }
}

#respaldo-section .nissan-badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    #respaldo-section .nissan-badge-content {
        flex-direction: row;
        gap: 4rem;
    }
}

#respaldo-section .nissan-text {
    text-align: center;
}

@media (min-width: 768px) {
    #respaldo-section .nissan-text {
        text-align: left;
    }
}

#respaldo-section .nissan-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    #respaldo-section .nissan-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 992px) {
    #respaldo-section .nissan-title {
        font-size: 1.5rem;
    }
}

#respaldo-section .nissan-subtitle {
    font-size: 0.6875rem;
    color: #1a1a1a;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    line-height: 1.2;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    #respaldo-section .nissan-subtitle {
        font-size: 0.875rem;
    }
}

@media (min-width: 992px) {
    #respaldo-section .nissan-subtitle {
        font-size: 1rem;
    }
}

#respaldo-section .nissan-img {
    height: 4rem;
    width: auto;
}

@media (min-width: 768px) {
    #respaldo-section .nissan-img {
        height: 7rem;
    }
}

@media (min-width: 992px) {
    #respaldo-section .nissan-img {
        height: 9rem;
    }
}

/*---------------------------------------------------------------------------
  #MEDIA QUERIES
---------------------------------------------------------------------------*/

@media (max-width: 400px) {
    #respaldo-section .section-title {
        font-size: 1.5rem;
    }
    
    #respaldo-section .metric-number {
        font-size: 1rem;
    }
    
    #respaldo-section .metric-label {
        font-size: 0.6875rem;
    }
}

@media (max-width: 768px) {
    #respaldo-section.section-container {
        padding: 3rem 0;
    }

    #respaldo-section .section-header {
        margin-bottom: 2rem;
    }

    #respaldo-section .section-title {
        font-size: 1.75rem;
    }

    #respaldo-section .section-subtitle {
        font-size: 0.7rem;
    }

    #respaldo-section .section-description {
        font-size: 1rem;
    }
    
    #respaldo-section .nissan-title {
        font-size: 0.875rem;
    }
    
    #respaldo-section .nissan-subtitle {
        font-size: 0.6875rem;
    }
    
    #respaldo-section .nissan-img {
        height: 4rem;
    }
}

@media (max-width: 992px) {
    #respaldo-section .section-title {
        font-size: 2rem;
    }

    #respaldo-section .section-description {
        font-size: 1.125rem;
        padding: 0 1rem;
    }
}

/*---------------------------------------------------------------------------
  #UTILIDADES
---------------------------------------------------------------------------*/

#respaldo-section .z-1 {
    z-index: 1;
}

#respaldo-section .position-relative {
    position: relative;
}

#respaldo-section .position-absolute {
    position: absolute;
}


/* 
* SECCIÓN CONTACTO
*/


#contacto-section.section-container {
  padding: 5rem 0;
  background: #fff;
  color: #000;
}

#contacto-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

#contacto-section .section-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #1754cf;
  text-transform: uppercase;
  font-weight: 600;
}

#contacto-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0.5rem 0 1rem;
}

#contacto-section .section-description {
  font-size: 1.25rem;
  font-weight: 600;
  color: #626d84;
  max-width: 52rem;
  margin: 0 auto;
  line-height: 1.6;
}

#contacto-section .form-section {
	background: white;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	padding: 2.5rem 2rem;
	transition: all 0.3s ease;
	text-align: left;
}

#contacto-section .form-title {
  color: #1e293b;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 1.25rem;
}

#contacto-section .form-group {
  margin-bottom: 0.7rem;
}

#contacto-section .form-label {
  font-weight: 500;
  color: #475569;
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.875rem;
}

#contacto-section .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  background-color: #f9fafb;
}

#contacto-section .form-control:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#contacto-section .btn-solicitud {
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 1rem 2rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  border-radius: 0.75rem;
  width: 100%;
}

#contacto-section .btn-solicitud .solicitud-icon {
  transition: transform 0.3s ease;
  margin-right: 3px;
}

#contacto-section .btn-solicitud:hover .solicitud-icon {
  transform: translateY(-6px);
}

#contacto-section .fade-in {
	animation: fadeIn 0.3s ease forwards;
}

#contacto-section .result-section {
	text-align: center;
	padding: 1rem 0;
}

#contacto-section .telemetria-group {
	margin-bottom: 1rem;
}

#contacto-section .telemetria-btn {
	transition: all 0.2s ease;
	border-width: 1px;
	border-radius: 10px;
	border-color: #dcdfe5;
	font-size: 0.75rem;
}

#contacto-section .telemetria-btn.active {
	background-color: #fff !important;
	color: #0d6efd !important;
	border-color: #0d6efd !important;
}

#contacto-section .telemetria-btn i {
	font-size: 0.9rem;
}

#contacto-section .btn-outline-secondary:hover {
	background-color: #fff !important;
	color: #0d6efd !important;
	border-color: #0d6efd !important;
}

/* Estilos para animación de envío */
#contacto-section .btn-solicitud {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

#contacto-section .btn-solicitud.sending {
  background-color: #2563eb;
  pointer-events: none;
  opacity: 0.9;
}

#contacto-section .btn-solicitud.sending .button-content {
  opacity: 0.7;
}

#contacto-section .btn-solicitud.sending .fa-paper-plane {
  animation: flyPlane 0.8s ease forwards;
}
					
/* Animación del ícono en mensaje de éxito */
#contacto-section #contact-success-animation {
  position: relative;
  animation: pulseCheck 1.5s ease;
}

#contacto-section .checkmark-container {
	width: 64px;
	height: 64px;
	background-color: rgba(5, 150, 105, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}
					
#contacto-section #contact-success-animation .fa-paper-plane {
  animation: planeArrival 1s ease forwards;
}

#contacto-section .checkmark {
	color: #059669;
	font-size: 2rem;
}	

#contacto-section .result-title {
	font-weight: 700;
	color: #1fad7e;
	margin-bottom: 1.5rem;
	font-size: .75rem;
	line-height: 1rem;
	padding: .375rem .75rem;
	background: #1fad7e1a;
	display: inline-block;
	border-radius: 20px;
}	

#contacto-section .tlbox-title {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

#contacto-section .tlbox-description {
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: #626d84;
}

#contacto-section .flip-card {
	perspective: 1000px;
	height: 9rem;
	transition: color 0.3s ease;
}

#contacto-section .flip-card:hover .flip-card-front {
	border: 1px solid #1754cf66;
}

#contacto-section .flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.6s ease;
	transform-style: preserve-3d;
	cursor: pointer;
}

#contacto-section .flip-card.is-flipped .flip-card-inner {
	transform: rotateY(180deg);
}

#contacto-section .flip-card-front,
#contacto-section .flip-card-back {
	position: absolute;
	inset: 0;
	border-radius: 1rem;
	backface-visibility: hidden;
	padding: 1.5rem;
	display: flex;
	align-items: center;
}

#contacto-section .flip-card-front {
	background: rgba(255, 255, 255, 0.05);
	box-shadow: inset 0 0 0 1px rgb(232 236 240);
	color: #111827;
	padding: 1rem;
}

#contacto-section .flip-card-front .container-number-step {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

#contacto-section .flip-card-front .number{
	font-size: 0.75rem;
	line-height: 1rem;
	width: 1.5rem;
	height: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	background: #1754cf2e;
	color: #1754cf;
	border-radius: 20px;
}

#contacto-section .flip-card-front .step{
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-family: "IBM Plex Mono", monospace;
	color: #626d84;
}

#contacto-section .flip-card-front .title{
	font-size: 10px;
	font-weight: 400;
	margin-bottom: .25rem;
	color: #626d84;	
}

#contacto-section .flip-card-front .description{
	font-size: .875rem;
	font-weight: 600;
	line-height: 1.25rem;
}

#contacto-section .flip-card-back {
	background: #1e293b;
	transform: rotateY(180deg);
	color: #e5e7eb;
	flex-direction: column;
}

#contacto-section .icon {
	position: absolute;
	right: 20px;
	bottom: 20px;
	opacity: 0.85;
	font-size: 0.75rem;
	line-height: 1rem;
	margin-bottom: 0rem;
	color: #626d84;
}

#contacto-section .flip-card:hover .icon {
	color: #0d6efd;
}

#contacto-section .flip-card-back .title-back {
	font-size: 10px;
	font-weight: 600;
	margin-bottom: .25rem;
	color: #1754cf;
}

#contacto-section .flip-card-back .description-back {
	border-left: 2px solid #1754cf;
	font-size: 0.75rem;
	line-height: 1rem;
	text-align: left;
	padding-left: 10px;
}
				
#contacto-section .icon-back {
	position: absolute;
	right: 20px;
	bottom: 20px;
	opacity: 0.85;
	font-size: 0.75rem;
	line-height: 1rem;
	margin-bottom: 0rem;
	color: #626d84;
}

#contacto-section .flip-card:hover .icon-back {
	color: #ffffff;
}	

/* Dispositivos muy pequeños (< 400px) */
@media (max-width: 400px) {
  #contacto-section .section-title {
    font-size: 1.5rem;
  }
}

/* Dispositivos pequeños (< 576px) */
@media (max-width: 576px) {
	#contacto-section .flip-card-front .number {
		font-size: 0.55rem;
	}
	
	#contacto-section .flip-card-front .step {
		font-size: 8px;
	}
	
	#contacto-section .flip-card-front .title {
		font-size: 8px;
	}
	
	#contacto-section .flip-card-front .description {
		font-size: .675rem;
	}
	
	#contacto-section .icon {
		font-size: 8px;
	}
	
	#contacto-section .flip-card-back .title-back {
		font-size: 8px;
	}
	
	#contacto-section .flip-card-back .description-back {
		font-size: 8px;
	}
	
	#contacto-section .icon-back {
		font-size: 8px;
	}
}

/* Móviles (576px - 768px) */
@media (max-width: 768px) {
  /* Contenedor principal */
  #contacto-section.section-container {
    padding: 3rem 0;
  }

  /* Cabecera */
  #contacto-section .section-header {
    margin-bottom: 2rem;
  }

  #contacto-section .section-title {
    font-size: 1.75rem;
  }

  #contacto-section .section-subtitle {
    font-size: 0.7rem;
  }

  #contacto-section .section-description {
    font-size: 1rem;
  }
  
  #contacto-section .col-form {
    margin-bottom: 2rem;
  }
}

/* Tabletas (768px - 992px) */
@media (max-width: 992px) {
  #contacto-section .section-title {
    font-size: 2rem;
  }

  #contacto-section .section-description {
    font-size: 1.125rem;
    padding: 0 1rem;
  }
}