/* Tipografía Inter global */
* {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body, html {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Megamenu Dropdown - Turbo Frames */
.megamenu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(-10px);
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	padding: 2rem;
	padding-top: 1.5rem;
	min-width: 600px;
	max-width: 800px;
	z-index: 1001;
}

.megamenu-productos {
	min-width: 1000px;
	max-width: 1200px;
}

.megamenu-recursos {
	min-width: 1100px;
	max-width: 1300px;
}

/* Turbo Frame Placeholders */
.megamenu-placeholder {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	padding: 0;
	min-width: 600px;
	max-width: 800px;
	z-index: 999;
}

.megamenu-placeholder .megamenu {
	position: relative !important;
	transform: none !important;
	display: block !important;
	width: 100% !important;
	opacity: 1 !important;
	visibility: visible !important;
	min-width: 0 !important;
}

.megamenu-loading {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	padding: 2rem;
	min-width: 600px;
	max-width: 800px;
}

.megamenu-error {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	padding: 2rem;
	min-width: 600px;
	max-width: 800px;
}

/* Asegurar que el área de hover sea continua y esté por encima */
.has-megamenu {
	position: relative;
	z-index: 999;
	height: 69.3px;
	display: flex;
	align-items: center;
}

/* Asegurar que el enlace dentro del li ocupe todo el espacio */
.has-megamenu > a {
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 1rem;
	width: 100%;
}

/* Navbar nav container para asegurar contexto de apilamiento */
.navbar-nav-landing {
	position: relative;
	z-index: 1002;
}

/* Asegurar que los items con megamenu tengan posicionamiento relativo */
.has-megamenu {
	position: relative;
}

:root {
	/* Paleta Cromática Oficial Tenavor */
	--azul-oscuro: #1E2A47;  /* Tipografía principal */
	--purpura: #7A3EB1;        /* Burbuja de conversación */
	--azul-claro: #4DA6FF;     /* Conexiones neuronales */
	--lavanda: #9C9AD0;        /* Ondas de señal */
	--blanco: #FFFFFF;           /* Fondos y contraste */
	
	/* Variables legacy para compatibilidad */
	--tenavor-red: var(--purpura);
	--tenavor-teal: var(--azul-oscuro);
	--text-dark: var(--azul-oscuro);
	--text-secondary: var(--lavanda);
	--bg-light: var(--blanco);
	
	/* Tipografía steps - base */
	--step--2: 0.72rem;
	--step--1: 0.875rem;
	--step-0: 1rem;
	--step-1: 1.25rem;
	--step-2: 1.5rem;
	--step-3: 2rem;
	--step-4: 2.5rem;
	--step-5: 3rem;
	--step-6: 4.5rem;
	
	/* Espaciado - base */
	--space-s: 1rem;
	--space-m: 1.5rem;
	--space-l: 2.5rem;
	--space-xl: 4rem;
}























@media screen and (min-width: 641px) {
	:root {
		--step--2: 0.72rem;
		--step--1: 0.875rem;
		--step-0: 1rem;
		--step-1: 1.25rem;
		--step-2: 1.5rem;
		--step-3: 2rem;
		--step-4: 2.5rem;
		--step-5: 3rem;
		--step-6: 4.5rem;
	}
}

@media screen and (min-width: 1024px) {
	:root {
		--space-s: 1.5rem;
		--space-m: 2.5rem;
		--space-l: 4rem;
		--space-xl: 8rem;
	}
}

/* custom borders for box */
.custom-border-s {
	border-radius: 0.5rem;  /* 8px - ligero */
}

.custom-border-m {
	border-radius: 1rem;    /* 16px - estándar */
}

.custom-border-l {
	border-radius: 1.5rem;  /* 24px - marcado */
}

.custom-border-xl {
	border-radius: 2rem; /* 32px - muy redondeado */
}

/* Icono logo */
.customer-logo-s {
	max-width: 100%;
	max-height: 30px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%);
	transition: filter 0.3s ease;
}

