/* ==========================================================================
   TECNICOELHO — DEDICATED SEO & META ADS STUDIO (INTEGRATED CORPORATE THEME)
   Isolated Stylesheet for /seo/ and page-seo.php
   Design Language: Cohesión visual con Desarrollo Web (#081120, Cyan Eléctrico #25C8FF,
                    Cobalto, Glassmorphism y tarjetas claras de alta legibilidad)
   ========================================================================== */
/* ──────────────────────────────────────────────────────────────────────────
   CAPA 2 · PÁGINA | Alcance: page-seo.php y template-seo.php (/seo)
   Enqueue: page-seo-style (Setup.php:219-233) + page-seo-style (page-seo.php)
   SOLO deltas específicos del SEO, scopeados bajo la raíz de la página.
   Lo compartido (shell, tokens, botones, badges, cards, contenedor, FAQ core,
   pillars core) vive en la Capa 0 (base.css y components/). NO re-implementar.
   ────────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Figtree:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ── Reset & CSS Variables (Armonizados con Desarrollo Web) ── */
:root {
  --seo-bg-deep: #081120;
  --seo-bg-surface: #0f1c30;
  --seo-bg-surface-elevated: #152744;
  --seo-bg-card-light: #162946;
  --seo-bg-card-clear: #1c345b;
  --seo-bg-light: #f8fafc;
  --seo-bg-linen: #f1f5f9;
  --seo-bg-sand: #e2e8f0;
  
  --seo-cyan: #25c8ff;
  --seo-cyan-hover: #0ea5e9;
  --seo-cyan-soft: rgba(37, 200, 255, 0.12);
  --seo-cyan-glow: rgba(37, 200, 255, 0.28);
  
  --seo-blue: #0284c7;
  --seo-blue-hover: #0369a1;
  --seo-blue-soft: rgba(2, 132, 199, 0.14);
  
  --seo-emerald: #10b981;
  --seo-emerald-soft: rgba(16, 185, 129, 0.12);
  
  --seo-amber: #f59e0b;
  --seo-amber-soft: rgba(245, 158, 11, 0.12);
  
  --seo-text-main: #ffffff;
  --seo-text-muted: #94a3b8;
  --seo-text-subtle: #cbd5e1;
  --seo-text-dark: #0b172a;
  --seo-text-dark-muted: #475569;
  
  --seo-border-dark: rgba(255, 255, 255, 0.1);
  --seo-border-dark-hover: rgba(37, 200, 255, 0.4);
  --seo-border-card: rgba(37, 200, 255, 0.2);
  --seo-border-light: #e2e8f0;
  
  --seo-font-sans: 'Figtree', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --seo-font-display: 'Figtree', system-ui, -apple-system, sans-serif;
  --seo-font-mono: 'JetBrains Mono', 'Courier New', monospace;
  
  --seo-ease-out: var(--tc-ease);
  --seo-radius-pill: var(--tc-radius-pill);
  --seo-radius-band: clamp(32px, 5vw, 56px);
  --seo-radius-card: 20px;
}

/* [refactor] Shell oscuro de página consolidado en la Capa 0 (base.css + home.css).
   Se elimina la re-implementación local para evitar fragmentación. */

/* Bypass default theme wrappers completely */
.page-template-page-seo .standard-page-container,
.page-template-template-seo .standard-page-container,
.page-template-page-seo .standard-page-glass-card,
.page-template-template-seo .standard-page-glass-card {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.seo-page-experience {
  width: 100%;
  position: relative;
  background-color: var(--seo-bg-deep);
  color: var(--seo-text-main);
  overflow-x: clip;
}

/* ── Layout Constraints ── */
.seo-wrap {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  box-sizing: border-box;
}

.seo-wrap-narrow {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  box-sizing: border-box;
}

/* ── Fluid Viewport Containers & Balanced Subtitles ── */
.tc-wide-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(24px, 4.5vw, 56px);
  box-sizing: border-box;
}

.tc-section-subtitle-fluid {
  max-width: 1000px;
  margin: 0 auto;
  color: var(--seo-text-muted);
  font-size: 1.08rem;
  line-height: 1.6;
  text-wrap: balance;
}

/* ── Text Alignment Utilities & Universal Section Badges/Subtitles ── */
.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.tc-badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 9999px;
  margin-bottom: 12px;
}

.text-center > .tc-badge-pill {
  margin-inline: auto !important;
}

.text-left > .tc-badge-pill {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.text-center > .tc-section-subtitle-fluid {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.text-left > .tc-section-subtitle-fluid {
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left !important;
}
/* [purga refactor] Legacy del template SEO viejo eliminado: seo-serif-italic, seo-mono-tag, seo-nav, seo-hero y seo-hero-* , seo-btn, seo-hero-stats, seo-marquee, seo-band, seo-chapter, seo-audit, seo-pill-feature, seo-flip, seo-card, seo-code-block, seo-pagespeed, seo-gauge, seo-cwv, seo-stack, seo-visual, seo-matrix, seo-hook, seo-phone, seo-reel, seo-sound, seo-cta-section, seo-traffic-dot, seo-check-ok y keyframes seoMarqueeScroll/seoSoundPulse. Sin markup en view-seo.php. */

.seo-cta-button-huge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #0284c7 0%, #25c8ff 100%);
  color: #050b14 !important;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 20px 48px;
  border-radius: var(--seo-radius-pill);
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(37, 200, 255, 0.35);
  transition: all 0.35s var(--seo-ease-out);
}

.seo-cta-button-huge:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(37, 200, 255, 0.55);
  color: #050b14 !important;
}

