/* Variables de colores - Diseño Sobrio y Profesional */
:root {
  /* Colores principales - Paleta sobria */
  --primary-black: #1a1a1a;
  --primary-gray: #2d2d2d;
  --secondary-gray: #4a4a4a;
  --light-gray: #6b6b6b;
  --border-gray: #e0e0e0;
  --background-gray: #f8f9fa;
  --white: #ffffff;
  
  /* Colores temáticos sutiles */
  --theme-technology: #d0efe9;
  --theme-technology-light: rgba(208, 239, 233, 0.1);
  --theme-technology-border: rgba(208, 239, 233, 0.3);
  --theme-technology-hover: rgba(208, 239, 233, 0.15);
  --theme-human-talent: #f9f6e3;
  --theme-human-talent-light: rgba(249, 246, 227, 0.1);
  --theme-human-talent-border: #f9f6e3;
  --theme-human-talent-hover: rgba(249, 246, 227, 0.08);
  
  /* Grises para texto y elementos */
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #6b6b6b;
  --text-light: #8a8a8a;
  
  /* Colores de acento sutiles */
  --accent-blue: #3254ab;
  --accent-blue-light: #4a6bc7;
  --accent-success: #059669;
  --accent-warning: #d97706;
  --accent-error: #dc2626;
  
  /* Fondos y superficies */
  --surface-white: #ffffff;
  --surface-gray: #f8f9fa;
  --surface-light: #f1f5f9;
  --surface-border: #e2e8f0;
  --bg-dark: #000000;
  /* Altura del header para compensar elemento fijo */
  --header-height: 72px;
  
  /* Sombras sutiles */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Bordes y líneas */
  --border-width: 1px;
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  
  /* Espaciado consistente */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-xxl: 4rem;
}