/* Navbar */
.navbar-landing {
	background: var(--blanco);
	border-bottom: 1px solid var(--lavanda);
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 1px 3px rgba(30, 42, 71, 0.05);
}

.navbar-brand-landing {
	display: flex;
	align-items: center;
	text-decoration: none;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.navbar-brand-landing .logo-navbar {
	height: 40px;
	width: auto;
	object-fit: contain;
}

.navbar-nav-landing {
	display: flex;
	list-style: none;
	gap: 2rem;
	margin: 0;
	padding: 0;
	align-items: center;
}

.navbar-nav-landing li {
	position: relative;
}

.navbar-nav-landing > li > a {
	color: var(--azul-oscuro);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.875rem;
	position: relative;
	padding: 0.5rem 0;
	transition: color 0.25s ease;
	display: inline-block;
	cursor: pointer;
}

/* Sin decoración en hover - solo cambio de color */
.navbar-nav-landing > li:hover > a {
	color: var(--purpura);
}

/* Posicionamiento para megamenu */
.navbar-nav-landing > li.has-megamenu {
	position: relative;
}

/* Megamenu Dropdown - Superpuesto para eliminar gap */
.megamenu {
	position: absolute;
	top: calc(100% - 0.5rem);
	left: 50%;
	transform: translateX(-50%) translateY(-10px);
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	padding: 2rem;
	padding-top: 1.5rem;
	min-width: 600px;
	max-width: 800px;
	z-index: 1000;
}

.megamenu-productos {
	min-width: 1000px;
	max-width: 1200px;
}

.megamenu-recursos {
	min-width: 1100px;
	max-width: 1300px;
}

.megamenu-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

/* Megamenu de Productos - 3 columnas con proporciones específicas */
.megamenu-productos .megamenu-content {
	grid-template-columns: 5fr 4fr 4fr;
	gap: 2.5rem;
}

/* Megamenu de Recursos - con card destacada */
.megamenu-recursos .megamenu-content {
	grid-template-columns: 1fr 1fr 1fr 1.5fr;
	gap: 2rem;
}

/* Card destacada en megamenu */
.megamenu-featured-card {
	background: linear-gradient(135deg, var(--purpura) 0%, var(--azul-claro) 100%);
	border-radius: 12px;
	padding: 1.5rem;
	color: var(--blanco);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	overflow: hidden;
	min-height: 300px;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.megamenu-featured-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(122, 62, 177, 0.3);
}

.megamenu-featured-card::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat;
	background-size: cover;
	opacity: 0.3;
}

.megamenu-featured-card-logo {
	height: 24px;
	width: auto;
	margin-bottom: 1rem;
	filter: brightness(0) invert(1);
	position: relative;
	z-index: 1;
	object-fit: contain;
	align-self: flex-start;
}

.megamenu-featured-card-tag {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: inline-block;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
	width: fit-content;
}

.megamenu-featured-card-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: white;
	line-height: 1.3;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.megamenu-featured-card-link {
	color: white;
	font-size: 0.875rem;
	font-weight: 600;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	z-index: 1;
	text-decoration: none;
}

.megamenu-featured-card-link:hover {
	color: white;
	text-decoration: underline;
}

/* Primera columna - Producto principal */
.megamenu-product-main {
	padding-right: 2rem;
	border-right: 1px solid #e9ecef;
}

.megamenu-product-title-large {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--azul-oscuro);
	line-height: 1.2;
	margin: 0 0 1.5rem 0;
}