.seo-guarantee-note {
  display: block;
  font-family: var(--seo-font-mono);
  font-size: 0.8rem;
  color: var(--seo-text-muted);
  margin-top: 24px;
  letter-spacing: 0.04em;
}

/* [purga refactor] Legacy SEO eliminado: seo-floating-pill, seo-pill-link, seo-footer*, DLG-HYBRID reveal/stars (seo-bg-star, seo-reveal-*, seo-chapter-reveal), transiciones de cards muertas y @keyframes seoFloatStar. */

/* ── Diagonal Showcase Backgrounds (Casos Reales Activos) ── */
.tc-seo-case-bg-1 {
  background: radial-gradient(circle at 30% 20%, rgba(37, 200, 255, 0.45), transparent 60%),
              linear-gradient(135deg, #0d274c 0%, #081120 100%);
  background-size: cover;
}

.tc-seo-case-bg-2 {
  background: radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.4), transparent 60%),
              linear-gradient(135deg, #093325 0%, #081120 100%);
  background-size: cover;
}

.tc-seo-case-bg-3 {
  background: radial-gradient(circle at 30% 20%, rgba(37, 200, 255, 0.3), rgba(168, 85, 247, 0.25) 50%, transparent 80%),
              linear-gradient(135deg, #151c38 0%, #081120 100%);
  background-size: cover;
}

/* ── Estructura de Grilla & Sección de Precios Adaptada ── */
.seo-matrix-section {
  padding: 80px 0;
  position: relative;
  background: rgba(8, 17, 32, 0.5);
}

.tc-view-seo-page-root .tc-plans-header {
  margin-bottom: 48px;
}

/* ── 3 Pilares Especializados (SEO, Meta Ads, Contenido) ── */
.tc-pillars-section {
  padding: 70px 0;
  position: relative;
}
.tc-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  margin-top: 36px;
  width: 100%;
}
.tc-pillar-card {
  background: rgba(15, 28, 48, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: clamp(32px, 3vw, 44px) clamp(28px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}
.tc-pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 200, 255, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}
.tc-pillar-header {
  margin-bottom: 16px;
}
.tc-pillar-badge {
  display: inline-block;
  font-family: var(--seo-font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--seo-cyan);
  margin-bottom: 12px;
}
.tc-pillar-title {
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  margin: 0 0 12px 0;
}
.tc-pillar-desc {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--seo-text-muted);
  margin: 0 0 18px 0;
}
.tc-pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.tc-pillar-tag {
  font-family: var(--seo-font-mono);
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(37, 200, 255, 0.08);
  border: 1px solid rgba(37, 200, 255, 0.18);
  color: #cbd5e1;
}
.tc-pillar-microcopy {
  font-size: 0.84rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0 0 20px 0;
  border-left: 2px solid rgba(37, 200, 255, 0.4);
  padding-left: 10px;
}
.tc-pillar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(37, 200, 255, 0.1);
  color: var(--seo-cyan);
  border: 1px solid rgba(37, 200, 255, 0.25);
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.tc-pillar-btn:hover {
  background: var(--seo-cyan);
  color: #050b14;
}

/* ── Diferenciación (4 Pasos) ── */
.tc-diff-section {
  min-height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  position: relative;
  box-sizing: border-box;
}

.tc-diff-section .tc-wide-container {
  width: 100%;
}
.tc-diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 36px 0 28px 0;
}
.tc-diff-card {
  background: rgba(15, 28, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 20px;
  transition: all 0.25s ease;
}
.tc-diff-card:hover {
  border-color: rgba(37, 200, 255, 0.3);
  transform: translateY(-2px);
}
.tc-diff-num {
  font-family: var(--seo-font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--seo-cyan);
  margin-bottom: 8px;
}
.tc-diff-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
}
.tc-diff-text {
  font-size: 0.88rem;
  color: var(--seo-text-muted);
  line-height: 1.55;
  margin: 0;
}
.tc-diff-brand-callout {
  text-align: center;
  margin-top: 24px;
  padding: 16px 24px;
  border-radius: 12px;
  background: rgba(37, 200, 255, 0.06);
  border: 1px solid rgba(37, 200, 255, 0.15);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

/* ── Comparador / Decisión (Empieza por el problema, no por el plan) ── */
.tc-decision-section {
  padding: 60px 0 80px 0;
  margin: 0 5% 0 5%;
  position: relative;
}
.tc-decision-card {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  background: rgba(15, 28, 48, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: clamp(36px, 4.5vw, 56px) clamp(28px, 4.5vw, 56px);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-sizing: border-box;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.6);
}
.tc-decision-header {
  text-align: center !important;
  margin-bottom: 24px;
}
.tc-decision-header .tc-badge-pill {
  display: inline-flex !important;
  margin-inline: auto !important;
}
.tc-decision-header h2,
.tc-decision-header #decision-title {
  text-align: center !important;
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  margin: 14px auto 10px auto !important;
  letter-spacing: -0.02em;
}
.tc-decision-header p,
.tc-decision-header .tc-section-subtitle-fluid {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 1.05rem;
  color: var(--seo-text-muted);
  line-height: 1.6;
}
.tc-decision-table-wrap {
  overflow-x: auto;
  margin: 28px 0;
}
.tc-decision-table {
  width: 100%;
  border-collapse: collapse;
}
.tc-decision-table th,
.tc-decision-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.tc-decision-table th {
  font-family: var(--seo-font-mono);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--seo-cyan);
  font-weight: 700;
  background: rgba(8, 17, 32, 0.55);
}
.tc-decision-table td {
  font-size: 1.02rem;
  color: #cbd5e1;
}
.tc-col-situation strong {
  font-size: 1.15rem;
  color: #ffffff;
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}
.tc-col-situation span {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #94a3b8;
}
.tc-col-need {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #f1f5f9;
}
.tc-decision-table tr:hover td {
  background: rgba(37, 200, 255, 0.05);
}
.tc-decision-table tr:last-child td {
  border-bottom: none;
}
.tc-decision-plan-link {
  color: var(--seo-cyan);
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 200, 255, 0.08);
  border: 1px solid rgba(37, 200, 255, 0.25);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.tc-decision-plan-link:hover {
  background: rgba(37, 200, 255, 0.16);
  border-color: var(--seo-cyan);
  color: #ffffff;
  text-decoration: none;
  transform: translateX(2px);
}
.tc-decision-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  text-align: center;
}

