
    :root {
      --verde-nemora: #2f5233;
      --gris-plata: #C6AD76;
      --gris-plata-hover: #D4BE8E;
      --blanco-texto: #C6AD76;
      --texto-secundario-claro: #c0c0c0;
      --fondo-verde-profundo: #0D1410; 
      --fondo-verde-secundario: #1A281F; 
      --fondo-card: #203425;
      --borde-sutil: rgba(198, 173, 118, 0.15);
      --font-header: 'Cormorant Garamond', serif;
      --font-body: 'Inter', sans-serif;
      --transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
      --shadow-soft: 0 20px 60px rgba(0,0,0,0.3);
      --shadow-hard: 0 30px 80px rgba(0,0,0,0.5);
    }
    
    * { 
      margin: 0; 
      padding: 0; 
      box-sizing: border-box; 
    }

    html { 
      scroll-behavior: smooth; 
      overflow-x: hidden;
    }

    body {
      font-family: var(--font-body);
      background: var(--fondo-verde-profundo); 
      color: var(--blanco-texto);
      line-height: 1.8;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      position: relative;
    }

    /* ===== PRELOADER ===== */
    .preloader {
      position: fixed;
      inset: 0;
      background: var(--fondo-verde-profundo);
      z-index: 99999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: opacity 0.5s, visibility 0.5s;
    }

    .preloader.hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .logo-loader {
      font-family: var(--font-header);
      font-size: 3rem;
      font-weight: 800;
      color: var(--gris-plata);
      letter-spacing: 5px;
      margin-bottom: 2rem;
      animation: pulse 1.5s ease-in-out infinite;
    }

    .loader-bar {
      width: 200px;
      height: 3px;
      background: rgba(198, 173, 118, 0.2);
      border-radius: 10px;
      overflow: hidden;
      position: relative;
    }

    .loader-bar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 50%;
      height: 100%;
      background: linear-gradient(90deg, var(--gris-plata), #ffffff);
      animation: loading 1.5s ease-in-out infinite;
      box-shadow: 0 0 20px var(--gris-plata);
    }

    @keyframes loading {
      0% { left: -50%; }
      100% { left: 100%; }
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.7; transform: scale(1.05); }
    }

    /* ===== BARRA DE PROGRESO ===== */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gris-plata), #ffffff);
      z-index: 10000;
      transform-origin: left;
      box-shadow: 0 0 15px var(--gris-plata);
      width: 0%;
    }

    /* ===== FONDO ANIMADO ===== */
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 20% 50%, rgba(47, 82, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(198, 173, 118, 0.05) 0%, transparent 50%);
      pointer-events: none;
      z-index: 0;
      animation: pulseBackground 15s ease-in-out infinite;
    }

    @keyframes pulseBackground {
      0%, 100% { opacity: 0.3; }
      50% { opacity: 0.6; }
    }

    /* ===== HEADER ARREGLADO ===== */
    header {
      background: rgba(13, 20, 16, 0.85);
      backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid var(--borde-sutil);
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      transition: all 0.3s ease;
      box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    }

    header.scrolled {
      background: rgba(13, 20, 16, 0.98);
      box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 5%;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
    }

    .logo {
      color: var(--blanco-texto); 
      text-decoration: none; 
      font-size: 2.2rem;
      font-family: var(--font-header); 
      font-weight: 800;
      letter-spacing: 3px;
      display: flex; 
      align-items: center;
      position: relative;
      transition: var(--transition);
    }

    .logo svg { 
      color: var(--gris-plata); 
      margin-left: 0.5rem; 
      width: 32px; 
      height: 32px; 
      stroke-width: 2;
      filter: drop-shadow(0 0 10px rgba(198, 173, 118, 0.3));
      animation: scaleRotate 3s ease-in-out infinite;
    }

    @keyframes scaleRotate {
      0%, 100% { transform: scale(1) rotate(0deg); }
      50% { transform: scale(1.1) rotate(5deg); }
    }

    /* NAVEGACIÓN CENTRAL */
    .nav-center {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .nav-menu {
      display: flex;
      list-style: none;
      gap: 2rem;
      align-items: center;
      margin: 0;
      padding: 0;
    }

    .nav-menu li a {
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s;
      color: #C6AD76;
      position: relative;
      padding-bottom: 5px;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
    }

    .nav-menu li a::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--gris-plata);
      transform: translateX(-50%);
      transition: width 0.4s ease;
    }

    .nav-menu li a:hover::before,
    .nav-menu li a.active::before {
      width: 100%;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
      color: #ffffff;
      text-shadow: 0 0 20px rgba(198, 173, 118, 0.5);
      font-weight: 600;
    }

    /* SELECTOR DE IDIOMAS ARREGLADO */
    .language-selector {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      background: rgba(32, 52, 37, 0.6);
      padding: 0.4rem 0.7rem;
      border-radius: 50px;
      border: 1px solid var(--borde-sutil);
      transition: var(--transition);
    }

    .language-selector:hover {
      background: rgba(32, 52, 37, 0.9);
      border-color: var(--gris-plata);
    }

    .lang-btn {
      background: transparent;
      border: none;
      color: var(--texto-secundario-claro);
      font-size: 0.8rem;
      font-weight: 600;
      cursor: pointer;
      padding: 0.25rem 0.6rem;
      border-radius: 20px;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-family: var(--font-body);
    }

    .lang-btn:hover {
      color: var(--gris-plata);
    }

    .lang-btn.active {
      background: linear-gradient(135deg, var(--gris-plata), #D4BE8E);
      color: #0D1410;
      box-shadow: 0 3px 10px rgba(198, 173, 118, 0.4);
    }

    .lang-divider {
      width: 1px;
      height: 16px;
      background: var(--borde-sutil);
    }

    /* BOTÓN CONTACTO ARREGLADO */
    .nav-cta {
      padding: 0.8rem 1.8rem !important;
      background: linear-gradient(135deg, #C6AD76 0%, #D4BE8E 100%) !important;
      color: #0D1410 !important;
      border-radius: 50px;
      font-weight: 700 !important;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      font-size: 0.85rem !important;
      box-shadow: 0 5px 20px rgba(198, 173, 118, 0.4);
      border: 2px solid transparent;
      transition: all 0.4s ease !important;
      animation: pulse-glow 2s ease-in-out infinite;
      white-space: nowrap;
    }

    .nav-cta::before {
      display: none !important;
    }

    .nav-cta:hover {
      transform: translateY(-3px) !important;
      box-shadow: 0 10px 30px rgba(198, 173, 118, 0.6) !important;
      background: linear-gradient(135deg, #D4BE8E 0%, #ffffff 100%) !important;
      color: #0D1410 !important;
      padding-bottom: 0.8rem !important;
      text-shadow: none !important;
      font-weight: 700 !important;
    }

    @keyframes pulse-glow {
      0%, 100% {
        box-shadow: 0 5px 20px rgba(198, 173, 118, 0.4);
      }
      50% {
        box-shadow: 0 5px 30px rgba(198, 173, 118, 0.7);
      }
    }

    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--gris-plata);
      transition: var(--transition);
    }

    .menu-toggle:hover {
      transform: scale(1.1);
      color: #ffffff;
    }

    /* ===== HERO SECTION ===== */
    .hero {
      min-height: 100vh; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      text-align: center;
      padding: 10rem 2rem 4rem;
      background-image: 
        linear-gradient(135deg, rgba(13,20,16,0.85) 0%, rgba(26,40,31,0.75) 100%), 
        url("Palacio de justicia.png");
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      background-repeat: no-repeat;
      position: relative;
      overflow: hidden;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        linear-gradient(45deg, transparent 30%, rgba(198, 173, 118, 0.03) 50%, transparent 70%);
      animation: shimmer 8s ease-in-out infinite;
      pointer-events: none;
    }

    @keyframes shimmer {
      0%, 100% { transform: translateX(-100%); }
      50% { transform: translateX(100%); }
    }

    .hero-content {
      position: relative;
      z-index: 10;
      animation: fadeInUp 1.2s ease-out;
      max-width: 1100px;
      margin: 0 auto;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-badge {
      display: inline-block;
      background: rgba(198, 173, 118, 0.15);
      border: 1px solid var(--gris-plata);
      padding: 0.6rem 1.5rem;
      border-radius: 50px;
      font-size: 0.9rem;
      color: var(--gris-plata);
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 2rem;
      text-transform: uppercase;
      animation: fadeInUp 1s ease-out;
    }

    .hero h1 { 
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      margin-bottom: 1.5rem; 
      font-weight: 800;
      letter-spacing: 2px;
      color: #ffffff;
      line-height: 1.2;
      animation: fadeInUp 1.2s ease-out 0.2s both;
    }

    .hero h1 .highlight {
      background: linear-gradient(135deg, #C6AD76 0%, #ffffff 50%, #C6AD76 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: textShine 4s ease-in-out infinite;
      background-size: 200% auto;
    }

    @keyframes textShine {
      0%, 100% { background-position: 0% center; }
      50% { background-position: 100% center; }
    }

    .hero-subtitle {
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      max-width: 800px;
      margin: 0 auto 3rem;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 400;
      line-height: 1.8;
      animation: fadeInUp 1.4s ease-out 0.4s both;
    }

    .hero-features {
      display: flex;
      justify-content: center;
      gap: 3rem;
      margin: 3rem auto;
      flex-wrap: wrap;
      animation: fadeInUp 1.6s ease-out 0.6s both;
    }

    /* Rediseño de la Lista de Características en el Hero */
.hero-features-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 3.5rem auto;
  flex-wrap: wrap;
  max-width: 1000px;
}

.hero-feature-item {
  background: rgba(47, 82, 51, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(198, 173, 118, 0.2);
  padding: 1.2rem 1.8rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: all 0.4s ease;
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.hero-feature-item:hover {
  transform: translateY(-5px);
  background: rgba(198, 173, 118, 0.1);
  border-color: var(--gris-plata);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-icon-box {
  background: linear-gradient(135deg, var(--gris-plata), #D4BE8E);
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-box svg {
  width: 24px !important;
  height: 24px !important;
  stroke: #0D1410 !important;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-text strong {
  color: #ffffff;
  font-size: 1.05rem;
  font-family: var(--font-header);
}

.feature-subtext {
  color: var(--gris-plata);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Mejora de Botones para evitar que se peguen */


    .hero-feature {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .hero-feature svg {
      width: 24px;
      height: 24px;
      stroke: var(--gris-plata);
      stroke-width: 2;
    }

    .hero-feature span {
      color: rgba(255, 255, 255, 0.9);
      font-size: 1rem;
      font-weight: 500;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-top: 3rem;
      animation: fadeInUp 1.8s ease-out 0.8s both;
    }

    .cta-btn {
      padding: 1.4rem 3rem; 
      background: linear-gradient(135deg, #C6AD76 0%, #D4BE8E 100%);
      color: #0D1410;
      font-weight: 700;
      letter-spacing: 1.5px;
      border-radius: 50px; 
      text-decoration: none;
      transition: var(--transition); 
      box-shadow: 0 10px 40px rgba(198, 173, 118, 0.5);
      border: 2px solid transparent;
      font-size: 1.05rem; 
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      position: relative;
      overflow: hidden;
      text-transform: uppercase;
    }

    .cta-btn svg {
      width: 20px;
      height: 20px;
      stroke: #0D1410;
      stroke-width: 3;
    }

    .cta-btn:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 15px 50px rgba(198, 173, 118, 0.7);
      border-color: #ffffff;
    }

    .cta-btn-secondary {
      padding: 1.4rem 3rem;
      background: transparent;
      color: #ffffff;
      font-weight: 600;
      letter-spacing: 1px;
      border-radius: 50px;
      text-decoration: none;
      transition: var(--transition);
      border: 2px solid rgba(255, 255, 255, 0.3);
      font-size: 1.05rem;
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      text-transform: uppercase;
    }

    .cta-btn-secondary svg {
      width: 20px;
      height: 20px;
      stroke: #ffffff;
      stroke-width: 2;
    }

    .cta-btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--gris-plata);
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    }

    .hero-trust {
      margin-top: 4rem;
      padding-top: 3rem;
      border-top: 1px solid rgba(198, 173, 118, 0.2);
      animation: fadeInUp 2s ease-out 1s both;
    }

    .hero-trust p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .trust-stats {
      display: flex;
      justify-content: center;
      gap: 5rem;
      flex-wrap: wrap;
    }

    .trust-stat {
      text-align: center;
    }

    .trust-stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--gris-plata);
      font-family: var(--font-header);
      display: block;
      line-height: 1;
    }

    .trust-stat-label {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 0.5rem;
    }

    /* ===== SECCIONES ===== */
    section { 
      padding: 8rem 5%; 
      position: relative;
      z-index: 1;
    }

    .section-title { 
      text-align: center; 
      font-size: clamp(2.5rem, 5vw, 3.5rem); 
      color: var(--blanco-texto); 
      margin-bottom: 1rem;
      font-weight: 800;
      letter-spacing: 2px;
      position: relative;
      display: block;
    }

    .section-subtitle { 
      text-align: center; 
      color: var(--texto-secundario-claro); 
      max-width: 750px; 
      margin: 0 auto 4rem auto; 
      font-size: 1.15rem; 
      font-weight: 300;
      line-height: 1.8;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gris-plata), transparent);
      border-radius: 2px;
      box-shadow: 0 0 15px rgba(198, 173, 118, 0.4);
    }

    .section-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gris-plata), transparent);
      margin: 6rem auto;
      max-width: 40%;
      position: relative;
    }

    .section-divider::before {
      content: '◆';
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      background: var(--fondo-verde-profundo);
      color: var(--gris-plata);
      padding: 0 1.5rem;
      font-size: 1rem;
    }

    /* ===== CERTIFICACIONES ===== */
    .certifications {
      display: flex;
      justify-content: center;
      gap: 4rem;
      flex-wrap: wrap;
      max-width: 1000px;
      margin: 4rem auto;
    }

    .cert-badge {
      text-align: center;
      padding: 2.5rem 3rem;
      background: linear-gradient(145deg, rgba(32, 52, 37, 0.5), rgba(26, 40, 31, 0.7));
      border-radius: 16px;
      border: 1px solid var(--borde-sutil);
      min-width: 220px;
      transition: var(--transition);
    }

    .cert-badge:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(198, 173, 118, 0.2);
      border-color: rgba(198, 173, 118, 0.5);
    }

    .cert-badge svg {
      width: 60px;
      height: 60px;
      stroke: var(--gris-plata);
      stroke-width: 1.5;
      margin-bottom: 1.5rem;
      filter: drop-shadow(0 0 10px rgba(198, 173, 118, 0.3));
    }

    .cert-badge p {
      color: var(--gris-plata);
      font-size: 1rem;
      line-height: 1.6;
      font-weight: 500;
    }

    .cert-badge strong {
      display: block;
      font-size: 1.3rem;
      margin-top: 0.5rem;
      color: #ffffff;
    }

    /* ===== TABS DE SERVICIOS ===== */
    .services-tabs {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 5rem;
    }

    .tab-btn {
      padding: 1rem 2.5rem;
      background: rgba(32, 52, 37, 0.4);
      border: 2px solid var(--borde-sutil);
      border-radius: 50px;
      color: var(--texto-secundario-claro);
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .tab-btn svg {
      width: 20px;
      height: 20px;
      stroke: var(--texto-secundario-claro);
      transition: var(--transition);
    }

    .tab-btn:hover {
      background: rgba(198, 173, 118, 0.1);
      border-color: var(--gris-plata);
      color: var(--gris-plata);
      transform: translateY(-3px);
    }

    .tab-btn:hover svg {
      stroke: var(--gris-plata);
    }

    .tab-btn.active {
      background: linear-gradient(135deg, #C6AD76 0%, #D4BE8E 100%);
      border-color: var(--gris-plata);
      color: #0D1410;
      box-shadow: 0 5px 20px rgba(198, 173, 118, 0.4);
    }

    .tab-btn.active svg {
      stroke: #0D1410;
    }

    .tab-content {
      display: none;
      animation: fadeIn 0.6s ease-out;
    }

    .tab-content.active {
      display: block;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ===== GRID DE SERVICIOS ===== */
    .servicios-grid {
      max-width: 1300px; 
      margin: auto;
      display: grid; 
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
      gap: 2rem;
    }

    .service-card {
      background: linear-gradient(145deg, rgba(32, 52, 37, 0.4), rgba(26, 40, 31, 0.6));
      backdrop-filter: blur(10px);
      padding: 2.5rem; 
      border-radius: 16px;
      border: 1px solid var(--borde-sutil);
      text-align: left;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      background: linear-gradient(135deg, var(--gris-plata), transparent, var(--gris-plata));
      border-radius: 16px;
      opacity: 0;
      transition: opacity 0.6s;
      z-index: -1;
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 
        0 20px 40px rgba(0,0,0,0.3),
        0 0 30px rgba(198, 173, 118, 0.2);
      border-color: transparent;
    }

    .service-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, rgba(198, 173, 118, 0.15), rgba(198, 173, 118, 0.05));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: var(--transition);
    }

    .service-card:hover .service-icon {
      background: linear-gradient(135deg, var(--gris-plata), #D4BE8E);
      transform: rotateY(360deg);
    }

    .service-icon svg {
      width: 30px;
      height: 30px;
      stroke: var(--gris-plata);
      stroke-width: 1.5;
      transition: var(--transition);
    }

    .service-card:hover .service-icon svg {
      stroke: #0D1410;
    }

    .service-card h3 { 
      margin-bottom: 1rem; 
      font-size: 1.6rem; 
      letter-spacing: 0.5px;
      color: #ffffff;
      font-family: var(--font-header);
      font-weight: 700;
    }

    .service-card p { 
      color: var(--texto-secundario-claro); 
      font-weight: 300;
      line-height: 1.7;
      font-size: 0.98rem;
    }

    /* ===== PROCESO ===== */
    .process-timeline {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2.5rem;
      position: relative;
      padding: 2rem 0;
    }

    .process-step {
      background: linear-gradient(145deg, rgba(32, 52, 37, 0.5), rgba(26, 40, 31, 0.7));
      backdrop-filter: blur(10px);
      border: 1px solid var(--borde-sutil);
      border-radius: 20px;
      padding: 3rem 2.5rem;
      text-align: center;
      position: relative;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      min-height: 320px;
    }

    .process-step:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(198, 173, 118, 0.2);
      border-color: rgba(198, 173, 118, 0.4);
    }

    .step-number {
      font-size: 4.5rem;
      font-family: var(--font-header);
      font-weight: 800;
      background: linear-gradient(135deg, var(--gris-plata), #ffffff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 1.5rem;
      display: block;
      line-height: 1;
    }

    .process-step h3 {
      font-size: 1.8rem;
      margin-bottom: 1.2rem;
      color: var(--gris-plata);
      font-family: var(--font-header);
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    .process-step p {
      color: var(--texto-secundario-claro);
      font-size: 1.05rem;
      line-height: 1.8;
      text-align: center;
      flex-grow: 1;
      display: flex;
      align-items: center;
    }

    .process-step::after {
      content: '→';
      position: absolute;
      top: 50%;
      right: -1.8rem;
      font-size: 2rem;
      color: var(--gris-plata);
      transform: translateY(-50%);
      opacity: 0.3;
      font-weight: 300;
    }

    .process-step:last-child::after {
      display: none;
    }

    /* ===== VALORES PERFECTOS ===== */
    .valores-section {
      background: linear-gradient(135deg, rgba(13, 20, 16, 0.5) 0%, rgba(26, 40, 31, 0.5) 100%);
      border-top: 1px solid var(--borde-sutil);
      border-bottom: 1px solid var(--borde-sutil);
      position: relative;
      overflow: hidden;
    }

    .valores-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 50% 50%, rgba(198, 173, 118, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .valores-intro {
      max-width: 900px;
      margin: 0 auto 5rem;
      text-align: center;
      padding: 0 2rem;
    }

    .valores-intro h2 {
      font-size: clamp(2.8rem, 5vw, 4rem);
      margin-bottom: 1.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, #C6AD76 0%, #ffffff 50%, #C6AD76 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-size: 200% auto;
      animation: textShine 4s ease-in-out infinite;
    }

    .valores-intro p {
      font-size: 1.25rem;
      line-height: 1.9;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 300;
    }

    .valores-grid {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
      position: relative;
    }

    .valor-card {
      background: linear-gradient(145deg, rgba(32, 52, 37, 0.7), rgba(26, 40, 31, 0.9));
      backdrop-filter: blur(15px);
      padding: 4rem 3rem;
      border-radius: 24px;
      border: 2px solid var(--borde-sutil);
      text-align: left;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .valor-card::before {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      background: linear-gradient(135deg, var(--gris-plata), transparent, var(--gris-plata));
      border-radius: 24px;
      opacity: 0;
      transition: opacity 0.6s;
      z-index: -1;
    }

    .valor-card:hover::before {
      opacity: 1;
    }

    .valor-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(198, 173, 118, 0.3);
      border-color: transparent;
    }

    .valor-header {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .valor-icon-wrapper {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, rgba(198, 173, 118, 0.2), rgba(198, 173, 118, 0.05));
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: var(--transition);
      border: 2px solid rgba(198, 173, 118, 0.3);
    }

    .valor-card:hover .valor-icon-wrapper {
      background: linear-gradient(135deg, var(--gris-plata), #D4BE8E);
      transform: rotateY(360deg) scale(1.1);
      border-color: var(--gris-plata);
      box-shadow: 0 10px 30px rgba(198, 173, 118, 0.5);
    }

    .valor-icon-wrapper svg {
      width: 40px;
      height: 40px;
      stroke: var(--gris-plata);
      stroke-width: 2;
      transition: var(--transition);
      filter: drop-shadow(0 0 15px rgba(198, 173, 118, 0.4));
    }

    .valor-card:hover .valor-icon-wrapper svg {
      stroke: #0D1410;
      filter: drop-shadow(0 0 25px rgba(13, 20, 16, 0.6));
    }

    .valor-title {
      flex: 1;
    }

    .valor-title h3 {
      font-size: 2.2rem;
      margin-bottom: 0.5rem;
      color: var(--gris-plata);
      font-family: var(--font-header);
      font-weight: 800;
      letter-spacing: 1px;
      line-height: 1.2;
    }

    .valor-number {
      font-size: 0.85rem;
      color: rgba(198, 173, 118, 0.6);
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 600;
    }

    .valor-description {
      color: var(--texto-secundario-claro);
      font-size: 1.1rem;
      line-height: 1.9;
      font-weight: 300;
      padding-left: 0;
      border-left: 3px solid transparent;
      transition: all 0.4s ease;
    }

    .valor-card:hover .valor-description {
      color: rgba(255, 255, 255, 0.95);
      border-left-color: var(--gris-plata);
      padding-left: 1.5rem;
    }

    .valor-badge {
      display: inline-block;
      padding: 0.5rem 1.2rem;
      background: rgba(198, 173, 118, 0.15);
      border: 1px solid rgba(198, 173, 118, 0.3);
      border-radius: 50px;
      color: var(--gris-plata);
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: auto;
      transition: all 0.3s ease;
    }

    .valor-card:hover .valor-badge {
      background: var(--gris-plata);
      color: #0D1410;
      border-color: var(--gris-plata);
      box-shadow: 0 5px 15px rgba(198, 173, 118, 0.4);
    }

    /* ===== ESTADÍSTICAS ===== */
    .stats-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 4rem;
      max-width: 900px;
      margin: 5rem auto;
      text-align: center;
    }

    .stat-item {
      padding: 3rem 2rem;
      background: linear-gradient(145deg, rgba(32, 52, 37, 0.4), rgba(26, 40, 31, 0.6));
      backdrop-filter: blur(10px);
      border-radius: 20px;
      border: 1px solid var(--borde-sutil);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .stat-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at center, rgba(198, 173, 118, 0.1), transparent);
      opacity: 0;
      transition: opacity 0.6s;
    }

    .stat-item:hover::before {
      opacity: 1;
    }

    .stat-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(198, 173, 118, 0.2);
      border-color: rgba(198, 173, 118, 0.4);
    }

    .stat-number {
      font-size: 4.5rem;
      font-weight: 800;
      color: var(--gris-plata);
      font-family: var(--font-header);
      display: block;
      margin-bottom: 0.5rem;
      font-variant-numeric: tabular-nums;
      line-height: 1;
    }

    .stat-label {
      font-size: 1.15rem;
      color: var(--texto-secundario-claro);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 500;
    }

    /* ===== SOBRE NOSOTROS ===== */
    .sobre-nosotros-container {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    .sobre-nosotros-container > div {
      margin-bottom: 4rem;
    }

    .sobre-nosotros-container h3 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      color: #D4BE8E;
      font-weight: 600;
    }

    .sobre-nosotros-container p {
      font-size: 1.1rem;
      line-height: 2;
      color: #c0c0c0;
    }

    /* ===== FAQ ===== */
    .faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-item {
      margin-bottom: 1.5rem;
      border: 1px solid var(--borde-sutil);
      border-radius: 12px;
      overflow: hidden;
      background: rgba(32, 52, 37, 0.4);
      backdrop-filter: blur(10px);
      transition: var(--transition);
    }

    .faq-item:hover {
      border-color: rgba(198, 173, 118, 0.4);
    }

    .faq-question {
      width: 100%;
      padding: 1.8rem 2rem;
      background: none;
      border: none;
      color: #ffffff;
      font-size: 1.2rem;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: var(--transition);
      font-family: var(--font-header);
      letter-spacing: 0.5px;
    }

    .faq-question:hover {
      color: var(--gris-plata);
    }

    .faq-question svg {
      width: 24px;
      height: 24px;
      stroke: #ffffff;
      transition: transform 0.3s;
    }

    .faq-item.active .faq-question {
      color: var(--gris-plata);
    }

    .faq-item.active .faq-question svg {
      transform: rotate(180deg);
      stroke: var(--gris-plata);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      padding: 0 2rem;
    }

    .faq-item.active .faq-answer {
      max-height: 600px;
      padding: 0 2rem 2rem 2rem;
    }

    .faq-answer p {
      color: var(--texto-secundario-claro);
      line-height: 1.9;
      font-size: 1.05rem;
    }

    /* ===== FORMULARIO ===== */
    form { 
      max-width: 750px; 
      margin: auto; 
      display: grid; 
      gap: 2rem;
    }

    input, textarea {
      padding: 1.5rem; 
      border: 2px solid var(--borde-sutil);
      border-radius: 12px; 
      outline: none; 
      font-family: var(--font-body);
      background: rgba(32, 52, 37, 0.3);
      backdrop-filter: blur(10px);
      color: var(--blanco-texto);
      font-size: 1.05rem; 
      transition: all 0.4s ease;
    }

    input:focus, textarea:focus {
      border-color: var(--gris-plata); 
      box-shadow: 
        0 0 25px rgba(198, 173, 118, 0.3),
        inset 0 0 20px rgba(198, 173, 118, 0.05);
      background: rgba(32, 52, 37, 0.6);
      transform: translateY(-2px);
    }

    input::placeholder, textarea::placeholder {
      color: rgba(192, 192, 192, 0.6);
    }

    button[type="submit"] {
      padding: 1.5rem; 
      background: linear-gradient(135deg, #C6AD76 0%, #D4BE8E 100%);
      color: #0D1410;
      font-weight: 700; 
      letter-spacing: 1.5px;
      border: 2px solid transparent;
      border-radius: 50px;
      cursor: pointer; 
      transition: var(--transition); 
      font-size: 1.1rem;
      text-transform: uppercase;
      box-shadow: 0 10px 30px rgba(198, 173, 118, 0.3);
      position: relative;
      overflow: hidden;
    }

    button[type="submit"]::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    button[type="submit"]:hover::before {
      width: 400px;
      height: 400px;
    }

    button[type="submit"]:hover { 
      transform: translateY(-5px);
      box-shadow: 0 15px 50px rgba(198, 173, 118, 0.5);
      border-color: #ffffff;
    }

    /* ===== BOTÓN FLOTANTE WHATSAPP ===== */
    .whatsapp-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      padding: 1.2rem 2rem;
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
      color: #ffffff;
      border: none;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
      z-index: 997;
      display: flex;
      align-items: center;
      gap: 0.7rem;
      transition: var(--transition);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      text-decoration: none;
      animation: whatsapp-pulse 2s ease-in-out infinite;
    }

    @keyframes whatsapp-pulse {
      0%, 100% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
      }
      50% {
        box-shadow: 0 10px 40px rgba(37, 211, 102, 0.7);
      }
    }

    .whatsapp-btn svg {
      width: 24px;
      height: 24px;
      fill: #ffffff;
    }

    .whatsapp-btn:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
      background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    }

    /* ===== FOOTER ===== */
    footer { 
      background: linear-gradient(180deg, #0A1210 0%, #050A08 100%);
      padding: 6rem 5% 3rem; 
      color: var(--texto-secundario-claro); 
      border-top: 2px solid var(--borde-sutil);
      position: relative;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gris-plata), transparent);
      box-shadow: 0 0 20px rgba(198, 173, 118, 0.5);
    }

    .footer-grid {
      max-width: 1400px; 
      margin: auto;
      display: grid; 
      grid-template-columns: 2fr 1fr 1fr; 
      gap: 4rem;
      align-items: start;
      margin-bottom: 4rem;
    }

    .footer-col h4 { 
      color: var(--gris-plata); 
      margin-bottom: 2rem; 
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .footer-logo { 
      font-family: var(--font-header); 
      font-weight: 800; 
      font-size: 2.2rem; 
      color: var(--blanco-texto); 
      margin-bottom: 1.5rem; 
      display: flex; 
      align-items: center;
    }

    .footer-logo svg { 
      color: var(--gris-plata); 
      margin-left: 0.7rem; 
      width: 28px; 
      height: 28px; 
      stroke-width: 2;
      filter: drop-shadow(0 0 10px rgba(198, 173, 118, 0.3));
    }

    .footer-col a { 
      color: rgba(192, 192, 192, 0.8); 
      text-decoration: none; 
      display: block; 
      margin-bottom: 1rem; 
      transition: all 0.3s;
      position: relative;
      padding-left: 0;
    }

    .footer-col a::before {
      content: '→';
      position: absolute;
      left: -20px;
      opacity: 0;
      transition: all 0.3s;
      color: var(--gris-plata);
    }

    .footer-col a:hover::before {
      left: 0;
      opacity: 1;
    }

    .footer-col a:hover { 
      color: var(--gris-plata); 
      padding-left: 25px;
      text-shadow: 0 0 10px rgba(198, 173, 118, 0.3);
    }

    .social-links {
      display: flex;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .social-links a {
      width: 45px;
      height: 45px;
      background: rgba(32, 52, 37, 0.5);
      border: 1px solid var(--borde-sutil);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      padding: 0;
      margin: 0;
    }

    .social-links a::before {
      display: none;
    }

    .social-links a:hover {
      background: var(--gris-plata);
      border-color: var(--gris-plata);
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(198, 173, 118, 0.3);
      padding: 0;
    }

    .social-links a svg {
      width: 20px;
      height: 20px;
      stroke: var(--gris-plata);
      stroke-width: 2;
      transition: stroke 0.3s;
    }

    .social-links a:hover svg {
      stroke: #0D1410;
    }

    .footer-copyright { 
      text-align: center; 
      padding-top: 3rem; 
      margin-top: 3rem; 
      border-top: 1px solid var(--borde-sutil);
      font-size: 0.95rem;
      color: rgba(192, 192, 192, 0.6);
    }

    /* ===== SCROLL TO TOP ===== */
    .scroll-top {
      position: fixed;
      bottom: 100px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #C6AD76, #D4BE8E);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      z-index: 996;
      box-shadow: 0 5px 20px rgba(198, 173, 118, 0.4);
    }

    .scroll-top.visible {
      opacity: 1;
      visibility: visible;
    }

    .scroll-top:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(198, 173, 118, 0.6);
    }

    .scroll-top svg {
      width: 24px;
      height: 24px;
      stroke: #0D1410;
      stroke-width: 3;
    }

    /* ===== ANIMACIONES AL SCROLL ===== */
    .fade-in {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease-out;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .valores-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

      .nav-center {
        display: none;
        position: absolute;
        top: 70px;
        left: 5%;
        right: 5%;
        background: rgba(32, 52, 37, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        border-radius: 16px;
        box-shadow: 0 10px 50px rgba(0,0,0,0.5);
        border: 1px solid var(--borde-sutil);
      }

      .nav-center.active {
        display: flex;
      }

      .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
      }

      .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--borde-sutil);
        width: 100%;
        text-align: center;
      }

      .nav-menu li:last-child {
        border-bottom: none;
      }

      .language-selector {
        margin: 1.5rem 0 0 0;
      }

      .services-tabs {
        flex-direction: column;
        align-items: stretch;
      }

      .tab-btn {
        justify-content: center;
      }

      .servicios-grid {
        grid-template-columns: 1fr;
      }

      .hero-features {
        gap: 1.5rem;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: stretch;
      }

      .cta-btn,
      .cta-btn-secondary {
        width: 100%;
        justify-content: center;
      }

      .trust-stats {
        gap: 2rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
      }

      .footer-col a::before {
        display: none;
      }

      .footer-col a:hover {
        padding-left: 0;
      }

      .footer-logo {
        justify-content: center;
      }

      .social-links {
        justify-content: center;
      }

      section {
        padding: 5rem 5%;
      }

      .stats-container,
      .process-timeline,
      .valores-grid {
        grid-template-columns: 1fr;
      }

      .process-step::after {
        display: none;
      }

      .process-step {
        min-height: auto;
      }

      .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
      }

      .scroll-top {
        bottom: 80px;
        right: 20px;
      }

      .certifications {
        gap: 2rem;
      }

      .valor-card {
        padding: 3rem 2rem;
      }

      .valor-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
      }

      .valor-title h3 {
        font-size: 1.8rem;
      }
    }