.megamenu-product-description {
	font-size: 0.9375rem;
	color: var(--lavanda);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.megamenu-product-cta {
	background: var(--purpura);
	color: var(--blanco);
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

.megamenu-product-cta:hover {
	background: var(--azul-claro);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(122, 62, 177, 0.3);
	color: var(--blanco);
}

.megamenu-column {
	display: flex;
	flex-direction: column;
}

.megamenu-title {
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--azul-oscuro);
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.megamenu-link {
	color: var(--azul-oscuro);
	text-decoration: none;
	padding: 1rem;
	font-size: 0.9375rem;
	transition: all 0.2s ease;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	border-radius: 8px;
	margin-bottom: 0.5rem;
}

.megamenu-link:hover {
	background: rgba(122, 62, 177, 0.05);
	color: var(--purpura);
	text-decoration: none;
}

.megamenu-link-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-top: 2px;
}

.megamenu-link-content {
	flex: 1;
}

.megamenu-link-title {
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: var(--azul-oscuro);
}

.megamenu-link-description {
	font-size: 0.875rem;
	color: var(--lavanda);
	line-height: 1.4;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.navbar-nav-landing {
		flex-direction: column;
		gap: 1rem;
	}
	
	.megamenu {
		position: static;
		transform: none;
		opacity: 1;
		visibility: visible;
		box-shadow: none;
		background: transparent;
		padding: 1rem 0;
		min-width: auto;
		max-width: none;
	}
	
	.megamenu-productos .megamenu-content,
	.megamenu-recursos .megamenu-content {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.megamenu-product-main {
		padding-right: 0;
		border-right: none;
		border-bottom: 1px solid var(--lavanda);
		padding-bottom: 1rem;
		margin-bottom: 1rem;
	}
}





/* Tabs de navegación */
.problems-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.problems-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid #e2e8f0;
  background: white;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.problems-tab.active,
.problems-tab:hover {
  border-color: var(--hablame-red, #e63946);
  color: var(--hablame-red, #e63946);
  background: #fff5f5;
}

/* Contenedor con scroll horizontal */
.problems-container {
  position: relative;
  overflow: hidden;

}

.problems-inner {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;

}

/* Cada par problema/solución */
.problem-set {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;

}

@media (max-width: 768px) {
  .problem-set {
    grid-template-columns: 1fr;

  }
}



@media (max-width: 768px) {
  .problem-vs {
    right: auto;
    bottom: -28px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
/* Dots de navegación */
.problems-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.problems-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.problems-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--hablame-red, #e63946);
}

/* ══ PROBLEMS SLIDER — DEFINITIVO ══ */
.problems-section {
  padding: 60px 0;
}

.problems-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: #0f172a;
}

.problems-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.problems-inner {
  display: flex;
  flex-wrap: nowrap;
  width: 300%;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.problem-set {
  width: 33.3333%;
  min-width: 33.3333%;
  flex-shrink: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

/* PADDLE CARD */
.paddle-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  border: 1px solid #f1f5f9;
  box-sizing: border-box;
  width: 100%;
}

@media (max-width: 900px) {
  .paddle-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }
}

.paddle-card-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.paddle-card-text h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
}

.paddle-card-text p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.paddle-pill {
  display: inline-block;
  background: #fef3c7;
  color: #d97706;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  width: fit-content;
}

.paddle-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #e63946;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.paddle-pill-link:hover { color: #c1121f; }

.paddle-visual-box {
  background: #f8fafc;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.paddle-visual-header {
  background: #1e293b;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.paddle-visual-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.paddle-visual-dot.red    { background: #ef4444; }
.paddle-visual-dot.yellow { background: #f59e0b; }
.paddle-visual-dot.green  { background: #10b981; }

.paddle-visual-title {
  color: #94a3b8;
  font-size: 0.72rem;
  margin-left: 6px;
  font-family: monospace;
}

.paddle-visual-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.paddle-doc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 8px;
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
}

.paddle-doc-item > i { font-size: 1rem; flex-shrink: 0; }

.paddle-doc-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.paddle-doc-bar small { color: #94a3b8; font-size: 0.68rem; }

.paddle-doc-check {
  width: 20px;
  height: 20px;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 0.6rem;
  flex-shrink: 0;
}

.paddle-visual-badge {
  background: linear-gradient(135deg, #e63946, #c1121f);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  text-align: center;
  animation: hablame-pulse 2s infinite;
}

@keyframes hablame-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

/* Tabs y dots */
.problems-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.problems-tab {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid #e2e8f0;
  background: white;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}

.problems-tab.active,
.problems-tab:hover {
  border-color: #e63946;
  color: #e63946;
  background: #fff5f5;
}

.problems-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.problems-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 0.3s;
}

.problems-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #e63946;
}

/* ══ PROBLEMS FINAL FIX ══ */
.problems-section { padding: 60px 0 !important; overflow: hidden !important; }
.problems-container { overflow: hidden !important; width: 100% !important; position: relative !important; height: auto !important; }
.problems-inner { display: flex !important; flex-wrap: nowrap !important; width: 300% !important; transition: transform 0.5s ease !important; align-items: flex-start !important; }
.problem-set { width: 33.3333% !important; min-width: 33.3333% !important; flex-shrink: 0 !important; padding: 0 8px !important; box-sizing: border-box !important; }

/* ══ PRODUCTOS PAGE — estilos compartidos ══ */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e63946;
  margin-bottom: 0.75rem;
}

.filters-panel {
  border-radius: 16px;
  padding: 1.25rem;
  overflow: hidden;
}

.filters-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

.filters-panel__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.filters-panel__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f8fafc;
}

.filters-panel__row .label {
  color: #64748b;
}

.filters-panel__row .value {
  font-weight: 600;
  color: #0f172a;
}

.filters-panel__actions {
  display: flex;
  justify-content: space-between;
  padding-top: 0.75rem;
  font-size: 0.875rem;
}

.status-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.product-feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.product-feature-list li {
  padding: 0.35rem 0;
  color: #374151;
  font-size: 0.95rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.filters-hero__metrics {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.filters-hero__metrics strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.filters-hero__metrics span {
  font-size: 0.8rem;
  color: #64748b;
}

/* ══ PRODUCTS PAGE — paddle-hero y diagram-card ══ */
.paddle-hero { padding: 2rem 0; }
.paddle-hero__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; align-items: center; }
.paddle-hero__copy h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); line-height: 1.2; margin-bottom: 1rem; }
.paddle-hero__copy .lead { font-size: 1.15rem; color: #6c757d; margin-bottom: 2rem; }
.paddle-hero__copy .eyebrow { font-size: 1.0625rem; color: #6c757d; margin-bottom: 0.5rem; line-height: 1.6; }
.paddle-hero__stats { display: flex; gap: 2rem; font-size: 1rem; color: #6c757d; margin-bottom: 1rem; }
.paddle-hero__stats strong { font-size: 1.4rem; color: #212529; display: block; }
.paddle-hero__diagram { display: flex; justify-content: center; }
.diagram-card { width: min(360px, 100%); border-radius: 24px; padding: 2rem; }
.diagram-card-fondo { background: white; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); overflow: hidden; width: 100%; max-width: 500px; }
.diagram-card__header { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(254,24,37,0.3); }
.dot--active { background: #FE1825; }
.dot--dim { background: #e9ecef; }
.diagram-card__body h3 { margin-bottom: 0.5rem; font-size: 1.3rem; }
.diagram-card__body p { color: #6c757d; margin-bottom: 1.5rem; }
.diagram-card__metrics { display: flex; gap: 1.5rem; }
.diagram-card__metrics strong { display: block; font-size: 1.5rem; }
@media (max-width: 768px) { .paddle-hero__stats { flex-direction: column; } }

/* ─── Botones globales del landing ──────────────────────────────────────────── */

.btn-hero-primary {
  background: var(--tenavor-red, #FE1825);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.85rem 1.4rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-hero-primary:hover,
.btn-hero-primary:focus {
  background: #d0141f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 24, 37, 0.35);
  text-decoration: none;
}

.btn.btn-outline-secondary {
  background: transparent;
  color: var(--text-dark, #333333);
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 0.85rem 1.4rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s;
}

.btn.btn-outline-secondary:hover,
.btn.btn-outline-secondary:focus {
  background: transparent;
  border-color: var(--tenavor-teal, #2C6372);
  color: var(--tenavor-teal, #2C6372);
  text-decoration: none;
}

/* =====================================================
   Subtítulos de página principal — font-size unificado
   ===================================================== */
.hero-subtitle,
.solution-subtitle,
.different-subtitle,
.what-is-hablame-description,
.paddle-hero__copy .lead {
  font-size: 1.0625rem;
}