/* Reset y base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
  overflow-x: hidden;
  font-weight: 400;
}

.landing-container {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
}

/* Header */
.header {
  background: var(--surface-white);
  border-bottom: var(--border-width) solid var(--surface-border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-lg) var(--spacing-xl);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  gap: var(--spacing-2xl);
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-image {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-2xl);
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-blue);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Selector de Idioma */
.nav-language {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.language-selector {
  background: transparent;
  border: 1px solid var(--border-gray);
  color: var(--text-secondary);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.language-selector:hover {
  color: var(--text-primary);
  border-color: var(--accent-blue);
}

.language-selector:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(50, 84, 171, 0.1);
}

/* Botones */
.cta-button, .primary-button {
  background-color: var(--accent-blue);
  color: var(--white);
  border: none;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(50, 84, 171, 0.15);
}

.cta-button:hover, .primary-button:hover {
  background-color: var(--accent-blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(50, 84, 171, 0.25);
}

.secondary-button {
  background-color: transparent;
  color: var(--text-primary);
  border: var(--border-width) solid var(--surface-border);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secondary-button:hover {
  background-color: var(--surface-gray);
  border-color: var(--border-gray);
  transform: translateY(-1px);
}

.diagnostic-cta-button {
  background-color: var(--primary-black);
  color: var(--white);
  border: none;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.15);
}

.diagnostic-cta-button:hover {
  background-color: var(--primary-gray);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 26, 26, 0.25);
}

/* Video Section */

.video-section {
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  height: 100%;
  overflow: visible;
  background: #000000;
  position: relative;
  margin-top: var(--header-height);
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
}

.hero-video {
  width: 100%;
  height: auto;
  max-height: calc(100vh - var(--header-height));
  max-width: 1920px;
  display: block;
  object-fit: contain;
  object-position: center center;
}

@media (min-width: 1400px) {
  .hero-video {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .video-section {
    min-height: auto;
    height: auto;
  }

  .video-container {
    height: auto;
  }

  .hero-video {
    max-height: calc(60vh - var(--header-height));
  }
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background-color: var(--white);
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
  font-family: 'Montserrat', sans-serif;
}

.highlight {
  color: var(--accent-blue);
  position: relative;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.tech-highlight {
  background: linear-gradient(90deg, 
    #d0efe9 0%, 
    #b8e5dc 12%,
    #a0dccf 25%,
    #f9f6e3 50%,
    #a0dccf 75%,
    #b8e5dc 88%,
    #d0efe9 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  background-size: 300% 100%;
  animation: gradient-shift 5s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(208, 239, 233, 0.3);
}

.tech-text {
  color: #2d5a52;
  font-weight: 500;
  position: relative;
}

.tech-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--theme-technology);
  opacity: 0.6;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-person-image {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin-bottom: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.person-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-person-image:hover .person-image {
  transform: scale(1.02);
}

.hero-card {
  background: var(--surface-white);
  border: var(--border-width) solid var(--surface-border);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 400px;
  transition: all 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.hero-card h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.hero-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}

.hero-stats {
  display: flex;
  justify-content: space-around;
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: var(--border-width) solid var(--surface-border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: var(--primary-black);
  color: var(--white);
  padding: var(--spacing-2xl) 0;
  margin-top: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
  text-align: center;
}

.footer-logo {
  height: 35px;
  width: auto;
  margin-bottom: var(--spacing-md);
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-md);
}

.footer-contact {
  margin-top: var(--spacing-lg);
}

.footer-contact p {
  margin-bottom: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact p:last-child {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .navbar {
    justify-content: center;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-person-image {
    max-width: 250px;
    margin: 0 auto var(--spacing-lg) auto;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .container {
    padding: 0 var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button, .primary-button, .secondary-button, .diagnostic-cta-button {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-card {
    padding: var(--spacing-lg);
  }
}

/* Focus states para accesibilidad */
.nav-link:focus,
.cta-button:focus,
.primary-button:focus,
.secondary-button:focus,
.diagnostic-cta-button:focus {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-4xl);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: var(--surface-gray);
  border: var(--border-width) solid var(--surface-border);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-xl);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  background: var(--white);
}

.service-icon {
  margin-bottom: var(--spacing-md);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.icon-image {
  width: 48px;
  height: 48px;
  transition: all 0.3s ease;
}

/* Iconos específicos por tema usando filter */
.tech-card .icon-image {
  filter: invert(20%) sepia(25%) saturate(2000%) hue-rotate(160deg) brightness(90%) contrast(95%);
}

.talent-card .icon-image {
  filter: invert(25%) sepia(100%) saturate(1500%) hue-rotate(35deg) brightness(95%) contrast(90%);
}

.service-card:hover .icon-image {
  transform: scale(1.1);
}

.tech-card:hover .icon-image {
  filter: invert(30%) sepia(25%) saturate(2000%) hue-rotate(160deg) brightness(95%) contrast(95%);
}

.talent-card:hover .icon-image {
  filter: invert(35%) sepia(100%) saturate(1500%) hue-rotate(35deg) brightness(100%) contrast(90%);
}

.service-card h3 {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-lg) 0;
}

.service-features li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-lg);
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-success);
  font-weight: 600;
}

.service-action {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

.ver-mas-btn {
  background-color: var(--accent-blue);
  color: var(--white);
  border: none;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
  width: auto;
  align-self: center;
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-lg);
}

.ver-mas-btn:hover {
  opacity: 0.9;
}

/* Botones específicos por tema */
.tech-card .ver-mas-btn {
  background-color: #7bd1c1;
  color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(123, 209, 193, 0.4);
  font-weight: 700;
  border: 2px solid #7bd1c1;
}

.talent-card .ver-mas-btn {
  background-color: #fdd66d;
  color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(253, 214, 109, 0.4);
  font-weight: 700;
  border: 2px solid #fdd66d;
}

.tech-card .ver-mas-btn:hover {
  opacity: 0.85;
  background-color: #5fc4b3;
  border-color: #5fc4b3;
}

.talent-card .ver-mas-btn:hover {
  opacity: 0.85;
  background-color: #fcc84a;
  border-color: #fcc84a;
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.ver-mas-btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* Tarjetas temáticas */
.service-card.tech-card {
  background: linear-gradient(135deg, var(--theme-technology-light) 0%, rgba(255, 255, 255, 1) 100%);
  border-left: 4px solid var(--theme-technology);
}

.service-card.tech-card:hover {
  background: linear-gradient(135deg, var(--theme-technology-hover) 0%, rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 12px 30px rgba(168, 217, 207, 0.3);
}

.service-card.talent-card {
  background: linear-gradient(135deg, var(--theme-human-talent-light) 0%, rgba(255, 255, 255, 1) 100%);
  border-left: 4px solid var(--theme-human-talent-border);
}

.service-card.talent-card:hover {
  background: linear-gradient(135deg, var(--theme-human-talent-hover) 0%, rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 12px 30px rgba(249, 246, 227, 0.3);
}

/* Sección de Servicios con espaciado mejorado */
#servicios {
  padding: var(--spacing-2xl) 0 var(--spacing-xxl) 0 !important;
  background-color: var(--white);
}

#servicios .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  position: relative;
}

#servicios .section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--theme-technology) 0%, #8bc9c1 100%);
  border-radius: 2px;
}

#servicios .section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Sección de Decisión Estratégica */
.decision-section {
  padding: 0 !important;
  background: transparent !important;
  position: relative;
}

.decision-header {
  padding: var(--spacing-xxl) var(--spacing-xl);
  text-align: center;
  background: #ffffff;
}

.decision-title {
  font-size: 2.8rem !important;
  letter-spacing: -0.5px;
  font-weight: 800 !important;
  text-transform: uppercase;
  line-height: 1.2;
  color: #1a1a1a !important;
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.decision-header .section-subtitle {
  color: #4a4a4a !important;
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Contenedor de divisiones lado a lado */
.decision-splits-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

/* Divisiones verticales */
.decision-split {
  padding: var(--spacing-xxl) var(--spacing-xl);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-split {
  background: var(--theme-technology);
}

.human-split {
  background: var(--theme-human-talent-border);
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
  max-width: 600px;
  width: 100%;
}

.split-text h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: var(--spacing-lg);
}

.split-text p {
  font-size: 1.2rem;
  color: #2d2d2d;
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.split-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.split-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--border-radius-lg);
}

.tech-btn {
  background-color: #7bd1c1 !important;
  color: #1a1a1a !important;
  box-shadow: 0 4px 12px rgba(123, 209, 193, 0.4) !important;
  font-weight: 700 !important;
  border: 2px solid #7bd1c1 !important;
  padding: var(--spacing-sm) var(--spacing-xl);
  border-radius: var(--border-radius);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tech-btn:hover {
  background-color: #5fc4b3 !important;
  border-color: #5fc4b3 !important;
  transform: translateY(-2px);
}

.human-btn {
  background-color: #fdd66d !important;
  color: #1a1a1a !important;
  box-shadow: 0 4px 12px rgba(253, 214, 109, 0.4) !important;
  font-weight: 700 !important;
  border: 2px solid #fdd66d !important;
  padding: var(--spacing-sm) var(--spacing-xl);
  border-radius: var(--border-radius);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.human-btn:hover {
  background-color: #fcc84a !important;
  border-color: #fcc84a !important;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .decision-splits-container {
    grid-template-columns: 1fr;
  }
  
  .decision-split {
    min-height: 500px;
  }
  
  .split-text h3 {
    font-size: 2rem;
  }
  
  .split-text p {
    font-size: 1rem;
  }
}

/* Sección Sobre Método mejorada */
#nosotros {
  padding: var(--spacing-xxl) 0 var(--spacing-2xl) 0 !important;
  background-color: #1a1a1a !important;
  background: #1a1a1a !important;
}

#nosotros .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: var(--spacing-md);
  position: relative;
}

#nosotros .section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--theme-technology) 0%, #8bc9c1 100%);
  border-radius: 2px;
}

#nosotros .section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: var(--spacing-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.section-gray {
  background-color: #1a1a1a !important;
}

/* About Content */
.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
  margin-top: var(--spacing-2xl);
  padding: var(--spacing-2xl) 0;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.about-section-reverse {
  grid-template-columns: 1.5fr 1fr;
}

.about-section-blue {
  background: #1a1a1a;
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-lg);
  margin: var(--spacing-xl) 0;
}

.about-section-header {
  position: static;
}

.about-section-header h3 {
  color: #ffffff !important;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 var(--spacing-lg) 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.about-section-header h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--theme-technology) 0%, #8bc9c1 100%);
  border-radius: 2px;
}

.about-section-header .section-subtitle-small {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1.8rem;
  font-weight: 700;
  margin: var(--spacing-lg) 0 0 0;
  display: block;
  line-height: 1.3;
}

.about-section-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.about-section-content p {
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.4;
  margin: 0;
  font-size: 1.05rem;
  text-align: justify;
}

.work-approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.approach-item {
  background: #2d2d2d;
  border: 2px solid #f9f6e3;
  border-radius: var(--border-radius-md);
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(249, 246, 227, 0.3);
  border-color: #f9f6e3;
}

.approach-item h4 {
  color: #f9f6e3 !important;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.approach-item p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-text h3 {
  color: var(--text-primary);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  margin-top: var(--spacing-xl);
  position: relative;
}

.about-text h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, var(--theme-technology) 0%, #8bc9c1 100%);
  border-radius: 2px;
}

