﻿:root {
	--brand: #4dc6e1;
	--brand-dark: #38a8ba;
	/* Las dos claves para la animación: */
	--dur: 500ms;
	--ease: cubic-bezier(.22,.61,.36,1);
	/*S3*/
	--s3-bg: transparent;
	--s3-fg: #0d0e10;
	--s3-muted: #6a6f78;
	--s3-pill-bg: #111214;
	--s3-pill-fg: #ffffff;
	--s3-line: #cdd3bf;
	--s3-ease: cubic-bezier(.22,.61,.36,1);
	--s3-dur: 480ms;
}
html {
	scroll-behavior: smooth;
	font-family: 'Roboto', sans-serif;
	font-optical-sizing: auto;
}
body {
	margin: 0;
	padding: 0;
}

textarea:focus, input:focus {
	outline: none !important;
}

*:focus {
	outline: none !important;
	border-color: inherit !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.OverFlow_Hidden {
	overflow: hidden !important;
}

button {
	outline: none;
}

a, a:hover, a:focus, a:active {
	text-decoration: none;
	color: inherit;
}

.Bold {
	font-weight: 700;
}
.SemiBold {
	font-weight: 600;
}
.Medium {
	font-weight: 500;
}
.Normal {
	font-weight: 400;
}
.Light {
	font-weight: 300;
}
.Thin {
	font-weight: 100;
}
.Roboto {
	font-family: 'Roboto', sans-serif;
}

/*Tamaños tipograficos*/
.TituloGrande {
	font-size: 52px;
	line-height: 62px;
}
.TituloIA_First {
	font-size: 52px;
	line-height: 62px;
}
.TituloLideraMarketing {
	font-size: 70px;
	line-height: 78px;
}
.TituloCard {
	font-size: 24px;
	line-height: 30px;
}
.Contenido {
	font-size: 16px;
	line-height: 28px;
}
.Texto_Menu {
	font-size: 14px;
	line-height: 18px;
}
.TextoMarcas {
	font-size: 24px;
	line-height: 28px;
}


/*Inicio Seteos tamaños tipograficos*/
.VerdeCrema_Novedades_2025 {
	background-color: #e9ffd9; /* verde claro */
}
.FondoAzulOscuro_Pleno_2025 {
	background-color: #111629;
}
/*FIN Seteos tamaños tipograficos*/


/*Inicio Seteos colores tipograficos*/
.Blanco {
	color: #ffffff;
}
.Negro {
	color: #333333;
}
.Gris_Card {
	color: #85898e;
}
.Negro_Pleno {
	color: #000000;
}
.Celes_Footer {
	color: #97b6fc;
}
/*FIN Seteos colores tipograficos*/

/*Colores de fondo*/
.VerdeCrema_Novedades_2025 {
	background-color: #e9ffd9; /* verde claro */
}
/*Colores de fondo*/

/*Inicio NAV*/
/* =========================
   NAV: altura + padding suaves
   ========================= */
#mainNavbar {
	/* Ajustá estos valores a tu gusto */
	--nav-h0: 88px; /* alto inicial */
	--nav-h1: 62px; /* alto scrolled */

	position: sticky;
	top: 0;
	z-index: 1100;
	width: 100%;
	background: #fff;
	box-shadow: 0 4px 16px rgba(0,0,0,.12);
	height: var(--nav-h0);
	transition: height .35s ease, box-shadow .35s ease, background-color .35s ease;
	overflow: clip; /* evita parpadeos de contenido al transicionar */
}

	#mainNavbar.scrolled {
		height: var(--nav-h1);
	}

	/* Evitá cambios de ancho del contenedor del brand */
	#mainNavbar .navbar-brand_2 {
		display: inline-flex;
		align-items: center;
		gap: .5rem;
	}

		/* Caja de logo: ancho fijo = al logo grande; alto fijo cómodo */
		#mainNavbar .navbar-brand_2 .logo-box {
			width: 110px; /* ancho del logo en estado "grande" */
			height: 40px; /* alto máximo del logo */
			position: relative;
			flex: 0 0 auto;
			margin-top:3px;
		}

			/* La imagen se posiciona absoluta y se escala, no cambia su caja */
			#mainNavbar .navbar-brand_2 .logo-box img {
				position: absolute;
				inset: 0;
				width: 100%;
				height: 100%;
				object-fit: contain;
				transform-origin: left center;
				transition: transform .50s ease, opacity .2s ease;
				will-change: transform;
			}

	/* Escala del logo: 25 / 110  0.227 (ajustá si tu logo chico es otro) */
	#mainNavbar.scrolled .navbar-brand_2 .logo-box img {
		transform: scale(0.9);
	}

/* Si además querés que el padding vertical acompañe: */
#mainNavbar {
	padding-inline: 1rem;
	padding-block: 14px;
	transition: height .50s ease, padding-block .35s ease, box-shadow .50s ease, background-color .50s ease;
}

	#mainNavbar.scrolled {
		padding-block: 8px;
	}

	/* Asegurá full width, sin max-widths “achicándose” al scrollear */
	#mainNavbar.navbar {
		max-width: none;
		margin: 0;
		border-radius: 0;
		background-color: #fff;
	}

	#mainNavbar,
	#mainNavbar .container-fluid,
	#mainNavbar .navbar-desktop-wrapper {
		overflow-y: visible !important;
	}
.navbar-collapse-custom {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

	.navbar-collapse-custom.expanding {
		max-height: 1000px; 
	}

.navbar {
	border-radius: 1rem;
	max-width: 1200px;
	margin: 2rem auto;
	background-color: #ffffff;
	padding: 1rem 1rem;
	position: relative;
	z-index: 500;
}

.navbar-nav .nav-link {
	padding: 0.5rem 1rem;
	border-radius: 1rem;
	min-width: 40px;
	min-height: 40px;
	text-align: center;
	font-size: 14px;
	transition: background 0.3s ease;
}

	.navbar-nav .nav-link.active-tab,
	.navbar-nav .nav-link:hover {
		background: #e5fdff;
		font-weight: normal;
	}


.mega-menu {
	display: flex;
	gap: 2rem;
}


.Logo_Nav {
	margin-left: 15px;
}

.mega-menu .column {
	flex: 1;
}

.mega-menu h6 {
	font-size: 0.85rem;
	color: #333333;
	margin-bottom: 0.5rem;
}

.mega-menu a {
	display: block;
	text-decoration: none;
	margin-bottom: 0.5rem;
	font-weight: normal;
	color: #333333;
	border-radius: 10px;
	padding: 0.5rem 1rem;
	transition: background 0.3s ease;
}

	.mega-menu a:hover,
	.mega-menu a.active-item {
		background: #e5fdff;
		font-weight: normal;
	}
.Link_Base_Menu_2025 {
	cursor: pointer;
}

.promo {
	flex: 1;
	background: #111;
	color: white;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.flag {
	width: 20px;
	height: auto;
}

.language-dropdown {
	position: relative;
	
}

.language-dropdown .dropdown-toggle {
	padding: 0.5rem 1rem;
	background-color: #ffffff;
	border: none;
	border-radius: 1rem;
	min-width: 70px;
	min-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s;
}

	.language-dropdown .dropdown-toggle:hover,
	.language-dropdown.show .dropdown-toggle {
		background: #e5fdff;
	}

.dropdown-item:hover {
	background: #e5fdff !important;
}

	.language-dropdown .dropdown-menu {
		position: absolute;
		top: 100%;
		right: 0;
		margin-top: 0; /* <- quita el gap que te cortaba el hover */
		z-index: 1050;
		min-width: 160px;
		border-radius: 1rem;
	}


.dropdown-item .flag {
	margin-right: 8px;
}

.navbar-desktop-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.navbar-left {
	flex: 0 0 auto;
}
.navbar-brand_2 {
	padding-top: 0px;
	padding-bottom: 0px;
	margin-right: 0px;
	text-decoration: none;
	white-space: nowrap;
}
.nav-link i {
 font-size: 12px;
}

.navbar-center {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
}

.navbar-right {
	flex: 0 0 auto;
}
/* Chevron con transición */
.navbar-center .nav-link .fa-chevron-down {
	display: inline-block; /* para que el transform aplique bien */
	transform-origin: center;
	transition: transform .25s ease; /* la animación */
	will-change: transform;
}

/* 1) Rota al hacer hover (feedback inmediato) */
.navbar-center .nav-link:hover .fa-chevron-down {
	transform: rotate(180deg);
}

/* 2) Rota y queda “apuntando arriba” cuando el item está abierto/activo */
.navbar-center .nav-link.active-tab .fa-chevron-down,
.navbar-center .nav-link[aria-expanded="true"] .fa-chevron-down,
.navbar-center .nav-item.show > .nav-link .fa-chevron-down,
.navbar-center .nav-link.chev-open .fa-chevron-down {
	transform: rotate(180deg);
}

/* Estado inicial del chevron (asegura transición) */
.language-dropdown .dropdown-toggle .fa-chevron-down {
	display: inline-block;
	transform: rotate(0deg);
	transform-origin: center;
	transition: transform .2s ease;
	vertical-align: middle; /* opcional, para alinear mejor con la bandera */
}

/* Se abre: si Bootstrap setea aria-expanded en el botón */
.language-dropdown .dropdown-toggle[aria-expanded="true"] .fa-chevron-down {
	transform: rotate(180deg);
}

/* Se abre: si Bootstrap agrega .show al contenedor dropdown */
.language-dropdown.show .dropdown-toggle .fa-chevron-down {
	transform: rotate(180deg);
}

/* (ya lo tenías) ocultar el caret default de Bootstrap */
.language-dropdown .dropdown-toggle::after {
	display: none !important;
	content: none !important;
}

/* Respeto a usuarios con reduced motion */
@media (prefers-reduced-motion: reduce) {
	.navbar-center .nav-link .fa-chevron-down {
		transition: none;
	}
}


/*Fin NAV*/

/*Seccion Video*/

#hero-video-section {
	min-height: 100vh;
	position: relative;
	overflow: hidden;
	/*padding-bottom: 80px;*/
}
.video-shadow {
	border-radius: 20px;
	box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.25);
}