/* ── Transparencia ("Sin letra pequeña: Lo que sí podemos prometerte") ── */
.tc-transparency-section {
  width: 100%;
  max-width: min(94vw, 1720px);
  margin: 0 auto;
  padding: 80px clamp(24px, 4.5vw, 56px);
  position: relative;
  box-sizing: border-box;
}
.tc-transparency-header {
  text-align: left !important;
}
.tc-transparency-header .tc-badge-pill {
  display: inline-flex !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}
.tc-transparency-header h2,
.tc-transparency-header #transparency-title {
  text-align: left !important;
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  margin: 14px 0 10px 0 !important;
  letter-spacing: -0.02em;
}
.tc-transparency-header p,
.tc-transparency-header .tc-section-subtitle-fluid {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  font-size: 1.05rem;
  color: var(--seo-text-muted);
  line-height: 1.6;
}
.tc-transparency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin: 40px auto 36px auto;
  width: 100%;
}
.tc-transparency-card {
  background: rgba(15, 28, 48, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 26px;
  transition: all 0.28s ease;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tc-transparency-card:hover {
  border-color: rgba(16, 185, 129, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px -8px rgba(0, 0, 0, 0.6);
}
.tc-transparency-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.tc-transparency-icon {
  color: var(--seo-emerald);
  display: flex;
  align-items: center;
}
.tc-transparency-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.tc-transparency-desc {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #cbd5e1;
  margin: 0;
}
.tc-transparency-quote {
  background: rgba(8, 17, 32, 0.85);
  border-left: 4px solid var(--seo-cyan);
  padding: 24px 36px;
  border-radius: 0 16px 16px 0;
  margin-top: 36px;
  font-size: 1.18rem;
  color: #ffffff;
  line-height: 1.65;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── FAQ Section (Preguntas frecuentes — Título Centralizado) ── */
.tc-faq-section {
  padding: 80px 0;
  position: relative;
}
.tc-faq-header {
  text-align: center !important;
  max-width: 1200px;
  margin: 0 auto 36px auto !important;
}
.tc-faq-header .tc-badge-pill {
  margin-inline: auto !important;
}
.tc-faq-header h2,
.tc-faq-header #faq-title {
  text-align: center !important;
  margin: 14px auto 10px auto !important;
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.tc-faq-header p {
  text-align: center !important;
  margin: 0 auto !important;
  font-size: 1.05rem;
  color: var(--seo-text-muted);
  line-height: 1.6;
}
.tc-faq-accordion {
  max-width: 1200px;
  margin: 40px auto 0 auto;
}
.tc-faq-item {
  background: rgba(12, 24, 44, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.tc-faq-item.open {
  border-color: var(--seo-cyan);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}
.tc-faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--seo-font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.tc-faq-chevron {
  transition: transform 0.3s ease;
  color: var(--seo-cyan);
  flex-shrink: 0;
}
.tc-faq-item.open .tc-faq-chevron {
  transform: rotate(180deg);
}
.tc-faq-answer {
  padding: 0 24px 22px 24px;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 16px;
}
.tc-faq-answer p {
  margin: 0;
}

/* ── Mobile Responsiveness for added sections ── */
@media (max-width: 1023px) {
  .tc-diff-section {
    min-height: auto;
  }
  .tc-pillars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tc-diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tc-transparency-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .tc-enterprise-arch-section .tc-arch-tier .tc-tier-num {
    display: none !important;
  }

  .tc-enterprise-arch-section .tc-arch-tier {
    grid-template-columns: minmax(0, 1fr);
  }

  .tc-diff-grid {
    grid-template-columns: 1fr;
  }
  .tc-transparency-grid {
    grid-template-columns: 1fr;
  }
  .tc-decision-card {
    padding: 24px 16px;
  }
  .tc-decision-table th,
  .tc-decision-table td {
    padding: 12px 10px;
    font-size: 0.86rem;
  }
}

/* Responsive proportion for FAQ triggers (avoid inflated height on narrow screens) */
@media (max-width: 768px) {
  .tc-faq-trigger {
    padding: 14px 18px;
    gap: 12px;
    font-size: 0.95rem;
  }
  .tc-faq-answer {
    padding: 16px 18px 18px 18px;
  }
}

@media (max-width: 1023px) {
  .seo-day-btn {
    min-height: 44px;
  }
}

/* ── Sección 13: Equipo Directo (Brian Baloa & Monica Coelho con Fotos) ── */
.tc-team-section {
  padding: 80px 0;
  position: relative;
}
.tc-team-section .section-title {
  text-align: center !important;
  margin-bottom: 40px;
}
.tc-team-section .tc-badge-pill {
  display: inline-flex !important;
  margin-inline: auto !important;
}
.tc-team-section #team-title {
  text-align: center !important;
  margin: 14px auto 12px auto !important;
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.tc-team-section .tc-section-subtitle-fluid {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.tc-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 40px auto 32px auto;
  width: 100%;
  max-width: 100%;
}
.tc-team-card {
  background: rgba(15, 28, 48, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 38px 34px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}
.tc-team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 200, 255, 0.4);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}
.tc-team-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.tc-team-photo-container {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--seo-cyan);
  box-shadow: 0 0 18px rgba(37, 200, 255, 0.35);
  flex-shrink: 0;
  background: #0b1c34;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tc-team-photo-container.tc-photo-monica {
  border-color: #21D6A3;
  box-shadow: 0 0 18px rgba(33, 214, 163, 0.35);
  background: #0b241e;
}
.tc-team-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tc-team-meta-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tc-team-name {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
}
.tc-team-avatar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(37, 200, 255, 0.08);
  border: 1px solid rgba(37, 200, 255, 0.25);
  color: var(--seo-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tc-team-role-tag {
  display: block;
  font-family: var(--seo-font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--seo-cyan);
  margin-bottom: 4px;
}
.tc-team-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}
.tc-team-skills-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tc-team-skill-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.5;
}
.tc-team-skill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--seo-cyan);
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--seo-cyan);
}
.tc-team-closing {
  max-width: 820px;
  margin: 36px auto 0 auto;
  text-align: center;
  padding: 20px 28px;
  background: rgba(37, 200, 255, 0.05);
  border: 1px solid rgba(37, 200, 255, 0.16);
  border-radius: 14px;
}
.tc-team-closing p {
  margin: 0;
  font-size: 1.02rem;
  color: #f1f5f9;
  font-weight: 500;
  line-height: 1.6;
}