.about-text h3:first-child {
  margin-top: 0;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  font-size: 1.05rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.stat-card {
  background: var(--surface-white);
  border: var(--border-width) solid var(--surface-border);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: var(--spacing-xs);
  display: block;
}

.stat-card .stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Responsive adicional */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    max-width: 100%;
  }
  
  .service-card {
    padding: var(--spacing-lg);
  }
  
  .ver-mas-btn {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.85rem;
  }
  
  .about-section {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .about-section-reverse {
    grid-template-columns: 1fr;
  }
  
  .about-section-header {
    position: static;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .about-stats {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .stat-card {
    flex: 1;
    margin: 0 var(--spacing-xs);
  }
}

@media (max-width: 480px) {
  .about-stats {
    flex-direction: column;
  }
  
  .stat-card {
    margin: 0;
  }
}

/* Sección Creemos */
#creemos {
  padding: var(--spacing-xxl) 0;
  background-color: var(--white);
}

.creemos-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.creemos-image {
  width: 100%;
  height: 400px;
  background-color: var(--surface-gray);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

.creemos-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}

.creemos-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
}

.creemos-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.feature-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding-left: var(--spacing-lg);
}

.feature-item h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--theme-technology) 0%, #8bc9c1 100%);
  border-radius: 50%;
}

