/* ============================================
   SALUVEXIS — STYLES v2 LANDINGS INTERNAS
   Extiende styles-v2.css con componentes específicos
   para páginas internas (Acerca, Productos, hubs, landings).
   Se debe cargar DESPUÉS de styles-v2.css
   ============================================ */

/* PAGE HERO (más compacto que home hero) */
.v2 .page-hero {
  padding: 64px 0 80px;
  background: linear-gradient(180deg, var(--sx-blue-tint) 0%, var(--sx-white) 100%);
  position: relative;
  overflow: hidden;
}
.v2 .page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(31, 169, 232, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.v2 .page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.v2 .page-hero-content { max-width: 600px; }
.v2 .page-hero h1 {
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--sx-ink);
  margin: 0 0 20px;
}
.v2 .page-hero h1 .highlight { color: var(--sx-primary); }
.v2 .page-hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--sx-gray-700);
  margin: 0 0 32px;
}
.v2 .page-hero-image {
  aspect-ratio: 5/4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13, 63, 181, 0.18);
}
.v2 .page-hero-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* BREADCRUMB v2 */
.v2 .v2-breadcrumb {
  padding: 16px 0;
  background: var(--sx-gray-50);
  border-bottom: 1px solid var(--sx-gray-100);
}
.v2 .v2-breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--sx-gray-500);
  margin: 0; padding: 0;
}
.v2 .v2-breadcrumb a {
  color: var(--sx-primary);
  text-decoration: none;
  font-weight: 500;
}
.v2 .v2-breadcrumb a:hover { text-decoration: underline; }
.v2 .v2-breadcrumb li + li::before {
  content: '/';
  margin-right: 8px;
  color: var(--sx-gray-200);
}
.v2 .v2-breadcrumb li[aria-current] {
  color: var(--sx-gray-700);
  font-weight: 600;
}

/* CONTENT SECTION v2 */
.v2 .v2-section {
  padding: 96px 0;
  background: var(--sx-white);
}
.v2 .v2-section.alt-bg {
  background: var(--sx-gray-50);
}
.v2 .v2-section h2 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--sx-ink);
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.v2 .v2-section h2 .highlight { color: var(--sx-primary); }
.v2 .v2-section h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--sx-ink);
  margin: 32px 0 16px;
  letter-spacing: -0.01em;
}
.v2 .v2-section p {
  color: var(--sx-gray-700);
  line-height: 1.75;
  font-size: 16px;
  margin: 0 0 18px;
}
.v2 .v2-section ul {
  color: var(--sx-gray-700);
  line-height: 1.75;
  font-size: 16px;
  padding-left: 20px;
  margin: 0 0 18px;
}
.v2 .v2-section li { margin-bottom: 8px; }
.v2 .v2-section strong { color: var(--sx-primary); font-weight: 700; }

/* TWO-COLUMN SECTION */
.v2 .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.v2 .two-col-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 16px 40px rgba(13, 63, 181, 0.15);
}
.v2 .two-col-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* TIMELINE / MILESTONES */
.v2 .milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.v2 .milestone {
  background: white;
  border: 1px solid var(--sx-gray-100);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}
.v2 .milestone:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(13, 63, 181, 0.12);
  border-color: var(--sx-cyan-light);
}
.v2 .milestone-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--sx-primary), var(--sx-cyan));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(13, 63, 181, 0.25);
}
.v2 .milestone-icon svg { width: 28px; height: 28px; }
.v2 .milestone-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--sx-primary);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.v2 .milestone-label {
  font-size: 14px;
  color: var(--sx-gray-700);
  font-weight: 600;
  line-height: 1.4;
}

/* VALUE CARDS GRID */
.v2 .values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.v2 .value-card {
  background: white;
  border: 1px solid var(--sx-gray-100);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.3s;
}
.v2 .value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 63, 181, 0.12);
  border-color: var(--sx-cyan-light);
}
.v2 .value-icon {
  width: 52px;
  height: 52px;
  background: var(--sx-blue-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sx-primary);
  margin-bottom: 20px;
}
.v2 .value-icon svg { width: 26px; height: 26px; }
.v2 .value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--sx-ink);
  margin: 0 0 12px;
}
.v2 .value-card p {
  font-size: 15px;
  color: var(--sx-gray-500);
  line-height: 1.6;
  margin: 0;
}

/* CATEGORY CARDS (for products page) */
.v2 .category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.v2 .category-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--sx-gray-100);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  color: inherit;
}
.v2 .category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(13, 63, 181, 0.15);
  border-color: var(--sx-cyan-light);
}
.v2 .category-image {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--sx-blue-soft);
}
.v2 .category-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s;
}
.v2 .category-card:hover .category-image img { transform: scale(1.06); }
.v2 .category-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.v2 .category-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--sx-ink);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.v2 .category-body p {
  color: var(--sx-gray-500);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
  flex: 1;
}
.v2 .category-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sx-primary);
  font-size: 14px;
  font-weight: 700;
  transition: gap 0.2s;
}
.v2 .category-card:hover .category-link { gap: 14px; }
.v2 .category-link svg { width: 18px; height: 18px; }

/* BRAND TILES */
.v2 .brands-tile {
  background: white;
  border: 1px solid var(--sx-gray-100);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s;
}
.v2 .brands-tile:hover {
  border-color: var(--sx-cyan-light);
  background: var(--sx-blue-tint);
  transform: translateY(-2px);
}
.v2 .brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.v2 .brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--sx-primary);
  letter-spacing: -0.01em;
}

/* CTA INLINE */
.v2 .cta-inline {
  background: var(--sx-blue-soft);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 48px 0;
}
.v2 .cta-inline-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--sx-ink);
  margin: 0 0 8px;
}
.v2 .cta-inline-text p {
  color: var(--sx-gray-700);
  margin: 0;
}

/* PROCESS STEPS (for products / how it works) */
.v2 .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.v2 .process-step {
  background: white;
  border: 1px solid var(--sx-gray-100);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
}
.v2 .process-step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sx-primary), var(--sx-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 20px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(13, 63, 181, 0.25);
}
.v2 .process-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--sx-ink);
  margin: 0 0 8px;
}
.v2 .process-step p {
  font-size: 14px;
  color: var(--sx-gray-500);
  line-height: 1.5;
  margin: 0;
}

/* Mobile */
@media (max-width: 900px) {
  .v2 .page-hero-grid,
  .v2 .two-col { grid-template-columns: 1fr; gap: 48px; }
  .v2 .milestones,
  .v2 .values-grid,
  .v2 .category-grid,
  .v2 .process-grid { grid-template-columns: repeat(2, 1fr); }
  .v2 .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .v2 .cta-inline { flex-direction: column; text-align: center; }
  .v2 .v2-section { padding: 64px 0; }
}
@media (max-width: 600px) {
  .v2 .milestones,
  .v2 .values-grid,
  .v2 .category-grid,
  .v2 .process-grid,
  .v2 .brands-grid { grid-template-columns: 1fr; }
}