.hero-img {
	position: absolute;
	transition: transform 0.3s ease-out;
	z-index: 1;
	border-radius: 18px;
}

.top-left {
	top: 2%;
	left: 12%;
	width: 304px;
}

.bottom-left {
	top: -2%;
	right: 14%;
	width: 250px;
}

.right-img {
	top: 30%;
	right: 5%;
	width: 400px;
}

#hero-video {
	transition: width 0.2s ease-out;
	border-radius: 18px;
	z-index: 2;
	position: relative;
}

.video-wrapper {
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 2;
}
/*Fin seccion Video*/

/*Seccion orbitas*/
.orbitmp {
	position: relative;
	overflow: hidden;
}

.orbitmp__wrap {
	max-width: 90%;
	margin: 0 auto;
	position: relative;
	border: solid 0px #fe0000;
}

.orbitmp__title {
	/*margin: 0;
	padding-block: clamp(80px,12vh,160px);*/
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.orbitmp__layer {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	pointer-events: all;
}



/* animaciones (la ruta la setea JS) */
.orbit-1 {
	animation: pathMove1 28s linear infinite;
	animation-delay: var(--delay,6s);
}

.orbit-2 {
	animation: pathMove2 18s linear infinite reverse;
	animation-delay: var(--delay,0s);
}

@keyframes pathMove1 {
	to {
		offset-distance: 100%;
	}
}

@keyframes pathMove2 {
	to {
		offset-distance: 100%;
	}
}

.pill_Orbital {
	position: relative;
	display: inline-block;
	padding: 10px 24px;
	border-radius: 999px;
	text-align: center;
	border: 1px solid rgba(255,255,255,.18);
	/* apilamos sombras suaves con distintos radios para un fade real */
	box-shadow: 0 10px 28px rgba(0,0,0,.18), 0 0 10px rgba(255,255,255,.20), 0 0 18px rgba(255,255,255,.14), 0 0 26px rgba(255,255,255,.10);
}
.pill {
	pointer-events: auto;
	position: absolute;
	offset-rotate: 0deg;
	offset-position: 50% 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	border-radius: 999px;
	backdrop-filter: blur(32px);
	-webkit-backdrop-filter: blur(32px);
	box-shadow: 0 6px 22px rgba(0,0,0,.12);
	offset-anchor: 50% 50%;
	/* extra para evitar rarezas de composición */
	backface-visibility: hidden;
	transform: translateZ(0);
}


/* Colores específicos */
.IMG_Pill_CDP {
	filter: invert(94%) sepia(7%) saturate(328%) hue-rotate(136deg) brightness(110%) contrast(90%);
}
/* PILL Agente (#e7e3fe) */
.IMG_Pill_Agente {
	filter: invert(90%) sepia(6%) saturate(1110%) hue-rotate(200deg) brightness(120%) contrast(90%);
}

/* PILL Análisis (#faebe0) */
.IMG_Pill_Analisis {
	filter: invert(91%) sepia(7%) saturate(537%) hue-rotate(319deg) brightness(120%) contrast(90%);
}

/* PILL Remarketing (#eeffdf) */
.IMG_Pill_Remarketing {
	filter: invert(90%) sepia(18%) saturate(310%) hue-rotate(50deg) brightness(120%) contrast(90%);
}
.pill-analisis_Orbital {
	background: #fbe7df; /* rosado pastel */
}

.pill-agente_Orbital {
	background: #dad1f7; /* violeta pastel */
}

.pill-cdp_Orbital {
	background: #dcfdfe; /* celeste pastel */
}

.pill-remarketing_Orbital {
	background: #e4f8d9; /* verde pastel */
}


/*Nuevas orbitas*/







/*Fin nuevas orbitas*/


/* ejemplo, centra sobre la zona útil */


/* Fin Seccion orbitas*/

/* Viewport: NO display:flex acá */
.MarqueeViewport_2025 {
	position: relative;
	overflow: hidden;
	height: 60px; /* mismo alto de cajón */
	/* Fade correcto (blanco visible en el centro) */
	-webkit-mask-image: linear-gradient(to right, transparent 0%, #fff 12%, #fff 88%, transparent 100%);
	mask-image: linear-gradient(to right, transparent 0%, #fff 12%, #fff 88%, transparent 100%);
}

/* Tiras absolutas, una sobre otra */
.MarqueeTrack_2025 {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	gap: 40px; /* espacio entre logos */
	width: max-content; /* ancho real del contenido */
	will-change: transform;
	--start: 0%; /* offset variable */
	animation: marquee_2025 30s linear infinite; /* bajá a 10s si querés más rápido */
}

	/* La segunda tira arranca desplazada 100% a la derecha */
	.MarqueeTrack_2025.is-dup {
		--start: 100%;
	}

/* Keyframes usando el offset variable */
@keyframes marquee_2025 {
	from {
		transform: translateX(var(--start));
	}

	to {
		transform: translateX(calc(var(--start) - 100%));
	}
}

.LogoItem_2025 {
	width: 150px; /* desktop */
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	/* ajuste fino por logo opcional */
	--scale: 1; /* podés bajarlo a .85 en outliers */
}


.LogoImg_2025 {
	display: block;
	max-width: 70%;
	max-height: 70%;
	width: auto; /* clave para SVG: que mande el alto */
	height: 100%; /* el alto del cajón define el tamaño */
	object-fit: contain;
	min-width: 0; /* evita overflow en Safari/Edge */
	min-height: 0;
	transform: scale(var(--scale));
	transform-origin: center;
}

	/* Si tus SVG vienen con width/height internos raros, priorizá el alto */
	.LogoImg_2025[src$=".svg"] {
		width: auto !important;
		height: 100% !important;
	}


.btn-demo-2025 {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 2rem;
	border-radius: 999px;
	background: linear-gradient(90deg, #3cc9f1 0%, #0039d1 100%);
	text-decoration: none;
	overflow: hidden;
	transition: padding-right 0.3s ease;
}

	/* Texto siempre centrado */
	.btn-demo-2025 .btn-text {
		z-index: 1;
	}

	/* Flecha posicionada fuera, sin ocupar espacio */
	.btn-demo-2025 .arrow {
		position: absolute;
		right: 1.5rem;
		opacity: 0;
		transform: translateX(-8px);
		transition: opacity 0.3s ease, transform 0.3s ease;
	}

	/* Hover  se expande padding y aparece flecha */
	.btn-demo-2025:hover, .btn-demo-2025:active, .btn-demo-2025:visited {
		padding-right: 3rem; /* crea espacio para la flecha */
		color: #fff;
	}

		.btn-demo-2025:hover .arrow {
			opacity: 1;
			transform: translateX(0);
		}

.btn-demo-2025-Chico {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.50rem 2rem;
	border-radius: 999px;
	background: linear-gradient(90deg, #3cc9f1 0%, #0039d1 100%);
	text-decoration: none;
	overflow: hidden;
	transition: padding-right 0.3s ease;
}

	/* Texto siempre centrado */
	.btn-demo-2025-Chico .btn-text {
		z-index: 1;
	}

	/* Flecha posicionada fuera, sin ocupar espacio */
	.btn-demo-2025-Chico .arrow {
		position: absolute;
		right: 1.5rem;
		opacity: 0;
		transform: translateX(-8px);
		transition: opacity 0.3s ease, transform 0.3s ease;
	}

	/* Hover  se expande padding y aparece flecha */
	.btn-demo-2025-Chico:hover, .btn-demo-2025-Chico:active, .btn-demo-2025-Chico:visited {
		padding-right: 3rem; /* crea espacio para la flecha */
		color: #fff;
	}

		.btn-demo-2025-Chico:hover .arrow {
			opacity: 1;
			transform: translateX(0);
		}

.btn-Turqueza_Plano-2025 {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 2rem;
	font-size:0.95rem;
	border-radius: 999px;
	background: #4dc6e1;
	text-decoration: none;
	overflow: hidden;
	transition: padding-right 0.3s ease, background 0.3s ease, color 0.3s ease;
}

	.btn-Turqueza_Plano-2025:hover {
		background: #38a8ba;
		padding-right: 3rem; /* crea espacio para la flecha */
		color: #fff;
	}

		.btn-Turqueza_Plano-2025:hover .arrow {
			opacity: 1;
			transform: translateX(0);
		}
.btn-Turqueza_Plano-2025_Mob {
	position: relative;
	width:100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 2rem;
	border-radius: 999px;
	background: #4dc6e1;
	text-decoration: none;
	overflow: hidden;
	transition: padding-right 0.3s ease, background 0.3s ease, color 0.3s ease;
}

	.btn-Turqueza_Plano-2025_Mob:hover {
		background: #38a8ba;
		padding-right: 3rem; /* crea espacio para la flecha */
		color: #fff;
	}

		.btn-Turqueza_Plano-2025_Mob:hover .arrow {
			opacity: 1;
			transform: translateX(0);
		}

.btn-Turqueza_Plano-2025_Icono {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.35rem 2rem;
	font-size: 0.95rem;
	border-radius: 999px;
	background: #4dc6e1;
	text-decoration: none;
	overflow: hidden;
	transition: padding-right 0.3s ease, background 0.3s ease, color 0.3s ease;
	color: #000000 !important;
}

	.btn-Turqueza_Plano-2025_Icono:hover {
		background: #38a8ba;
		padding-right: 3rem; /* crea espacio para la flecha */
		color: #ffffff !important;
	}

		.btn-Turqueza_Plano-2025_Icono:hover .arrow {
			opacity: 1;
			transform: translateX(0);
		}
/* Flecha posicionada fuera, sin ocupar espacio */
	.btn-Turqueza_Plano-2025_Icono .arrow {
		position: absolute;
		right: 1.5rem;
		opacity: 0;
		transform: translateX(-8px);
		transition: opacity 0.3s ease, transform 0.3s ease;
	}

/* Hover  se expande padding y aparece flecha */
	.btn-Turqueza_Plano-2025_Icono:hover, .btn-Turqueza_Plano-2025_Icono:active, .btn-Turqueza_Plano-2025_Icono:visited {
		padding-right: 3rem; /* crea espacio para la flecha */
		color: #fff;
	}

		.btn-Turqueza_Plano-2025_Icono:hover .arrow {
			opacity: 1;
			transform: translateX(0);
		}

.FondoMain {
	background: #111629;
	background: -webkit-linear-gradient(180deg, rgba(17, 22, 41, 1) 0%, rgba(23, 41, 172, 1) 50%);
	background: -moz-linear-gradient(180deg, rgba(17, 22, 41, 1) 0%, rgba(23, 41, 172, 1) 50%);
	background: linear-gradient(180deg, rgba(17, 22, 41, 1) 0%, rgba(23, 41, 172, 1) 50%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#111629", endColorstr="#1729AC", GradientType=0);
}
.FondoMain_Invertido {
	background: #1729AC; /* color inicial */
	background: -webkit-linear-gradient(180deg, rgba(23, 41, 172, 1) 0%, rgba(17, 22, 41, 1) 50%);
	background: -moz-linear-gradient(180deg, rgba(23, 41, 172, 1) 0%, rgba(17, 22, 41, 1) 50%);
	background: linear-gradient(180deg, rgba(23, 41, 172, 1) 0%, rgba(17, 22, 41, 1) 50%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1729AC", endColorstr="#111629", GradientType=0);
}

.Color_Footer {
	background-color:#1729ac;
}


.NovedadesWrap_2025 {
	gap: .75rem;
}

.NovedadesPill_2025 {
	background: #333333;
	color: #ffffff;
	font-size: .75rem;
	font-weight: 700;
	padding: .4rem 1rem;
	border-radius: 999px;
	line-height: 1;
	flex: 0 0 auto;
}

.TextoNovedades_2025 {
	color: #333333;
	font-size: .9rem;
	line-height: 1.4;
}

.Btn_Novedades_2025 {
	color: inherit;
	text-decoration: none;
}

	.Btn_Novedades_2025:hover {
		text-decoration: underline;
	}
.navbar {
	overflow: visible;
}
.mega-menu-wrapper {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(8px); /* centrado */
	z-index: 1050;
	visibility: hidden;
	opacity: 0;
	transition: opacity .2s ease, transform .2s ease;
	padding-top: 1rem;
	pointer-events: none;
	width: auto; /* ahora no fuerza 100% */
}

	.mega-menu-wrapper.is-open {
		visibility: visible;
		opacity: 1;
		transform: translateX(-50%) translateY(0);
		pointer-events: auto;
	}

.mega-menu {
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 12px 30px rgba(0,0,0,.12);
	padding: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	
}

/*Slide*/


.slider_Slider_2025 {
	position: relative;
	margin: 0 auto;
	overflow: hidden;
	background: #f6f5e9;
	height: 750px;
	background: #1729AC;
	background: -webkit-linear-gradient(180deg, rgba(23, 41, 172, 1) 0%, rgba(17, 22, 41, 1) 50%);
	background: -moz-linear-gradient(180deg, rgba(23, 41, 172, 1) 0%, rgba(17, 22, 41, 1) 50%);
	background: linear-gradient(180deg, rgba(23, 41, 172, 1) 0%, rgba(17, 22, 41, 1) 50%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1729AC", endColorstr="#111629", GradientType=0);
}

.slider-inner_Slider_2025 {
	height: 100%;
	width: 95%;
	margin: 0 auto;
	position: relative;
	border-radius: 75px;
	/* Fondo: imagen PNG arriba + gradiente abajo */
	background: url("../images/2025/Fondo_Slider.png") no-repeat center, linear-gradient(180deg, rgba(120,187,221,1) 0%, rgba(71,101,251,1) 50%);
	background-size: contain, cover; /* la imagen escala con contain, el gradiente siempre cubre */
}

.track_Slider_2025 {
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform 0.4s cubic-bezier(.25,.8,.5,1); /* más corto y más ease-out */
}

.slide_Slider_2025 {
	flex: 0 0 100%;
	height: 400px;
	display: grid;
	place-items: center;
	text-align: center;
margin-top:20px;

}

	.slide_Slider_2025 h2 {
		font-size: clamp(56px, 12vw, 120px);
		margin: 0;
	}

	.slide_Slider_2025 p {
		margin: 10px 0 0;
		font-size: 20px;
	}

/* Counter arriba izq */
.counter_Slider_2025 {
	position: absolute;
	top: 90px;
	left: 150px;
	font-size: 16px;
	letter-spacing: .1em;
}

	.counter_Slider_2025 .sep_Slider_2025 {
		margin: 0 4px;
		opacity: .6;
	}

/* Dots derecha */
.dots_Slider_2025 {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
	z-index: 9999;
	pointer-events: auto;
}

.dot_Slider_2025 {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #1729ac;
	cursor: pointer;
	border: solid 1px #d8e0fe;
	transition: ease;
}

	.dot_Slider_2025.is-active {
		background: #d8e0fe;
		border: solid 1px #1729ac;
		transform: scale(1.5)
	}
/* Wrapper fijo dentro del slider */
.pillWrap_Slider_2025 {
	position: absolute;
	top: 20px; /* ajustá posición vertical */
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	pointer-events: none; /* no bloquea el mousewheel del slider */
}

/* El pill con el texto */
.pill_Slider_2025 {
	position: relative;
	display: inline-block;
	padding: 15px 35px;
	border: 1px solid rgba(255,255,255,.9);
	border-radius: 999px;
	background: rgba(255,255,255,.12);
	color: #0e0e0e;
	font-size: 16px;
	line-height: 1;
	backdrop-filter: blur(6px);
}

/* Ícono afuera a la izquierda del pill */
.pillIcon_Slider_2025 {
	position: absolute;
	right: 100%; /* lo coloca inmediatamente a la izquierda del pill */
	margin-right: 12px; /* separación entre icono y pill */
	top: 50%;
	transform: translateY(-50%);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-shadow: 0 1px 4px rgba(0,0,0,.2);
	pointer-events: none;
}

/* Línea vertical centrada bajo el pill */
.pillLine_Slider_2025 {
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
	width: 1.5px;
	height: 90px !important; /* largo de la línea */
	background: #fff;
	opacity: .9;
	content: "";
	display: block;
}

/* 1) Compactar el contenido del slide */
.slide_Slider_2025 {
	/* en vez de place-items: center; */
	display: flex;
	flex-direction: column;
	justify-content: center; /* centra vertical */
	align-items: center; /* centra horizontal */
	gap: clamp(8px, 1.8vh, 22px); /* espacio entre H2 y caption */
}

	/* 2) Márgenes controlados */
	.slide_Slider_2025 h2 {
		margin: 0; /* cero margen extra arriba/abajo */
		line-height: .9; /* un pelín más “apretado” */
	}

	.slide_Slider_2025 p {
		margin: 0; /* sacamos márgenes del P */
		font-size: clamp(16px, 2.2vh, 24px);
		opacity: .9;
	}

/* 3) Levantar todo el bloque (ajustá a gusto) */
.slide_Slider_2025 {
	transform: translateY(-3vh); /* -2vh a -5vh según lo veas */
}

/* 4) La línea del pill más corta para que no “empuje” visualmente */
.pillLine_Slider_2025 {
	height: clamp(24px, 4vh, 48px);
	opacity: .85;
}

/* 5) Si el KPI se ve demasiado grande en ciertas alturas, suavizá el clamp */
.slide_Slider_2025 h2 {
	font-size: clamp(64px, 11vw, 160px);
}

/* Suavizá el desplazamiento del track */
.track_Slider_2025 {
	transition: transform 1.2s ease-out; /* más corto y suave */
	will-change: transform;
	backface-visibility: hidden;
	transform: translateZ(0); /* evita parpadeos de GPU */
}

/* Fade SOLO del contenido del slide */
.slide_Slider_2025 h2,
.slide_Slider_2025 p {
	opacity: 0;
	transition: opacity .35s ease; /* discreto */
	will-change: opacity;
}

/* El slide activo muestra su contenido */
.slide_Slider_2025.is-visible h2,
.slide_Slider_2025.is-visible p {
	opacity: 1;
}

/* (Opcional) si aún notás “saltito”, bajá a .30s o subí a .45s */




/*Cards*/

/*Cards*/

/* ================== Tokens / setup ================== */
.Section_Cards_2025 {
	--r-off: 20px;
	--r-on: 36px;
	--frame-pad: 30px;
	--card-h: 700px; /* Desktop: alto fijo */
	--card-h_2: 540px; /* Desktop: alto fijo */
	--body-off-h: 200px; /* OFF más alto para título + CTA */
	--media-h: calc(var(--card-h) - (var(--frame-pad)*2) - var(--body-off-h));
	--media-h_2: calc(var(--card-h) - (var(--frame-pad)*1.7) - var(--body-off-h));
	--lift: 120px;
	--lift_2: 40px;
	--glow-off: 0 0 8px rgba(255,255,255,.18);
	--glow-on: 0 0 16px rgba(255,255,255,.32);
	--stroke-off: 0px;
	--stroke-on: 4px;
	--text: #E9EEF5;
	--muted: #CDD6E1;
	--cta: #6B7C88;
	--cta2: #7F919D;
	--overlay-top-alpha: 0;
	--overlay-mid-alpha: .4;
	--overlay-bot-alpha: 1;
	color: var(--text);
}

/* Grid */
.Section_Cards_2025__grid {
	display: grid;
	gap: 32px;
}

/* ================== Card contenedor ================== */
.Section_Cards_2025__card {
	border-radius: var(--r-off);
	filter: drop-shadow(var(--glow-off));
	transition: filter .35s ease, transform .35s ease, border-radius .35s ease;
	isolation: isolate;
}

/* Frame */
.Section_Cards_2025__frame {
	position: relative;
	z-index: 0;
	height: var(--card-h);
	background: #000;
	border-radius: inherit;
	overflow: hidden;
	padding: var(--frame-pad);
	display: flex;
	flex-direction: column;
	box-shadow: 0 0 0 var(--stroke-off) rgba(255,255,255,0), inset 0 0 0 1px rgba(255,255,255,.06);
	transition: box-shadow .35s ease, border-radius .35s ease;
}

	.Section_Cards_2025__frame::after {
		content: "";
		position: absolute;
		inset: 0;
		border-radius: inherit;
		pointer-events: none;
		z-index: 1;
		opacity: 0;
		transition: opacity .35s ease;
		background: linear-gradient(180deg, rgba(0,0,0,var(--overlay-top-alpha)) 0%, rgba(0,0,0,var(--overlay-mid-alpha)) 30%, rgba(0,0,0,var(--overlay-bot-alpha)) 100%);
	}

/* ================== Media ================== */
.Section_Cards_2025__media {
	position: relative;
	z-index: 0;
	height: var(--media-h);
	border-radius: calc(var(--r-off) - var(--frame-pad)/2);
	overflow: hidden;
	background: none;
}

.Section_Cards_2025__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.05) brightness(.9);
	transform: scale(1.02);
	transition: transform .6s ease;
}

/* ================== Body ================== */
.Section_Cards_2025__body {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
	padding: 14px 12px 12px;
	transform: translateY(0);
	transition: transform .45s ease, max-height .35s ease;
	overflow: hidden;
	max-height: var(--body-off-h);
}

	.Section_Cards_2025__body::before {
		content: "";
		position: absolute;
		left: -12px;
		right: -12px;
		bottom: -12px;
		top: calc(-1 * var(--lift));
		border-radius: calc(var(--r-off) - var(--frame-pad)/2);
		opacity: 0;
		transition: opacity .35s ease;
		z-index: 1;
		pointer-events: none;
		background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.35) 60%, rgba(0,0,0,.75) 100%);
	}

/* Título */
.Section_Cards_2025__title {
	position: relative;
	padding-right: 32px;
	margin: 0 0 10px;
	text-shadow: 0 3px 14px rgba(0,0,0,.55);
}

/* OFF: oculto solo el copy (no ocupa espacio) */
.Section_Cards_2025__copy {
	opacity: 0;
	max-height: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	transform: translateY(10px);
	transition: opacity .35s ease, transform .35s ease, max-height .35s ease;
	pointer-events: none;
	color: var(--muted);
	border-radius: 8px;
}

/* CTA visible siempre */
.btn-demo-2025-Chico {
	opacity: 1;
	transform: none;
	transition: opacity .35s ease, transform .35s ease;
	pointer-events: auto;
}

/* Espacio entre título y botón */
.Section_Cards_2025__title + .btn-demo-2025-Chico {
	margin-top: 6px;
}

/* ================== ESTADO ACTIVO — DESKTOP (hover) ================== */
.Section_Cards_2025__card:hover {
	border-radius: var(--r-on);
	filter: drop-shadow(var(--glow-on));
	transform: translateY(-2px);
}

	.Section_Cards_2025__card:hover .Section_Cards_2025__frame {
		border-radius: var(--r-on);
		box-shadow: 0 0 0 var(--stroke-on) rgba(36,45,58,1), inset 0 0 0 1px rgba(36,45,58,.10);
	}

	.Section_Cards_2025__card:hover .Section_Cards_2025__body {
		transform: translateY(calc(-1 * var(--lift_2)));
		max-height: 520px;
	}

	.Section_Cards_2025__card:hover .Section_Cards_2025__frame::after {
		opacity: 1;
	}

	.Section_Cards_2025__card:hover .Section_Cards_2025__body::before {
		opacity: 0 !important;
	}

	/* Solo mostrar el copy en hover */
	.Section_Cards_2025__card:hover .Section_Cards_2025__copy {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
		max-height: 500px;
		margin: 8px 0 0;
		padding: 10px 0;
	}

	.Section_Cards_2025__card:hover .Section_Cards_2025__bg {
		transform: scale(1.03);
	}

/* ================== Toggle icon (mobile) ================== */
.Section_Cards_2025__toggle {
	position: absolute;
	right: 0;
	top: 10px;
	line-height: 1;
	font-size: 14px;
	cursor: pointer;
	display: none;
}

/* ================== CARD ANCHO ENTERO ================== */
.Section_Cards_2025__frame--wide {
	height: var(--card-h_2);
}

.Section_Cards_2025__media--wide {
	position: relative;
	z-index: 0;
	height: var(--media-h_2);
	min-height: 0 !important;
	border-radius: calc(var(--r-off) - var(--frame-pad)/2);
	overflow: hidden;
	background: #000;
}

.Section_Cards_2025__bg--wide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	filter: saturate(1.05) brightness(.95);
	object-fit: cover;
	object-position: center top;
	transition: object-position 0.8s ease, transform 0.8s ease;
}

.Section_Cards_2025__card--wide:hover .Section_Cards_2025__bg--wide {
	filter: saturate(1.1) brightness(1.0);
}

.Section_Cards_2025__card--wide:hover .Section_Cards_2025__body {
	transform: translateY(calc(-1 * var(--lift_2)));
	max-height: 520px;
}

	.Section_Cards_2025__card--wide:hover .Section_Cards_2025__body::before {
		opacity: 1;
	}

/* Solo mostrar el copy en hover wide */
.Section_Cards_2025__card--wide:hover .Section_Cards_2025__copy {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	max-height: 500px;
	margin: 8px 0 12px;
	padding: 10px 0;
}

.Section_Cards_2025__card--wide:hover .Section_Cards_2025__bg--wide {
	object-position: center top;
	transform: scale(1.03);
}

/* ================== Estados activos (mobile / teclado) ================== */
.Section_Cards_2025__card.is-open .Section_Cards_2025__frame::after,
.Section_Cards_2025__card.is-active .Section_Cards_2025__frame::after {
	opacity: 1;
}

.Section_Cards_2025__card.is-open .Section_Cards_2025__body,
.Section_Cards_2025__card.is-active .Section_Cards_2025__body {
	transform: translateY(calc(-1 * var(--lift_2)));
	max-height: 520px;
}

	.Section_Cards_2025__card.is-open .Section_Cards_2025__body::before,
	.Section_Cards_2025__card.is-active .Section_Cards_2025__body::before {
		opacity: 0 !important;
	}

/* Solo mostrar el copy en activo */
.Section_Cards_2025__card.is-open .Section_Cards_2025__copy,
.Section_Cards_2025__card.is-active .Section_Cards_2025__copy {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	max-height: 500px;
	margin: 8px 0 12px;
	padding: 10px 0;
}

/* ================== Motion-safe ================== */
@media (prefers-reduced-motion: reduce) {
	.Section_Cards_2025__card,
	.Section_Cards_2025__frame,
	.Section_Cards_2025__media,
	.Section_Cards_2025__bg,
	.Section_Cards_2025__body,
	.Section_Cards_2025__body::before,
	.Section_Cards_2025__copy,
	.btn-demo-2025-Chico,
	.Section_Cards_2025__frame::after {
		transition: none !important;
	}

		.Section_Cards_2025__bg--wide,
		.Section_Cards_2025__card--wide,
		.Section_Cards_2025__frame--wide,
		.Section_Cards_2025__media--wide,
		.Section_Cards_2025__body,
		.Section_Cards_2025__body::before {
			transition: none !important;
		}
}



.Logo_Capterra {
	max-width: 150px;
}


/*Carrousel comentarios*/
/* ================== Testimonios / Carousel ================== */
.FeedbackCarousel_2025 {
	--gap: 28px;
	max-width: 90%; /* ocupa el 90% */
	margin: 0 auto;
}

.FeedbackCarousel_2025__viewport {
	padding: 8px 0;
	transition: height .35s ease;
}

.FeedbackCarousel_2025__track {
	gap: var(--gap);
	will-change: transform;
	transition: transform .55s ease;
	align-items: flex-start; /* <- cada card toma su alto real, no se estiran al más alto */
}

.feedback-card {
	flex: 0 0 100%; /* 1 por vista (mobile) */
	background: #fff;
	color: #0f172a;
	border-radius: 16px;
	box-shadow: 0 10px 26px rgba(0,0,0,.16);
	padding: 28px;
	/* alto flexible: que se achique si el texto es corto */
	min-height: unset;
	display: flex;
	flex-direction: column;
	justify-content: initial; /* nada de space-between, lo manejamos a mano */
	gap: 14px;
}

/* Texto arriba; no “crece” artificialmente */
.feedback-quote {
	margin: 0;
	flex: 0 0 auto;
	text-align: left;
}

/* El separador y el meta van SIEMPRE abajo juntos
   - ocultamos el <hr> real
   - y lo dibujamos como borde superior del meta
*/
.feedback-card hr {
	display: none;
}

.feedback-meta {
	margin-top: auto; /*  baja todo el bloque al fondo del card */
	padding-top: 12px;
	border-top: 1px solid rgba(0,0,0,.22); /* reemplaza al <hr> */
	display: flex;
	flex-direction: column; /* estrellas  persona  logo, uno abajo del otro */
	align-items: flex-start;
	gap: 6px;
	text-align: left;
}

.stars i {
	color: #F3C847;
	margin-right: 2px;
	font-size: 14px;
}




/* Controles */
.FeedbackCarousel_2025__controls {
	position: absolute;
	right: 10px;
	bottom: -60px;
	display: flex;
	gap: 12px;
}

.btn-nav {
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: #fff;
	color: #0b1220;
	border: 0;
	display: grid;
	place-items: center;
	box-shadow: 0 6px 18px rgba(0,0,0,.18);
	transition: transform .2s ease, box-shadow .2s ease;
}

	.btn-nav:hover {
		transform: translateY(-2px);
		box-shadow: 0 10px 22px rgba(0,0,0,.22);
	}

	.btn-nav:active {
		transform: translateY(0);
	}
@media (prefers-reduced-motion: reduce) {
	.FeedbackCarousel_2025__track, .btn-nav {
		transition: none !important;
	}
}

/* Footer */
.footer-container {
	margin-top: 0;
	padding: 4rem 0 3rem 0;
	border-radius: 10rem 10rem 0 0;
	background-color: #000000;
}

.SubMenu_Foot {
	margin-left: 10px;
}



.footer-header {
	text-align: center;
	margin-bottom: 3rem;
}

.footer-title {
	margin-bottom: 2rem;
}

	.footer-title strong {
		font-weight: 700;
	}

.btn-footer-cta {
	background-color: #4fc3f7;
	color: #111629;
	border: none;
	padding: 1rem 2rem;
	border-radius: 2rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
}

	.btn-footer-cta:hover {
		background-color: #29b6f6;
		color: white;
		transform: translateY(-2px);
	}

.footer-main {
	background: #78BBDE;
	background: -webkit-linear-gradient(180deg,rgba(120, 187, 222, 1) 0%, rgba(71, 101, 250, 1) 50%);
	background: -moz-linear-gradient(180deg,rgba(120, 187, 222, 1) 0%, rgba(71, 101, 250, 1) 50%);
	background: linear-gradient(180deg,rgba(120, 187, 222, 1) 0%, rgba(71, 101, 250, 1) 50%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#78BBDE",endColorstr="#4765FA",GradientType=0);
	padding: 3rem 4rem;
	border-radius: 2rem;
	margin: 0 auto;
	width: 95%;
	max-width: none;
}

.footer-logo-section {
	margin-bottom: 1.5rem;
	max-width:120px;
}

.footer-separator-line {
	height: 1px;
	background-color: rgba(255, 255, 255, 0.3);
	margin: 2rem 0;
}

.footer-separator {
	margin-top: 1rem;
	margin-bottom: 1rem;
}


.logo-placeholder {
	font-size: 1.5rem;
	font-weight: 700;
	color: white;
	display: block;
}

.logo-subtitle {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 400;
}

.footer-links-row {
	margin-bottom: 2rem;
}

.footer-column-title {
	margin-bottom: 1rem;
	text-transform: none;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

	.footer-links li {
		margin-bottom: 0.5rem;
	}

	.footer-links a {
		text-decoration: none;
		transition: color 0.3s ease;
		font-size:14px;
	}

		.footer-links a:hover {
			color: white;
		}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1rem;
	padding-top: 0;
}

.footer-social {
	display: flex;
	gap: 1rem;
}

.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
}

	.social-icon:hover {
		background-color: rgba(255, 255, 255, 0.2);
		color: white;
		transform: translateY(-2px);
	}

.footer-legal {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.85rem;
}

/* ---------- Footer: acordeón mobile ---------- */
.footer-col {
	position: relative;
}

.footer-accordion-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	cursor: default; /* desktop */
	margin-bottom: 1rem;
}

	.footer-accordion-toggle .chev {
		transition: transform .25s ease;
		font-size: .9rem;
		opacity: .9;
	}
.footer-accordion-toggle {
	cursor: pointer;
}

/* colapsado por defecto */
.footer-col .footer-links {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s ease;
}

/* abierto */
.footer-col.is-open .footer-links {
	max-height: 500px; /* suficiente para varios ítems */
}

/* rotación del ícono */
.footer-col.is-open .footer-accordion-toggle .chev {
	transform: rotate(180deg);
}

/* separadores un poco más compactos en mobile si querés */
.footer-separator-line {
	margin: 1.25rem 0;
}
/* chevron oculto en desktop */
.footer-accordion-toggle .chev {
	display: none;
}

/*Texto IA Animado*/
/* Contenedor del texto "AI" con una capa por encima */
.ai-overlay {
	position: relative;
	display: inline-block;
	/* el texto se ve normalmente (color heredado de tu TituloGrande Blanco) */
}

	/* Capa superior con el GIF, alineada al tamaño del texto */
	.ai-overlay::after {
		content: "";
		position: absolute;
		width: 50px; /*  ancho del GIF */
		height: 50px; /*  alto del GIF */
		right: -60px; /*  posición horizontal relativa al span */
		top: -10px; /* posición vertical relativa al span */
		transform: translateX(-50%); /* centra el GIF respecto al span */

		background: url("../images/2025/Estrella_3D_Animada.gif") center/contain no-repeat;
		pointer-events: none;
		z-index: 2;
	}

.menu-category_2025 {
	display: flex;
	align-items: center; /* centra verticalmente icono + texto */
	gap: 8px; /* espacio entre icono y texto */
}

	.menu-category_2025 .menu-icon_2025 {
		width: 35px; /* ajustá según tu diseño */
		height: auto; /* mantiene proporción */
		flex-shrink: 0;
	}
#megaFuncionalidades {
	width:900px;
}

/*Nuevo slider!*/






/*Slider 3*/

/* Wrapper alto y sticky */
.s3-section {
	position: relative;
	height: 750px;
	background: #1729AC;
	background: -webkit-linear-gradient(180deg, rgba(23, 41, 172, 1) 0%, rgba(17, 22, 41, 1) 50%);
	background: -moz-linear-gradient(180deg, rgba(23, 41, 172, 1) 0%, rgba(17, 22, 41, 1) 50%);
	background: linear-gradient(180deg, rgba(23, 41, 172, 1) 0%, rgba(17, 22, 41, 1) 50%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1729AC", endColorstr="#111629", GradientType=0);
}

.s3-sticky {
	position: sticky;
	top: 0;
	height: 750px;
	overflow: hidden;
	width: 95%;
	margin: 0 auto;
	border-radius: 75px;
	/* Fondo: imagen PNG arriba + gradiente abajo */
	/*background: #3364ff;*/
	background: #3364FF;
	background: -webkit-linear-gradient(220deg,rgba(51, 100, 255, 1) 70%, rgba(71, 189, 223, 1) 100%);
	background: -moz-linear-gradient(220deg,rgba(51, 100, 255, 1) 70%, rgba(71, 189, 223, 1) 100%);
	background: linear-gradient(220deg,rgba(51, 100, 255, 1) 70%, rgba(71, 189, 223, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#3364FF", endColorstr="#47BDDF", GradientType=0 );
}

/* Inner: mismo ancho que tu slider */
.s3-slider {
	position: relative;
	height: 100%;
	display: grid;
	place-items: center;
}

.s3-inner {
	position: relative;
	width: min(1100px, 92vw);
	margin-inline: auto;
	height: min(560px, 70vh);
}

/* Máscara lateral estilo Coda para viñeteo suave */
.s3-inner {
	
}

/* Línea decorativa superior (como la del ejemplo Coda) */
.s3-line {
	position: absolute;
	left: 0;
	right: 0;
	top: 6%;
	height: 2px;
	background: linear-gradient(90deg, rgba(205,211,191,.18), rgba(205,211,191,.7), rgba(205,211,191,.18));
	filter: blur(.2px);
	opacity: .5;
}

	.s3-line::after {
		content: "";
		position: absolute;
		inset: 0 auto 0 0;
		width: var(--s3-progress, 0%);
		background: currentColor;
		opacity: .85;
	}

/* Pill/globito fijo (arriba izq) */
.s3-pillWrap {
	position: absolute;
	top: 18px;
	left: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
	pointer-events: none
}

.s3-pill {
	background: var(--s3-pill-bg);
	color: var(--s3-pill-fg);
	padding: 10px 14px;
	border-radius: 999px;
	font-family: Roboto, ui-sans-serif, system-ui, -apple-system, Segoe UI, Helvetica, Arial;
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.s3-pillIcon {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.s3-pillLine {
	display: block;
	height: 2px;
	width: 64px;
	background: linear-gradient(90deg, rgba(255,255,255,.0), rgba(255,255,255,.5));
	margin-left: 6px;
}

/* Counter (arriba izq debajo del pill) */
.s3-counter {
	position: absolute;
	top: 0px;
	left: 10px;
	font-size: 16px;
	letter-spacing: .1em;
}


/* Dots (derecha centrados) */

.s3-dots {
	position: absolute;
	top: 50%;
	right: 18px;
	transform: translateY(-50%);
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.s3-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #1729ac;
	cursor: pointer;
	transition: transform .25s var(--s3-ease), opacity .25s var(--s3-ease);
}

	.s3-dot.is-active {
		background: #d8e0fe;
		/*border: solid 1px #1729ac;*/
		transform: scale(1.5)
	}

/* Stage (donde apilamos slides) */
.s3-track {
	position: relative;
	height: 100%;
	--s3-offset: 0px;
}

/* Slides con tu estética (números grandes + subtítulo) */
.s3-slide {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	bottom: auto; /* <- clave: no uses inset:0 */
	display: grid;
	place-items: center;
	text-align: center;
	padding: 20px;
	max-height: 350px; /* se respeta y queda centrado igual */
	opacity: 0;
	/* mismo “lift” del fade, pero centrado respecto al 50% */
	transform: translateY(calc(-50% + var(--s3-offset, 0px) + 40px)) scale(.98);
	transition: opacity var(--s3-dur) var(--s3-ease), transform var(--s3-dur) var(--s3-ease);
}

	.s3-slide.is-active {
		opacity: 1;
		transform: translateY(calc(-50% + var(--s3-offset, 0px))) scale(1);
	}

.s3-kpi {
	font-family: Roboto, system-ui, -apple-system, Segoe UI, Helvetica, Arial;
	font-weight: 300;
	font-size: clamp(48px, 9vw, 120px);
	line-height: 1;
	color: #0d0e10;
	letter-spacing: -.02em;
}

.s3-kpi-Signo {
	font-family: Roboto, system-ui, -apple-system, Segoe UI, Helvetica, Arial;
	font-weight: 300;
	font-size: clamp(20px, 6vw, 80px);
	line-height: 1;
	color: #0d0e10;
	letter-spacing: -.02em;
}

	.s3-kpi .s3-light {
		font-weight: 300;
	}

.s3-kpiSub {
	margin-top: 8px;
	font-family: Roboto, system-ui, -apple-system, Segoe UI, Helvetica, Arial;
	font-weight: 400;
	font-size: clamp(14px, 2.2vw, 22px);
	color: #0d0e10;
	opacity: .92;
}

/* Fallback no-js: mostrar el primero */
.no-js .s3-slide:first-child {
	opacity: 1;
	transform: none
}

/* Utilidad demo */
.s3-spacer {
	height: 70vh;
	display: grid;
	place-items: center;
	color: #a0a6b0;
}

/**** Nueva seccion ex numeros****/
/* Fondo con degradé (ajuste rápido: cambio fuerte arriba, luego azul estable) */
.bg-icom-grad {
	background: linear-gradient(to bottom, #47bddf 0%, #47bddf 22%, #3364ff 100%);
}

/* Pill outline estilo “chip” */
.pill-IA-First {
	padding: .7rem 1.5rem;
	border: 1px solid #ffffff;
	border-radius: 999px;
	color: #fff;
	font-size: 1rem; /* ajustá a gusto */
	line-height: 1;
	background: transparent;
}

/* AWARDS */

.AwardsPin {
	height: 100vh;
	overflow: hidden;
	background: linear-gradient(180deg,#111629 0%, #111629 55%, #070b12 100%);
	border-end-start-radius: 48px;
	border-end-end-radius: 48px;
}

/* Contenedor del stack (aspect ratio consistente) */
.AwardsStack {
	position: relative;
	width: 100%;
	max-width: 450px;
	aspect-ratio: 4/3;
	margin-left: auto;
}

/* Imágenes superpuestas, arrancan ocultas/abajo */
.AwardsImg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left top; /* 👈 hace que muestre desde arriba a la izquierda */
	box-shadow: 0 12px 40px rgba(0,0,0,.35);
	opacity: 0;
	transform: translateY(260px) scale(.96) rotate(0deg);
}

	/* Posiciones finales apiladas (podés ajustar a gusto) */
	.AwardsImg.i1 {
		--tx: 0px;
		--ty: 0px;
		--rot: -5;
	}

	.AwardsImg.i2 {
		--tx: 26px;
		--ty: 20px;
		--rot: 3.5;
	}

	.AwardsImg.i3 {
		--tx: 52px;
		--ty: 40px;
		--rot: -2;
	}

.AwardsPin {
	height: 100%;
	min-height: 100vh;
	overflow: hidden;
}

.AwardsPin__stage {
	height: 100%;
}

.Logo_Eccomerce_Awards {
	max-width:110px;
}
.Fondo_Laureles {
	position: relative;
	background: url("../images/2025/FondosLaureles.png") center/contain no-repeat;
	aspect-ratio: 29 / 14; /* mantiene proporción exacta del PNG */
	display: flex; /* activa flexbox */
	align-items: center; /* centra verticalmente */
	justify-content: center; /* centra horizontalmente */
	text-align: center;
}










@media (max-width: 1280px) {
	.slider_Slider_2025 {
		height: 550px;
	}
	.pillWrap_Slider_2025 {
		top: 40px; /* ajustá posición vertical */
		left: 50%;
	}
	.pillLine_Slider_2025 {
		height: 70px !important; /* largo de la línea */
	}
	.counter_Slider_2025 {
		top: 60px;
		left: 100px;
	}
	#hero-video-section {
		min-height: 80vh;
	}

	.top-left {
		top: 0px;
		left: 8%;
		width: 280px;
	}

	.bottom-left {
		top: -2%;
		right: 8%;
		width: 250px;
	}

	.right-img {
		top: 32%;
		right: 2%;
		width: 350px;
	}

	.TituloIA_First {
		font-size: 42px;
		line-height: 52px;
	}
}


@media (min-width: 1180px) {

}

@media (min-width: 992px) {
	
	.footer-col .footer-links {
		max-height: none !important;
		overflow: visible !important;
	}


	.Section_Cards_2025__grid {
		grid-template-columns: 1fr 1fr;
	}
	.Section_Cards_2025__card--wide {
		grid-column: 1 / -1;
	}
	.feedback-card {
		flex-basis: calc((100% - var(--gap)) / 2);
	}
	/* 2 por vista */
}


@media (max-width: 768px) {

	.TituloIA_First {
		font-size: 30px;
		line-height: 42px;
	}
	.s3-section {
		height: 400px;
	}

	.s3-sticky {
		height: auto;
		border-radius: 50px;
	}

	.s3-counter {
		top: unset;
		left: 50%;
		bottom: 30%;
		transform: translateX(-50%);
	}

	.s3-slide {
		top: 40%;
		/* mismo “lift” del fade, pero centrado respecto al 50% */
		transform: translateY(-50%);
	}

	.ai-overlay::after {
		width: 30px; /*  ancho del GIF */
		height: 30px; /*  alto del GIF */
		right: -40px; /*  posición horizontal relativa al span */
		top: -10px; /* posición vertical relativa al span */
	}

	.footer-accordion-toggle .chev {
		display: inline-block;
		transition: transform .25s ease;
		font-size: .9rem;
		opacity: .9;
	}

	.footer-col.is-open .footer-accordion-toggle .chev {
		transform: rotate(180deg);
	}

	.footer-links {
		margin-left:10px;
	}
	.footer-main {
		padding: 2rem 3rem;
	}

	.Section_Cards_2025__frame {
		max-width:90%;
		margin:0 auto;
	}


	#mainNavbar {
		height: auto!important;
	}
	.Logo_Nav {
		margin-left: 0px;
	}
	/* Acordeón mobile para submenús */
	.mega-menu {
		border-radius: 0;
		box-shadow: unset;
		padding: 1rem;
	}

	#navbarMobile .mobile-subpanel {
		max-height: 0;
		overflow: hidden;
		transition: max-height .35s ease;
	}

		#navbarMobile .mobile-subpanel.open {
			max-height: 800px; /* valor alto para animar; si tu mega es más largo, subilo */
		}

		/* El mega clonado se remaqueta en columna */
		#navbarMobile .mobile-subpanel .mega-menu {
			display: block;
			gap: 0;
		}

		#navbarMobile .mobile-subpanel .column {
			width: 100%;
		}

		#navbarMobile .mobile-subpanel h6 {
			margin: .75rem 0 .25rem;
		}

		#navbarMobile .mobile-subpanel a {
			display: block;
			padding: .5rem 1rem;
		}

	/* Flechita a la derecha solo donde hay submenú */
	#navbarMobile .nav-link[data-mega-target]::after {
		content: "\f105";
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		float: right;
		transition: transform .2s;
	}

	#navbarMobile li:has(.mobile-subpanel.open) > .nav-link[data-mega-target]::after {
		transform: rotate(90deg);
	}


	.navbar-collapse {
		max-height: calc(100vh - var(--nav-h, 64px));
		overflow: auto;
	}

	.navbar-collapse-custom {
		max-height: 0;
		overflow: auto;
		transition: max-height 0.4s ease;
	}


		.navbar-nav .nav-link {
			text-align: left;
		}

			

	.navbar-toggler:focus {
		outline: none !important;
		box-shadow: none !important;
	}

	.navbar .language-dropdown,
	.navbar .btn-dark {
	}

	.navbar .btn-secondary {
		margin-top: 1rem;
		width: 100%;
	}

	.navbar-toggler {
		order: 3;
		padding: 0.5rem;
	}

	.navbar-mobile-top {
		display: flex;
		width: 100%;
		padding: 0 1rem;
		gap: 0;
	}

		.navbar-mobile-top .btn-dark {
			margin: 0;
			white-space: nowrap;
		}

	.dropdown.language-dropdown .btn {
		padding: 0.5rem;
	}

	#mainNavbar .navbar-collapse {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.hamburger {
		width: 24px;
		height: 19px;
		position: relative;
		transition: all 0.3s ease;
	}

		.hamburger span {
			position: absolute;
			height: 2px;
			width: 100%;
			background: #000;
			border-radius: 2px;
			transition: all 0.3s ease;
			left: 0;
		}

			.hamburger span:nth-child(1) {
				top: 0;
			}

			.hamburger span:nth-child(2) {
				top: 50%;
				transform: translateY(-50%);
			}

			.hamburger span:nth-child(3) {
				bottom: 0;
			}

		.hamburger.active span:nth-child(1) {
			transform: rotate(45deg);
			top: 8px;
		}

		.hamburger.active span:nth-child(2) {
			opacity: 0;
		}

		.hamburger.active span:nth-child(3) {
			transform: rotate(-45deg);
			bottom: 8px;
		}





	.Section_Cards_2025 {
		--lift: 0;
	}

	.Section_Cards_2025__frame {
		height: auto;
		padding: 20px;
	}

	.Section_Cards_2025__media {
		height: 240px;
		border-radius: 16px;
	}

	.Section_Cards_2025__body {
		max-height: var(--body-off-h);
		transform: none;
		padding: 12px 0 0;
		cursor: pointer;
	}

		.Section_Cards_2025__body::before {
			top: 0;
			opacity: 0;
			border-radius: 12px;
		}

	.Section_Cards_2025__toggle {
		display: inline-block;
	}

	.Section_Cards_2025__title {
		padding-right: 28px;
		margin-bottom: 6px;
	}

	/* CTA visible siempre */
	.btn-demo-2025-Chico {
		opacity: 1;
		transform: none;
		pointer-events: auto;
	}

	/* Espacio entre título y botón */
	.Section_Cards_2025__title + .btn-demo-2025-Chico {
		margin-top: 6px;
	}

	/* SOLO .is-active */
	.Section_Cards_2025__card.is-active {
		border-radius: var(--r-on);
		filter: drop-shadow(var(--glow-on));
	}

		.Section_Cards_2025__card.is-active .Section_Cards_2025__frame {
			border-radius: var(--r-on);
			box-shadow: 0 0 0 var(--stroke-on) rgba(255,255,255,.28), inset 0 0 0 1px rgba(255,255,255,.10);
		}

		.Section_Cards_2025__card.is-active .Section_Cards_2025__body {
			max-height: 520px !important;
			transform: none;
		}

			.Section_Cards_2025__card.is-active .Section_Cards_2025__body::before {
				opacity: 1;
			}

		/* Mostrar el copy solo cuando el card está activo */
		.Section_Cards_2025__card.is-active .Section_Cards_2025__copy {
			opacity: 1;
			transform: translateY(0);
			pointer-events: auto;
			max-height: 500px;
			margin: 8px 0 12px;
			padding: 10px 0;
		}

		.Section_Cards_2025__card.is-active .Section_Cards_2025__bg {
			transform: scale(1.02);
		}

	/* Neutralizá el hover pegajoso si la card NO está activa */
	.Section_Cards_2025__card:not(.is-active):hover .Section_Cards_2025__body {
		transform: none;
		max-height: var(--body-off-h);
	}

	.Section_Cards_2025__card:not(.is-active):hover .Section_Cards_2025__copy {
		opacity: 0;
		transform: translateY(10px);
		pointer-events: none;
		max-height: 0;
		margin: 0;
		padding: 0;
	}





	/* Colores específicos */
	.IMG_Pill_CDP img {
		width:80px;
		height:auto;
	}
	/* PILL Agente (#e7e3fe) */
	.IMG_Pill_Agente img {
		width: 80px;
		height: auto;
	}

	/* PILL Análisis (#faebe0) */
	.IMG_Pill_Analisis img {
		width: 80px;
		height: auto;
	}

	/* PILL Remarketing (#eeffdf) */
	.IMG_Pill_Remarketing img {
		width: 80px;
		height: auto;
	}

	
	.orbit-1 {
		animation-duration: 28s;
	}

	.orbit-2 {
		animation-duration: 18s;
	}
	.slider-inner_Slider_2025 {
		width: 90%;
	}
	.slider_Slider_2025 {
		height: 400px;
	}
	.dots_Slider_2025 {
		top: 40%;
		right: 20px;
	}
	.counter_Slider_2025 {
		top: unset;
		bottom:20px;
		left: 50%;
		transform: translateX(-50%);
	}
	.pillLine_Slider_2025 {
		height: 40px !important; /* largo de la línea */
	}
	.slide_Slider_2025 {
		transform: translateY(-1vh);
		gap: 12px;
	}
	.pill_Slider_2025 {
		font-size: 14px;
		padding: 8px 14px;
	}

	.pillIcon_Slider_2025 {
		display: none;
	}


	/* Contenedor del pill: centrado horizontal y sin salto de línea */
	.pillWrap_Slider_2025 {
		left: 50%;
		transform: translateX(-50%);
		display: inline-flex;
		align-items: center;
		gap: 8px;
		flex-wrap: nowrap;
		white-space: nowrap;
		/* no pongas width fijo acá */
	}

	/* Texto del pill: que no envuelva ni se achique */
	.pill_Slider_2025 {
		white-space: nowrap;
		word-break: normal;
		overflow-wrap: normal;
		flex: 0 0 auto;
		text-align: center;
		font-size: 14px; /* ajustá si necesitás un poquito menos/más */
		padding: 8px 15px;
	}

	/* Icono: tamaño chico y sin encoger */
	.pillIcon_Slider_2025 {
		width: 16px;
		height: 16px;
		flex: 0 0 auto;
	}

	/* La línea decorativa “cede” espacio primero */
	.pillLine_Slider_2025 {
		display: none;
	}
	
	