.feature-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: var(--spacing-lg);
}

/* Responsive para sección Creemos */
@media (max-width: 768px) {
  .creemos-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .creemos-image {
    height: 250px;
  }
  
  .creemos-title {
    font-size: 1.8rem;
  }
}
/* Página de Contacto */
.contacto-hero {
  padding: 140px 0 80px;
  background-color: var(--white);
  text-align: center;
}

.contacto-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contacto-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
}

.contacto-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
}

.formulario-section {
  padding: var(--spacing-xxl) 0;
  background-color: #f9f6e3;
}

.formulario-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--spacing-2xl);
  align-items: start;
}

.formulario-info h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
}

.diagnostico-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-xl);
}

.diagnostico-features li {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-lg);
  position: relative;
}

.diagnostico-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #fdd66d;
  font-weight: bold;
}

.contacto-info {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  border-left: 4px solid #fdd66d;
}

.contacto-info h3 {
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.contacto-info p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
}

.form-container {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-lg);
}

.form-placeholder {
  text-align: center;
  padding: var(--spacing-xxl);
  background: var(--surface-gray);
  border-radius: var(--border-radius);
  border: 2px dashed var(--border-gray);
}

.form-placeholder h3 {
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.nav-link.active {
  color: var(--accent-blue);
  font-weight: 600;
}

/* Contact Form Styles */
/* Clients Section */
.clients-section {
  background: var(--white);
  padding: var(--spacing-xxl) 0;
  overflow: hidden;
}

.clients-section .section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.clients-section .section-subtitle {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.clients-carousel {
  width: 100%;
  overflow: hidden;
  padding: var(--spacing-lg) 0;
}

.clients-track {
  display: flex;
  gap: var(--spacing-xl);
  animation: scroll-clients 30s linear infinite;
  width: fit-content;
}

@keyframes scroll-clients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.clients-track:hover {
  animation-play-state: paused;
}

.client-logo {
  min-width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: var(--spacing-md);
  background: #fafafaff;
  border-radius: var(--border-radius);
}

.client-logo img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.client-logo:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.client-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-blue-light), var(--tech-highlight));
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  padding: var(--spacing-sm);
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(168, 217, 207, 0.2);
  transition: all 0.3s ease;
}

.client-logo:hover .client-placeholder {
  box-shadow: 0 8px 24px rgba(168, 217, 207, 0.4);
  transform: scale(1.05);
}

.contact-form {
  max-width: 100%;
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid var(--border-gray);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fdd66d;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #fdd66d;
  color: #1a1a1a;
  border: none;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #fcc84a;
}

.submit-btn:disabled {
  background: var(--border-gray);
  cursor: not-allowed;
}

/* Responsive para página de contacto */
@media (max-width: 768px) {
  .contacto-title {
    font-size: 2.2rem;
  }
  
  .formulario-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .contacto-hero {
    padding: 120px 0 60px;
  }
}
/* Redes Sociales en Footer */
.social-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  padding: var(--spacing-sm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

/* Responsive para redes sociales */
@media (max-width: 480px) {
  .social-links {
    gap: var(--spacing-md);
  }
  
  .social-link svg {
    width: 20px;
    height: 20px;
  }
}

/* Technology Page Styles */
.tech-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--theme-technology-light) 0%, rgba(255, 255, 255, 1) 100%);
  border-bottom: 4px solid var(--theme-technology);
  text-align: center;
}

.tech-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.tech-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
}

.tech-hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 400;
}

