* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

/* Design tokens */
:root {
  --color-primary: #2b60d0;
  --color-primary-600: #1a356f;
  --color-success: #45ab24;
  --color-border: #e5e7eb;
  --gradient-section: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 30px;
}

.hidden {
  display: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: var(--color-primary) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Asegurar que el header mantenga el color azul en todos los estados */
.header,
.header:hover,
.header:focus,
.header:active {
  background: var(--color-primary) !important;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.nav-brand:hover {
  transform: scale(1.02);
}

.logo {
  width: 40px;
  height: 40px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #e6f0ff;
  transform: translateY(-1px);
}

/* Buttons */
.btn-primary {
  background: var(--color-primary);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background: var(--color-primary-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 96, 208, 0.4);
}

.nav-links .btn-secondary {
  background: #ffffff;
  color: var(--color-primary) !important;
  padding: 8px 16px;
  border: 2px solid #ffffff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-links .btn-secondary:hover {
  background: #f8f9fa;
  color: #2b60d0;
  border-color: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(43, 96, 208, 0.3);
}

/* Hero Section */
.hero {
  background: var(--gradient-section);
  padding: 120px 0 80px;
  margin-top: 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.check-icon {
  background: #45ab24;
  color: white;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

/* Form Card */
.form-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.form-card p {
  color: #666;
  margin-bottom: 2rem;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #333;
}

.form-group input {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #2b60d0;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background: #ffffff;
}

/* Eliminado bloque feature-highlight al simplificar Operaciones dentro de #como-funciona */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.employees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.employee-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.12);
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.employee-card:hover {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.16);
}

.employee-card.linkedin-style {
  position: relative;
}

.employee-banner {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.employee-profile {
  padding: 0 1.5rem;
  margin-top: -80px;
  position: relative;
  z-index: 2;
}

.employee-avatar {
  margin-bottom: 1rem;
}

.avatar-image {
  width: 152px;
  height: 152px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.employee-info {
  margin-bottom: 1.5rem;
}

.employee-name {
  font-size: 2rem;
  font-weight: 600;
  color: #191919;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.employee-headline {
  font-size: 1.125rem;
  color: #191919;
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.employee-location {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1rem;
}

.employee-content {
  padding: 0 1.5rem 1.5rem;
  flex: 1;
}

.content-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.content-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.content-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #191919;
  margin-bottom: 0.75rem;
}

.employee-description {
  color: #191919;
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.employee-tasks {
  list-style: none;
  margin: 0;
}

.employee-tasks li {
  padding: 0.25rem 0;
  color: #191919;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.employee-tasks li:before {
  content: "•";
  color: #0a66c2;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.connections-section {
  margin-top: 1rem;
}

.connection-avatars {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.connection-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.connections-text {
  font-size: 0.875rem;
  color: #666;
  font-weight: 500;
}

.employee-sidebar {
  position: absolute;
  top: 0;
  right: 1rem;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.company-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  width: 100%;
  justify-content: center;
  position: absolute;
  top: 285px;
  right: 0;
}

.company-logo-container {
  width: 32px;
  height: 32px;
  background: #2b60d0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.company-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.company-name {
  font-size: 0.875rem;
  color: #191919;
  font-weight: 500;
}

.importance-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.65rem;
  cursor: help;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: 0 auto 0.5rem auto;
  white-space: nowrap;
  min-width: fit-content;
  width: auto;
  position: absolute;
  top: 220px;
  right: 0;
}

.importance-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.importance-badge.essential {
  background: #f3c00d;
  color: #191919;
}

.importance-badge.optional {
  background: #c0c0c0;
  color: #191919;
}

.badge-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.badge-text {
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Tooltip personalizado */
.importance-badge[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  z-index: 1000;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.importance-badge[title]:hover::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: #333;
  margin-bottom: -0.25rem;
  z-index: 1000;
}

.dependencia {
  font-size: 0.95rem;
  color: #191919;
  font-style: normal;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border-left: none;
  margin: 0;
}

.tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag.essential {
  background: #e8f5e8;
  color: #0a5f0a;
  border: 1px solid #c8e6c8;
}

.tag.optional {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

/* Player App Section */
.player-app {
  padding: 80px 0;
  background: #ffffff;
}

.app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.app-badge {
  background: #45ab24;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.app-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.app-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.app-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.app-feature h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.app-feature p {
  color: #666;
}

/* Phone Mockup */
.phone-mockup {
  max-width: 320px;
  margin: 0 auto;
  position: relative;
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  border-radius: 40px;
  z-index: -1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.phone-mockup::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: #1a1a1a;
  border-radius: 3px;
  z-index: 1;
}

.app-preview-image {
  width: 100%;
  height: auto;
  border-radius: 30px;
  display: block;
  border: 3px solid #1a1a1a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 3px rgba(255, 255, 255, 0.1);
}

/* App CTA Button */
.app-cta {
  text-align: center;
  padding: 2rem 0;
}

.app-cta .btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

/* Packages Section */
.packages {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

/* StP System Section */
.stp-system {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.stp-explanation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
  align-items: start;
}

@media (max-width: 768px) {
  .stp-explanation {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stp-chart {
    order: -1;
  }

  .stp-population-chart {
    padding: 1.5rem;
  }

  .chart-container-large canvas {
    max-width: 100%;
    height: auto;
  }
}

.stp-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.stp-text ul {
  list-style: none;
  padding: 0;
}

.stp-text li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
  line-height: 1.6;
}

.stp-text li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
  font-size: 1.1rem;
}

.stp-text strong {
  color: #1a1a1a;
}

.stp-chart {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.stp-chart h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.chart-container {
  margin: 1.5rem 0;
  position: relative;
}

.chart-caption {
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 1rem;
}

.stp-population-chart {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  margin: 3rem 0;
  text-align: center;
}

.stp-population-chart h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.stp-population-chart p {
  color: #666;
  margin-bottom: 2rem;
}

.chart-container-large {
  margin: 2rem 0;
  position: relative;
  display: flex;
  justify-content: center;
}

.chart-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.legend-color {
  width: 16px;
  height: 16px;
  border-radius: 3px;
}

.stp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.stp-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stp-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.stp-card p {
  color: #666;
}

.stp-cta {
  text-align: center;
  margin-top: 3rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.package-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.package-card.recommended {
  border-color: #2b60d0;
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2b60d0;
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.package-header {
  text-align: center;
  margin-bottom: 2rem;
}

.package-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.package-subtitle {
  color: #666;
  font-size: 1rem;
}

.package-employees {
  margin-bottom: 2rem;
}

.package-employees h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.package-employees ul {
  list-style: none;
}

.package-employees li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.package-employees li:last-child {
  border-bottom: none;
}

.employee-name {
  font-weight: 600;
  color: #2b60d0;
}

.package-employees .optional {
  color: #666;
  font-style: italic;
}

.package-features {
  margin-bottom: 2rem;
}

.package-features .feature {
  padding: 0.5rem 0;
  color: #45ab24;
  font-weight: 500;
}
.package-note {
  margin-bottom: 2rem;
}

.package-card .btn-primary {
  margin-top: auto;
  align-self: center;
}

/* Language Selector and Tertiary Button */
.language-selector {
  margin-left: 1rem;
}

.language-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 50px;
}

.language-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.language-btn:active {
  transform: translateY(0);
}

.nav-links .btn-tertiary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  padding: 8px 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-links .btn-tertiary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for nav */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.875rem;
  }

  .language-selector {
    margin-left: 0.5rem;
  }

  .language-btn {
    padding: 4px 8px;
    font-size: 0.75rem;
    min-width: 40px;
  }

  .nav-links .btn-tertiary,
  .nav-links .btn-secondary {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .nav-links {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .nav-links a:not(.btn-secondary):not(.btn-tertiary) {
    display: none;
  }
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer .brand-name {
  color: white;
}

.footer-text p {
  color: #ccc;
  max-width: 400px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #999;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .employees-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .app-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .employees-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .employee-card.linkedin-style {
    margin: 0 0.5rem;
  }

  .employee-banner {
    height: 150px;
  }

  .employee-profile {
    margin-top: -60px;
    padding: 0 1rem;
  }

  .avatar-image {
    width: 120px;
    height: 120px;
  }

  .employee-name {
    font-size: 1.75rem;
  }

  .employee-headline {
    font-size: 1rem;
  }

  .employee-sidebar {
    position: static;
    width: 100%;
    margin-top: 1rem;
    padding: 0 1rem;
  }

  .company-info,
  .importance-badge {
    position: static;
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
  }

  .employee-content {
    padding: 0 1rem 1rem;
  }

  .connection-avatars {
    justify-content: center;
  }

  .connections-text {
    text-align: center;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card.recommended {
    transform: none;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .form-card {
    padding: 1.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .app-text h2 {
    font-size: 2rem;
  }

  .employee-banner {
    height: 120px;
  }

  .employee-profile {
    margin-top: -50px;
  }

  .avatar-image {
    width: 100px;
    height: 100px;
  }

  .employee-name {
    font-size: 1.5rem;
  }

  .employee-headline {
    font-size: 0.9rem;
  }

  .content-section h4 {
    font-size: 0.9rem;
  }

  .employee-description,
  .employee-tasks li {
    font-size: 0.85rem;
  }

  .employee-sidebar {
    text-align: center;
  }

  .company-info,
  .importance-badge {
    display: block;
    margin: 0.5rem auto;
    text-align: center;
  }

  .connection-avatars {
    gap: 0.25rem;
  }

  .connection-avatar {
    width: 32px;
    height: 32px;
  }
}

/* Colores de conexión para cada perfil */
.connection-avatar.claudia {
  border-color: #2563eb; /* Azul */
}

.connection-avatar.gema {
  border-color: #16a34a; /* Verde */
}

.connection-avatar.pablo {
  border-color: #dc2626; /* Rojo */
}

.connection-avatar.tomas {
  border-color: #ea580c; /* Naranja */
}

.connection-avatar.esteban {
  border-color: #9333ea; /* Morado */
}

.connection-avatar.eva {
  border-color: #ec4899; /* Rosa */
}

/* ===== NUEVAS SECCIONES ===== */

/* Colaboradores Section */
.partners {
  padding: 80px 0;
  background: #ffffff;
}

.partners .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.partners .section-header h2 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 16px;
}

.partners .section-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.partner-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.partner-logo-container {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}

.partner-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.partner-card h4 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 12px;
  font-weight: 600;
}

.partner-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Clientes Actuales Section */
.current-clients {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.current-clients .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.current-clients .section-header h2 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 16px;
}

.current-clients .section-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.client-card {
  background: white;
  padding: 20px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
}

.client-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.client-logo-container {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  padding: 12px;
  border-radius: 12px;
  margin: 0 auto 16px;
  flex-shrink: 0;
}

.client-logo-container.pegaso {
  background: rgb(64, 185, 157);
}

.client-logo-container.reyno {
  background: rgb(255, 221, 221);
}

.client-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.client-card h4 {
  font-size: 0.9rem;
  color: #1e293b;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.2;
}

/* CTA Card styles */
.client-card.cta-card {
  background: linear-gradient(135deg, #2b60d0 0%, #1a356f 100%);
  color: white;
  border: 2px solid #2b60d0;
  min-height: 160px;
}

.client-card.cta-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(43, 96, 208, 0.3);
}

.client-card.cta-card h4 {
  color: white;
  margin-bottom: 8px;
  flex-grow: 0;
}

.cta-bg {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-icon {
  font-size: 1.8rem;
}

.cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  margin-bottom: 12px;
  line-height: 1.2;
  flex-grow: 0;
}

.cta-button {
  background: white;
  color: #2b60d0;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: auto;
}

.cta-button:hover {
  background: #f1f5f9;
  transform: scale(1.05);
}

/* Noticias y Evolución Section */
.news-evolution {
  padding: 80px 0;
  background: #ffffff;
}

.news-evolution .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.news-evolution .section-header h2 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 16px;
}

.news-evolution .section-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.news-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.news-date {
  background: #2b60d0;
  color: white;
  padding: 20px;
  text-align: center;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.news-date .day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.news-date .month {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.9;
}

.news-content {
  padding: 30px;
  flex: 1;
}

.news-content h4 {
  font-size: 1.2rem;
  color: #1e293b;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.news-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: #e2e8f0;
  color: #475569;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.news-link {
  margin-top: 16px;
}

.news-link a {
  color: #2b60d0;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.news-link a:hover {
  color: #1a356f;
  text-decoration: underline;
}

/* Responsive para las nuevas secciones */
@media (max-width: 768px) {
  .partners,
  .current-clients,
  .news-evolution {
    padding: 60px 0;
  }

  .partners .section-header h2,
  .current-clients .section-header h2,
  .news-evolution .section-header h2 {
    font-size: 2rem;
  }

  .partners-grid,
  .clients-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 100%;
  }

  .news-card {
    flex-direction: column;
  }

  .news-date {
    min-width: auto;
    padding: 15px;
  }

  .news-date .day {
    font-size: 1.5rem;
  }

  .news-date .month {
    font-size: 0.8rem;
  }

  .news-content {
    padding: 20px;
  }

  .partner-card,
  .client-card {
    padding: 30px 20px;
  }

  .client-logo-container {
    width: 120px;
    height: 120px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .partners,
  .current-clients,
  .news-evolution {
    padding: 40px 0;
  }

  .partners .section-header h2,
  .current-clients .section-header h2,
  .news-evolution .section-header h2 {
    font-size: 1.8rem;
  }

  .partners .section-header p,
  .current-clients .section-header p,
  .news-evolution .section-header p {
    font-size: 1rem;
  }

  .partner-card,
  .client-card {
    padding: 25px 15px;
  }

  .news-content {
    padding: 15px;
  }

  .news-content h4 {
    font-size: 1.1rem;
  }

  .tag {
    font-size: 0.75rem;
    padding: 3px 10px;
  }
}

/* Ocultar bloques de integración en los perfiles */
.content-section:has(.connections-section) {
  display: none;
}

/* Alternativa para navegadores que no soporten :has() */
.content-section:has(.connection-avatars) {
  display: none;
}

/* Responsive para comparación */
@media (max-width: 768px) {
  .comparison-table {
    margin: 20px 0;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .comparison-header > div,
  .comparison-row > div {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 15px;
  }

  .comparison-row > div:first-child {
    justify-content: center;
    background: #f8f9fa;
  }
}

/* Comparación con Competencia */
.competition-comparison {
  padding: 80px 0;
  background: var(--gradient-section);
}

.comparison-table {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin: 40px 0;
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--color-primary);
  color: white;
  font-weight: 600;
}

.comparison-header > div {
  padding: 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-header > div:last-child {
  border-right: none;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--color-border);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row > div {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.comparison-row > div:first-child {
  justify-content: flex-start;
  font-weight: 600;
  color: var(--color-primary);
}

.comparison-row > div:last-child {
  border-right: none;
}

.playtomic-feature {
  color: #666;
}

.stp-feature {
  color: var(--color-success);
  font-weight: 600;
}

.comparison-cta {
  text-align: center;
  margin-top: 40px;
}

.comparison-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--color-primary);
}

/* Testimonios */
.testimonials {
  padding: 80px 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 30px;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 5px;
}

.author-info span {
  color: #666;
  font-size: 0.9rem;
}

.testimonials-cta {
  text-align: center;
  margin-top: 50px;
}

.testimonials-cta h3 {
  color: var(--color-primary);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

/* Responsive para testimonios */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-content p {
    font-size: 1rem;
  }
}