/*seccion video*/
	#hero-video-section {
		min-height: auto;
		padding-bottom: 0;
		padding-top: 0; /* opcional, según tu layout */
	}

	/* anulá el espacio vertical que agregaste con las utils (mt-5, pt-5) */
	.video-wrapper {
		margin-top: 0 !important;
		padding-top: 0 !important;
		margin-bottom: 0 !important;
		padding-bottom: 0 !important;
	}

	#hero-video {
		width: 90vw !important;
		max-width: 90vw !important;
		height: auto;
		border-radius: 18px;
	}

	.video-wrapper {
		justify-content: center;
	}
	/* Por las dudas, que no “ocupen” ni reciban transforms */
	.top-left, .bottom-left, .right-img {
		display: none !important;
		transform: none !important;
	}


	.orbit-1 {
		animation-duration: 28s;
	}

	.orbit-2 {
		animation-duration: 18s;
	}
/*Fin seccion video*/

	.LogoItem_2025 {
		width: 100px;
		height: 50px;
	}
	/*Tamaños tipograficos*/
	.footer-title.TituloGrande {
		font-size: 26px;
		line-height: 30px;
	}
	.TituloGrande {
		font-size: 32px;
		line-height: 32px;
	}

	.TituloLideraMarketing {
		font-size: 40px;
		line-height: 42px;
	}

	.TituloCard {
		font-size: 18px;
		line-height: 22px;
	}

	.Contenido {
		font-size: 12px;
		line-height: 18px;
	}

	.TextoMarcas {
		font-size: 18px;
		line-height: 22px;
	}
	.footer-container {
		border-radius: 40px 40px 0 0;
	}
	#Mega_Menu_Alto {
		max-height: 300px !important;
		overflow-y: scroll !important;
	}

	.AwardsStack {
		/*max-width: 300px;
		margin: 0 auto;*/
		display: none !important;
	}
	.AwardsImg.i1 {
		--tx: 0px;
		--ty: 0px;
		--rot: -5;
	}

	.AwardsImg.i2 {
		--tx: 16px;
		--ty: 10px;
		--rot: 3.5;
	}

	.AwardsImg.i3 {
		--tx: 22px;
		--ty: 20px;
		--rot: -2;
	}
	.s3-sticky {
		/*background: #3364ff;*/
		background: #3364FF;
		background: -webkit-linear-gradient(0deg,rgba(51, 100, 255, 1) 70%, rgba(71, 189, 223, 1) 100%);
		background: -moz-linear-gradient(0deg,rgba(51, 100, 255, 1) 70%, rgba(71, 189, 223, 1) 100%);
		background: linear-gradient(0deg,rgba(51, 100, 255, 1) 70%, rgba(71, 189, 223, 1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#3364FF", endColorstr="#47BDDF", GradientType=0 );
	}
	.AwardsSliderMobile {
		position: relative;
		width: 100%;
		max-width: 320px;
		aspect-ratio: 4 / 3;
		margin: 0 auto;
		overflow: hidden;
	}

	.Awards_Mobile {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 20px;
		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
		opacity: 0;
		transform: translateX(100%) scale(0.95);
		animation: AwardsSlideIn 12s infinite cubic-bezier(0.65, 0, 0.35, 1);
	}

		/* Stagger automático */
		.Awards_Mobile:nth-child(1) {
			animation-delay: 0s;
		}

		.Awards_Mobile:nth-child(2) {
			animation-delay: 4s;
		}

		.Awards_Mobile:nth-child(3) {
			animation-delay: 8s;
		}

	@keyframes AwardsSlideIn {
		0% {
			opacity: 0;
			transform: translateX(100%) scale(0.90);
			z-index: 1;
		}

		10% {
			opacity: 1;
			transform: translateX(0) scale(1);
			z-index: 2;
		}

		30% {
			opacity: 1;
			transform: translateX(0) scale(1);
			z-index: 3;
		}

		40% {
			opacity: 0;
			transform: translateX(-40%) scale(0.90);
			z-index: 1;
		}

		100% {
			opacity: 0;
			transform: translateX(100%) scale(0.90);
		}
	}
	language-dropdown {
		position: relative !important;
		z-index: 1051 !important;
	}

	.language-dropdown .dropdown-menu {
		position: fixed !important;
		top: 60px !important; /* ajustá según tu header */
		right: 12px !important;
		left: auto !important;
		transform: none !important;
		z-index: 9999 !important;
	}
}
@media (prefers-reduced-motion:reduce) {
	.pill {
		animation: none !important;
	}
}
	/*NAV*/
@media (max-width: 411px) {

	.TextoTelefonoHeader {
		font-size: 16px;
		line-height: 20px;
	}

}

@media (max-width: 280px) {


	.footer-main {
		padding: 1.5rem 1.5rem;
	}
}