/* Tech Intro Section */
.tech-intro {
  padding: var(--spacing-xxl) 0;
  background-color: var(--white);
}

.tech-intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: var(--spacing-xl);
}

/* Tech Services Grid */
.tech-services {
  padding: var(--spacing-xxl) 0;
  background: #d0efe9 !important;
  background-color: #d0efe9 !important;
}

.tech-services .section-title {
  color: #1a1a1a !important;
}

.tech-services .section-subtitle {
  color: #2d2d2d !important;
}

.tech-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.tech-service-card {
  background: var(--white);
  border: var(--border-width) solid var(--surface-border);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-service-card-featured {
  background: var(--white);
  border: var(--border-width) solid var(--surface-border);
}

.tech-service-card-featured::after {
  display: none;
}

.tech-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--theme-technology) 0%, #8bc9c1 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.tech-service-card:hover::before {
  transform: scaleY(1);
}

.tech-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--theme-technology);
}

.service-number {
  display: inline-block;
  background: linear-gradient(135deg, var(--theme-technology) 0%, #8bc9c1 100%);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-lg);
}

.tech-service-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.tech-service-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.service-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-benefits li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-lg);
  position: relative;
}

.service-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--theme-technology);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Methodology Section */
.tech-methodology {
  padding: var(--spacing-xxl) 0;
  background-color: var(--white);
}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.methodology-step {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--surface-gray);
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
  position: relative;
}

.methodology-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  display: block;
}

.methodology-step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.methodology-step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Benefits Section */
.tech-benefits {
  padding: var(--spacing-xxl) 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.benefit-card {
  background: var(--white);
  border: var(--border-width) solid var(--surface-border);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--theme-technology);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  display: block;
}

.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Section */
.tech-cta {
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(135deg, var(--theme-technology-light) 0%, rgba(255, 255, 255, 1) 100%);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
}

/* Responsive para página de tecnología */
@media (max-width: 768px) {
  .tech-hero-title {
    font-size: 2.5rem;
  }
  
  .tech-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .tech-services-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .methodology-steps {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .tech-hero {
    padding: 120px 0 60px;
  }
  
  .tech-hero-title {
    font-size: 2rem;
  }
  
  .tech-hero-subtitle {
    font-size: 1rem;
  }
  
  .intro-text {
    font-size: 1rem;
  }
  
  .tech-service-card-featured::after {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
}

/* Human Resource Page Styles */
.hr-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--theme-human-talent-light) 0%, rgba(255, 255, 255, 1) 100%);
  border-bottom: 4px solid var(--theme-human-talent-border);
  text-align: center;
}

.hr-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hr-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
}

.hr-hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 400;
}

/* HR Intro Section */
.hr-intro {
  padding: var(--spacing-xxl) 0;
  background-color: var(--white);
}

.hr-intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* HR Services Grid */
.hr-services {
  padding: var(--spacing-xxl) 0;
  background: #f9f6e3 !important;
  background-color: #f9f6e3 !important;
}

.hr-services .section-title {
  color: #1a1a1a !important;
}

.hr-services .section-subtitle {
  color: #2d2d2d !important;
}

.hr-how-title {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  margin-top: var(--spacing-xl) !important;
  margin-bottom: var(--spacing-lg) !important;
}

.hr-culture {
  padding: var(--spacing-xxl) 0;
  background-color: var(--white);
}

.hr-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.hr-service-card {
  background: var(--white);
  border: var(--border-width) solid var(--surface-border);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hr-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #F9F6E3 0%, #e8e3c8 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.hr-service-card:hover::before {
  transform: scaleY(1);
}

.hr-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--theme-human-talent-border);
}

.hr-service-card .service-number {
  display: inline-block;
  background: linear-gradient(135deg, #F9F6E3 0%, #e8e3c8 100%);
  color: #B8860B;
  font-size: 1.2rem;
  font-weight: 700;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-lg);
}

.hr-service-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.hr-service-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* HR CTA Section */
.hr-cta {
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(135deg, var(--theme-human-talent-light) 0%, rgba(255, 255, 255, 1) 100%);
  text-align: center;
}

/* Responsive para página de recursos humanos */
@media (max-width: 768px) {
  .hr-hero-title {
    font-size: 2.5rem;
  }
  
  .hr-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hr-services-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .hr-hero {
    padding: 120px 0 60px;
  }
  
  .hr-hero-title {
    font-size: 2rem;
  }
  
  .hr-hero-subtitle {
    font-size: 1rem;
  }
  
  .intro-text {
    font-size: 1rem;
  }
}