/* ── Sección 16: Servicios Puntuales ── */
.tc-puntuales-section {
  padding: 80px 0;
  position: relative;
  background: rgba(8, 17, 32, 0.4);
}
.tc-puntuales-section .section-title {
  text-align: center !important;
  margin-bottom: 40px;
}
.tc-puntuales-section .tc-badge-pill {
  display: inline-flex !important;
  margin-inline: auto !important;
}
.tc-puntuales-section #puntuales-title {
  text-align: center !important;
  margin: 14px auto 12px auto !important;
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.tc-puntuales-section .tc-section-subtitle-fluid {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.tc-puntuales-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0 32px 0;
}
.tc-puntual-card {
  background: rgba(15, 28, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
}
.tc-puntual-card:hover {
  border-color: rgba(37, 200, 255, 0.35);
  transform: translateY(-2px);
  background: rgba(21, 39, 68, 0.6);
}
.tc-puntual-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(37, 200, 255, 0.08);
  border: 1px solid rgba(37, 200, 255, 0.2);
  color: var(--seo-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.tc-puntual-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.3;
}
.tc-puntual-desc {
  font-size: 0.88rem;
  color: var(--seo-text-muted);
  line-height: 1.5;
  margin: 0 0 16px 0;
}
.tc-puntual-footer {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tc-puntual-tag {
  font-family: var(--seo-font-mono);
  font-size: 0.78rem;
  color: var(--seo-cyan);
  font-weight: 600;
}
.tc-puntual-action {
  font-size: 0.85rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}
.tc-puntual-action:hover {
  color: var(--seo-cyan);
}

/* ── Progressive Disclosure en Pilares Técnicos ── */
.tc-seo-details-toggle {
  background: none;
  border: 1px dashed rgba(37, 200, 255, 0.35);
  border-radius: 10px;
  padding: 10px 16px;
  color: var(--seo-cyan);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  transition: all 0.2s ease;
}
.tc-seo-details-toggle:hover {
  background: rgba(37, 200, 255, 0.08);
  border-color: var(--seo-cyan);
}
.tc-seo-details-collapsible {
  margin-top: 12px;
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(8, 17, 32, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.tc-seo-details-collapsible ul {
  margin: 0;
  padding-left: 20px;
  color: #cbd5e1;
  font-size: 0.88rem;
  line-height: 1.7;
}

@media (max-width: 1023px) {
  .tc-team-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .tc-puntuales-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .tc-puntuales-grid {
    grid-template-columns: 1fr;
  }
  .tc-team-card {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   SECCIÓN 07: DIGITAL SYNERGY ENGINE (WEB + SEO + META ADS) — DLG-EXEC
   ========================================================================== */
.tc-synergy-pt-wrapper {
  position: relative;
  width: 100%;
  margin: clamp(40px, 6vw, 72px) 0;
}

.tc-seo-synergy-section {
  position: relative;
  width: 100%;
  max-width: min(94vw, 1720px);
  margin: clamp(40px, 5vw, 70px) auto;
  padding: clamp(48px, 5vw, 72px) clamp(28px, 4vw, 56px);
  border-radius: 28px;
  background: radial-gradient(120% 120% at 20% 0%, #0c1e3a 0%, #050b16 100%);
  border: 1px solid rgba(37, 200, 255, 0.22);
  box-shadow: 0 28px 70px -16px rgba(0, 0, 0, 0.82), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-sizing: border-box;
}

.tc-seo-synergy-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 20%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(37, 200, 255, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.tc-seo-synergy-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Columna Izquierda: Estrategia y Pilares */
.tc-seo-synergy-main-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.tc-synergy-badge-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.tc-synergy-sub-badge {
  font-family: var(--seo-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--seo-cyan);
  letter-spacing: 0.08em;
  background: rgba(37, 200, 255, 0.08);
  border: 1px solid rgba(37, 200, 255, 0.25);
  padding: 3px 10px;
  border-radius: var(--seo-radius-pill);
  text-transform: uppercase;
}

.tc-synergy-title {
  font-family: var(--seo-font-display, 'Figtree', sans-serif);
  font-size: clamp(2.2rem, 3.2vw, 2.9rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  margin: 0 0 20px 0;
  letter-spacing: -0.025em;
  max-width: 100%;
}

.tc-synergy-lead {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--seo-text-muted);
  margin: 0 0 26px 0;
}

.tc-synergy-lead p {
  margin: 0 0 10px 0;
}

.tc-synergy-lead-highlight {
  color: #f8fafc !important;
  font-weight: 600 !important;
  margin-top: 14px !important;
  margin-bottom: 0 !important;
  padding-left: 12px;
  border-left: 2px solid var(--seo-cyan);
}

/* Bento Reticulado de 3 Pilares */
.tc-synergy-bento-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 24px;
}

.tc-synergy-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(15, 28, 48, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.28s var(--seo-ease-out);
  box-sizing: border-box;
}

.tc-synergy-card:hover {
  background: rgba(20, 36, 62, 0.88);
  border-color: rgba(37, 200, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.tc-synergy-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.tc-synergy-card-icon.tc-icon-cyan {
  background: rgba(37, 200, 255, 0.12);
  border: 1px solid rgba(37, 200, 255, 0.3);
  color: #25c8ff;
}

.tc-synergy-card-icon.tc-icon-emerald {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.tc-synergy-card-icon.tc-icon-indigo {
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #818cf8;
}

.tc-synergy-card-body {
  flex: 1;
}

.tc-synergy-card-body h3 {
  font-family: var(--seo-font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.tc-synergy-card-body p {
  font-size: 0.84rem;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0 0 8px 0;
}

.tc-synergy-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tc-synergy-card-tags span {
  font-family: var(--seo-font-mono);
  font-size: 0.7rem;
  color: var(--seo-cyan);
  background: rgba(37, 200, 255, 0.06);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid rgba(37, 200, 255, 0.15);
}

/* Callout de Criterio */
.tc-synergy-criterio-callout {
  position: relative;
  background: rgba(37, 200, 255, 0.06);
  border: 1px solid rgba(37, 200, 255, 0.22);
  border-left: 3px solid var(--seo-cyan);
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

.tc-synergy-criterio-callout p {
  margin: 0;
  font-size: 0.9rem;
  color: #e2e8f0;
  line-height: 1.55;
}

.tc-synergy-criterio-callout strong {
  color: #ffffff;
}

/* Columna Derecha: Consola de Sinergia */
.tc-seo-synergy-console-col {
  width: 100%;
  display: flex;
  justify-content: center;
}

.tc-synergy-window {
  width: 100%;
  max-width: 580px;
  background: rgba(8, 17, 32, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(37, 200, 255, 0.28);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 56px -12px rgba(0, 0, 0, 0.85), 0 0 32px rgba(37, 200, 255, 0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.tc-synergy-window:hover {
  border-color: rgba(37, 200, 255, 0.42);
  box-shadow: 0 28px 64px -12px rgba(0, 0, 0, 0.9), 0 0 40px rgba(37, 200, 255, 0.18);
}

.tc-synergy-window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: rgba(14, 25, 46, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tc-synergy-window-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--seo-font-mono);
  font-size: 0.74rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tc-synergy-window-title svg {
  color: var(--seo-cyan);
}

.tc-synergy-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--seo-font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: #10b981;
  letter-spacing: 0.04em;
}

.tc-synergy-canvas-stage {
  position: relative;
  width: 100%;
  height: 350px;
  background: radial-gradient(ellipse at 50% 50%, rgba(12, 28, 52, 0.9) 0%, rgba(4, 10, 20, 0.98) 100%);
  overflow: hidden;
}

.canvas-seo-synergy {
  width: 100%;
  height: 100%;
  display: block;
  cursor: crosshair;
}

/* Tooltip Dinámico de la Consola */
.tc-synergy-tooltip {
  position: absolute;
  bottom: 12px;
  left: 16px;
  right: 16px;
  pointer-events: none;
  background: rgba(14, 25, 46, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(37, 200, 255, 0.4);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 10;
}

.tc-tooltip-title {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--seo-cyan);
  margin-bottom: 2px;
}

.tc-tooltip-desc {
  display: block;
  font-size: 0.76rem;
  color: #cbd5e1;
  line-height: 1.45;
}

/* Dock Integrado de Telemetría Ejecutiva */
.tc-synergy-telemetry-dock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tc-synergy-metric {
  background: rgba(8, 17, 32, 0.92);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tc-metric-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.tc-metric-num {
  font-family: var(--seo-font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.tc-metric-status {
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.tc-status-green {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.tc-status-cyan {
  background: rgba(37, 200, 255, 0.15);
  color: #25c8ff;
}

.tc-status-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.tc-metric-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.2;
}

.tc-metric-desc {
  font-size: 0.7rem;
  color: #94a3b8;
  line-height: 1.3;
}

/* Footer de Stack Tecnológico Conectado */
.tc-synergy-tech-footer {
  padding: 12px 16px;
  background: rgba(6, 13, 24, 0.95);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tc-tech-footer-label {
  font-size: 0.7rem;
  font-family: var(--seo-font-mono);
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tc-tech-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tc-tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.75rem;
  font-weight: 600;
  color: #cbd5e1;
  transition: all 0.2s ease;
  cursor: default;
}

.tc-tech-pill:hover {
  border-color: rgba(37, 200, 255, 0.4);
  color: #ffffff;
  background: rgba(37, 200, 255, 0.08);
  transform: translateY(-1px);
}

/* Responsividad Sinergia */
@media (max-width: 1024px) {
  .tc-seo-synergy-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tc-seo-synergy-console-col {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  /* The sticky navbar already occupies document flow on touch layouts. */
  .page-template-page-seo .tc-main-content,
  .tc-page-seo .tc-main-content {
    margin-top: 0;
  }

  .tc-seo-synergy-section {
    padding: 28px 16px;
  }
  .tc-seo-synergy-layout {
    gap: 24px;
  }
  .tc-synergy-telemetry-dock {
    grid-template-columns: 1fr;
  }
  .tc-synergy-workflow-dock {
    grid-template-columns: 1fr;
  }
  .tc-synergy-card {
    padding: 14px 16px;
  }
  .tc-synergy-canvas-stage {
    height: clamp(260px, 68vw, 300px);
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  /* Avoid duplicating the sticky navbar height above the SEO content. */
  .page-template-page-seo .tc-main-content,
  .tc-page-seo .tc-main-content {
    margin-top: 0;
  }
}

/* ==========================================================================
   PUNTO 2: SECCIÓN DEDICADA & ESPACIOSA "CUATRO COSAS QUE NO NEGOCIAMOS"
   ========================================================================== */
.tc-non-negotiables-section {
  min-height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(37, 200, 255, 0.04) 0%, transparent 70%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-sizing: border-box;
}

.tc-non-negotiables-section .tc-wide-container {
  width: 100%;
}

.tc-non-negotiables-section .section-title {
  text-align: left !important;
}

.tc-non-negotiables-section .tc-badge-pill {
  display: inline-flex !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.tc-non-negotiables-section h2 {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.tc-non-negotiables-section .tc-section-subtitle-fluid {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.tc-non-negotiables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 28px);
  width: 100%;
}

.tc-non-negotiable-card {
  background: rgba(14, 25, 46, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: clamp(32px, 2.5vw, 40px) clamp(22px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.tc-non-negotiable-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 200, 255, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tc-non-negotiable-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 200, 255, 0.35);
  background: rgba(16, 30, 56, 0.85);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(37, 200, 255, 0.12);
}

.tc-non-negotiable-card:hover::before {
  opacity: 1;
}

.tc-non-neg-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.tc-non-neg-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(37, 200, 255, 0.1);
  border: 1px solid rgba(37, 200, 255, 0.25);
  color: var(--seo-cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tc-non-neg-index {
  font-family: var(--seo-font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
}

.tc-non-neg-badge {
  display: inline-block;
  font-family: var(--seo-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #21D6A3;
  margin-bottom: 10px;
}

.tc-non-neg-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.tc-non-neg-desc {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 1100px) {
  .tc-non-negotiables-section {
    min-height: auto;
    padding: 60px 0;
  }
  .tc-non-negotiables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tc-non-negotiables-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PUNTO 3: DOCK DE FLUJO REAL & GRID HORIZONTAL DE SINERGIA
   ========================================================================== */
.tc-synergy-workflow-dock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tc-synergy-step-item {
  background: rgba(8, 17, 32, 0.94);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.2s ease;
}

.tc-synergy-step-item:hover {
  background: rgba(14, 28, 52, 0.95);
}

.tc-synergy-step-item.tc-step-highlight {
  background: rgba(16, 185, 129, 0.07);
  border-top: 2px solid rgba(16, 185, 129, 0.7);
}

.tc-synergy-step-item.tc-step-highlight:hover {
  background: rgba(16, 185, 129, 0.12);
}

.tc-text-emerald {
  color: #10b981 !important;
}

.tc-step-num {
  font-family: var(--seo-font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--seo-cyan);
  letter-spacing: 0.05em;
}

.tc-step-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
}

.tc-step-desc {
  font-size: 0.76rem;
  color: #94a3b8;
  line-height: 1.4;
}

.tc-synergy-horizontal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.tc-synergy-horizontal-grid .tc-synergy-card {
  background: rgba(14, 25, 46, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  gap: 18px;
  transition: all 0.25s ease;
}

.tc-synergy-horizontal-grid .tc-synergy-card:hover {
  border-color: rgba(37, 200, 255, 0.35);
  background: rgba(18, 32, 60, 0.8);
  transform: translateY(-2px);
}

.tc-synergy-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tc-icon-cyan {
  background: rgba(37, 200, 255, 0.12);
  color: var(--seo-cyan);
}

.tc-icon-emerald {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.tc-icon-indigo {
  background: rgba(99, 102, 241, 0.12);
  color: #818cf8;
}

.tc-synergy-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.tc-synergy-card-body p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.55;
  margin: 0 0 14px 0;
}

.tc-synergy-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tc-synergy-card-tags span {
  font-family: var(--seo-font-mono);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 960px) {
  .tc-synergy-horizontal-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PUNTO 4: DIFERENCIACIÓN (TÍTULO CENTRADO, CHIPS HORIZONTALES & TARJETAS AMPLIAS)
   ========================================================================== */
.tc-diff-section .section-title {
  text-align: center !important;
}

.tc-diff-section .section-title .tc-badge-pill {
  display: inline-flex !important;
  margin-inline: auto !important;
}

.tc-diff-centered-title {
  text-align: center !important;
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-top: 14px;
  margin-bottom: 18px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.tc-diff-section .tc-section-subtitle-fluid {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.tc-diff-compact-intro {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.tc-diff-grid-enlarged {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: 40px;
  width: 100%;
}

.tc-diff-card-enlarged {
  background: rgba(14, 25, 46, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: clamp(32px, 2.5vw, 42px) clamp(22px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.tc-diff-card-enlarged:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 200, 255, 0.35);
  background: rgba(17, 32, 60, 0.9);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45), 0 0 24px rgba(37, 200, 255, 0.1);
}

.tc-diff-card-enlarged .tc-diff-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.tc-diff-card-enlarged .tc-diff-num {
  font-family: var(--seo-font-mono);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--seo-cyan);
}

.tc-diff-card-enlarged .tc-diff-step-tag {
  font-family: var(--seo-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(37, 200, 255, 0.1);
  color: var(--seo-cyan);
  border: 1px solid rgba(37, 200, 255, 0.2);
}

.tc-diff-card-enlarged .tc-diff-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.tc-diff-card-enlarged .tc-diff-text {
  font-size: 0.98rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 1100px) {
  .tc-diff-grid-enlarged {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tc-diff-grid-enlarged {
    grid-template-columns: 1fr;
  }
}

/* Final mobile density pass: keep the page gutter separate from card padding. */
@media (max-width: 1023px) {
  /* Keep the explicit page gutter without the implicit 94vw gutter. */
  .tc-wide-container {
    max-width: 100%;
    padding-inline: 20px;
  }
  /* The surface owns its internal spacing; do not add a second page gutter. */
  .tc-seo-synergy-section > .tc-wide-container {
    padding-inline: 0;
  }

  .tc-non-negotiable-card {
    padding: 24px 20px;
  }

  .tc-diff-card-enlarged {
    padding: 28px 20px;
  }
}

@media (max-width: 640px) {
  .tc-wide-container {
    padding-inline: 16px;
  }

  .tc-decision-footer > .primary-btn,
  .tc-contact-card .seo-cta-button-huge {
    display: flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .seo-btn-primary,
  .seo-btn-secondary {
    min-height: 44px;
    padding-block: 12px;
    padding-inline: 20px;
    line-height: 1.2;
  }

  .tc-non-negotiables-section {
    padding-block: 56px;
  }

  .tc-non-negotiables-section .section-title {
    margin-bottom: 28px !important;
  }

  .tc-non-negotiable-card,
  .tc-diff-card-enlarged {
    padding: 20px 18px;
  }

  .tc-team-card {
    padding: 20px 18px;
  }
}

/* ==========================================================================
   PUNTO 6: ALTO CONTRASTE Y TAMAÑO DE TEXTO EN "CÓMO TRABAJAMOS" (.tc-enterprise-arch-section)
   ========================================================================== */
.tc-enterprise-arch-section {
  background: radial-gradient(120% 120% at 30% 0%, #0c1c36 0%, #050b14 100%) !important;
  border: 1px solid rgba(37, 200, 255, 0.22) !important;
  box-shadow: 0 24px 64px -18px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
}

.tc-enterprise-arch-section .tc-arch-eyebrow {
  color: var(--seo-cyan, #25C8FF) !important;
}

.tc-enterprise-arch-section .tc-arch-title {
  color: #ffffff !important;
}

.tc-enterprise-arch-section .tc-arch-board-card,
.tc-enterprise-arch-section .tc-arch-results-card {
  background: rgba(12, 24, 44, 0.85) !important;
  border: 1px solid rgba(37, 200, 255, 0.22) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

.tc-enterprise-arch-section .tc-board-header,
.tc-enterprise-arch-section .tc-results-card-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.tc-enterprise-arch-section .tc-board-badge,
.tc-enterprise-arch-section .tc-results-eyebrow {
  color: var(--seo-cyan, #25C8FF) !important;
}

.tc-enterprise-arch-section .tc-tier-num {
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  color: var(--seo-cyan, #25C8FF) !important;
}

.tc-enterprise-arch-section .tc-tier-title {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 6px !important;
}

.tc-enterprise-arch-section .tc-tier-stack span {
  font-size: 0.92rem !important;
  color: #cbd5e1 !important;
  line-height: 1.5 !important;
}

.tc-enterprise-arch-section .tc-node-label {
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  color: #e2e8f0 !important;
}

.tc-enterprise-arch-section .tc-node-icon {
  background: rgba(15, 28, 52, 0.95) !important;
  border: 1px solid rgba(37, 200, 255, 0.3) !important;
  color: var(--seo-cyan, #25C8FF) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4) !important;
}

.tc-enterprise-arch-section .tc-results-title {
  font-size: 1.45rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
}

.tc-enterprise-arch-section .tc-results-desc {
  font-size: 1rem !important;
  color: #94a3b8 !important;
  line-height: 1.6 !important;
}

.tc-enterprise-arch-section .tc-check-icon {
  background: rgba(37, 200, 255, 0.12) !important;
  border: 1px solid rgba(37, 200, 255, 0.28) !important;
  color: var(--seo-cyan, #25C8FF) !important;
}

.tc-enterprise-arch-section .tc-check-content strong {
  font-size: 1.05rem !important;
  color: #ffffff !important;
  display: block;
  margin-bottom: 4px;
}

.tc-enterprise-arch-section .tc-check-content span {
  font-size: 0.95rem !important;
  color: #cbd5e1 !important;
  line-height: 1.6 !important;
}

/* Keep the methodology surface flat on small screens; the steps provide the hierarchy. */
@media (max-width: 640px) {
  .tc-enterprise-arch-section {
    padding: 32px 0 !important;
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    box-shadow: none !important;
  }

  .tc-enterprise-arch-section > .tc-container {
    padding-inline: 16px;
  }

  .tc-enterprise-arch-section .tc-arch-board-card,
  .tc-enterprise-arch-section .tc-arch-results-card {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .tc-enterprise-arch-section .tc-arch-tiers-row,
  .tc-enterprise-arch-section .tc-arch-tiers-row.tc-arch-5tiers {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  .tc-enterprise-arch-section .tc-arch-nodes-flow,
  .tc-enterprise-arch-section .tc-arch-nodes-flow.tc-arch-5nodes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
    padding-inline: 8px;
  }

  .tc-enterprise-arch-section .tc-arch-nodes-flow .tc-flow-node:nth-child(1) { grid-column: 1; grid-row: 1; }
  .tc-enterprise-arch-section .tc-arch-nodes-flow .tc-flow-node:nth-child(3) { grid-column: 2; grid-row: 1; }
  .tc-enterprise-arch-section .tc-arch-nodes-flow .tc-flow-node:nth-child(5) { grid-column: 1; grid-row: 2; }
  .tc-enterprise-arch-section .tc-arch-nodes-flow .tc-flow-node:nth-child(7) { grid-column: 2; grid-row: 2; }
  .tc-enterprise-arch-section .tc-arch-nodes-flow .tc-flow-node:nth-child(9) { grid-column: 1; grid-row: 3; }

  .tc-enterprise-arch-section .tc-arch-nodes-flow .tc-flow-arrow {
    display: none;
  }

  .tc-enterprise-arch-section .tc-arch-nodes-flow .tc-flow-node::after {
    position: absolute;
    color: var(--seo-cyan, #25C8FF);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
  }

  .tc-enterprise-arch-section .tc-arch-nodes-flow .tc-flow-node:nth-child(1)::after,
  .tc-enterprise-arch-section .tc-arch-nodes-flow .tc-flow-node:nth-child(5)::after {
    content: "→";
    right: -14px;
    top: 22px;
  }

  .tc-enterprise-arch-section .tc-arch-nodes-flow .tc-flow-node:nth-child(3)::after,
  .tc-enterprise-arch-section .tc-arch-nodes-flow .tc-flow-node:nth-child(7)::after {
    content: "↓";
    right: 50%;
    bottom: -20px;
  }

  .tc-arch-note {
    margin-top: 24px;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(37, 200, 255, 0.08);
    border-left: 3px solid var(--seo-cyan, #25C8FF);
    color: #FFFFFF;
    font-size: 0.92rem;
    font-weight: 600;
  }
}

/* Prevent a refreshed standalone SEO view from becoming a clipped viewport. */
html:has(.tc-standalone-seo-app),
body:has(.tc-standalone-seo-app),
#app.tc-standalone-seo-app,
.tc-page-seo .tc-screen-specialized {
  height: auto !important;
  max-height: none !important;
  min-height: 100vh !important;
  overflow-y: visible !important;
}

/* ==========================================================================
   PUNTO 10: ALTO CONTRASTE EN "HABLEMOS DE TU PROYECTO" (CTA FINAL)
   ========================================================================== */
.tc-cta-guarantee-high-contrast {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.14) !important;
  border: 1px solid rgba(16, 185, 129, 0.45) !important;
  padding: 7px 16px !important;
  border-radius: 9999px !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.12) !important;
}

.tc-cta-guarantee-high-contrast svg {
  color: #10b981 !important;
  stroke: #10b981 !important;
  flex-shrink: 0;
}

.tc-cta-quote-wrapper {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.tc-cta-quote-high-contrast {
  display: inline-block;
  font-family: var(--seo-font-mono);
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #25c8ff !important;
  background: rgba(6, 15, 30, 0.85);
  border: 1px solid rgba(37, 200, 255, 0.32);
  padding: 8px 18px;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4), 0 0 20px rgba(37, 200, 255, 0.12);
  letter-spacing: -0.01em;
  text-align: center;
}

.tc-cta-label-mobile {
  display: none;
}

@media (max-width: 640px) {
  .tc-cta-label-desktop {
    display: none;
  }

  .tc-cta-label-mobile {
    display: inline;
  }
}
