<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ========================================
   ECOSISTIA OPTIMIZED STYLES v3.0
   EstÃ©tica + Usabilidad + Accesibilidad + Velocidad
   ======================================== */

/* ========================================
   1. HERO SECTION OPTIMIZADO
   ======================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  /* Fondo optimizado para mejor contraste */
  background: 
    linear-gradient(135deg, 
      rgba(15, 23, 42, 0.95) 0%, 
      rgba(30, 41, 59, 0.9) 50%, 
      rgba(55, 48, 163, 0.85) 100%
    ),
    radial-gradient(circle at 20% 80%, rgba(29, 78, 216, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(55, 48, 163, 0.15) 0%, transparent 50%);
  overflow: hidden;
}

/* Formas geomÃ©tricas mÃ¡s sutiles */
.geometric-shape {
  position: absolute;
  opacity: 0.08;
  animation: float 8s ease-in-out infinite;
  will-change: transform;
}

.shape-1 {
  top: 15%;
  left: 8%;
  width: 120px;
  height: 120px;
  background: rgba(99, 102, 241, 0.3);
  border-radius: 50%;
  animation-delay: 0s;
}

.shape-2 {
  top: 65%;
  right: 10%;
  width: 80px;
  height: 80px;
  background: rgba(29, 78, 216, 0.25);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: 2s;
}

.shape-3 {
  bottom: 25%;
  left: 15%;
  width: 60px;
  height: 60px;
  background: rgba(55, 48, 163, 0.2);
  border-radius: 12px;
  animation-delay: 4s;
}

/* Contenido del hero optimizado */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--eco-space-16);
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: var(--eco-container-7xl);
  margin: 0 auto;
  padding: 0 var(--eco-space-6);
}

.hero-text {
  max-width: 600px;
}

/* TÃ­tulo con contraste perfecto */
.hero-title {
  font-size: var(--eco-text-5xl);
  font-weight: var(--eco-weight-extrabold);
  line-height: var(--eco-leading-tight);
  margin-bottom: var(--eco-space-6);
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Gradiente de texto mejorado */
.text-gradient {
  background: linear-gradient(135deg, 
    #10B981 0%, 
    #34D399 30%, 
    #6EE7B7 60%, 
    #A7F3D0 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Fallback para navegadores sin soporte */
  color: #FFFFFF;
}

/* SubtÃ­tulo con mejor legibilidad */
.hero-subtitle {
  font-size: var(--eco-text-xl);
  color: #E2E8F0;
  margin-bottom: var(--eco-space-8);
  line-height: var(--eco-leading-relaxed);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Botones del hero mejorados */
.hero-buttons {
  display: flex;
  gap: var(--eco-space-4);
  flex-wrap: wrap;
}

/* ========================================
   2. FLOATING CARDS OPTIMIZADAS
   ======================================== */
.hero-visual {
  position: relative;
  height: 500px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--eco-radius-3xl);
  padding: var(--eco-space-6);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 1px 8px rgba(0, 0, 0, 0.06);
  transition: all var(--eco-transition-base);
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}

.floating-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Posicionamiento responsivo */
.card-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.card-2 {
  top: 45%;
  right: 5%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 15%;
  left: 20%;
  animation-delay: 4s;
}

.card-icon {
  font-size: var(--eco-text-3xl);
  margin-bottom: var(--eco-space-3);
  text-align: center;
}

.floating-card h3 {
  font-size: var(--eco-text-lg);
  font-weight: var(--eco-weight-semibold);
  color: var(--eco-deep-blue);
  margin: 0;
  text-align: center;
}

/* ========================================
   3. NAVEGACIÃ“N OPTIMIZADA
   ======================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: all var(--eco-transition-base);
}

.navbar {
  padding: var(--eco-space-4) 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--eco-container-7xl);
  margin: 0 auto;
  padding: 0 var(--eco-space-6);
}

/* Logo mejorado */
.logo-text {
  font-family: var(--eco-font-display);
  font-size: var(--eco-text-2xl);
  font-weight: var(--eco-weight-extrabold);
  background: linear-gradient(135deg, #3730A3 0%, #1D4ED8 50%, #2563EB 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: var(--eco-tracking-wider);
  text-decoration: none;
}

/* MenÃº de navegaciÃ³n */
.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--eco-space-8);
  align-items: center;
}

.nav-link {
  font-size: var(--eco-text-base);
  font-weight: var(--eco-weight-medium);
  color: var(--eco-gray-700);
  text-decoration: none;
  position: relative;
  transition: all var(--eco-transition-base);
  letter-spacing: var(--eco-tracking-wide);
  padding: var(--eco-space-2) var(--eco-space-1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #3730A3 0%, #1D4ED8 100%);
  transition: width var(--eco-transition-base);
}

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

.nav-link:hover {
  color: var(--eco-indigo);
}

/* BotÃ³n CTA mejorado */
.cta-button {
  background: linear-gradient(135deg, #EA580C 0%, #DC2626 100%) !important;
  color: var(--eco-white) !important;
  padding: var(--eco-space-3) var(--eco-space-6) !important;
  border-radius: var(--eco-radius-full) !important;
  font-weight: var(--eco-weight-semibold) !important;
  text-transform: uppercase !important;
  font-size: var(--eco-text-sm) !important;
  letter-spacing: var(--eco-tracking-wide) !important;
  box-shadow: 
    0 4px 15px rgba(234, 88, 12, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.1) !important;
  transition: all var(--eco-transition-base) !important;
}

.cta-button::after {
  display: none !important;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 8px 25px rgba(234, 88, 12, 0.4),
    0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

/* ========================================
   4. BOTONES OPTIMIZADOS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--eco-space-4) var(--eco-space-8);
  font-family: var(--eco-font-body);
  font-size: var(--eco-text-base);
  font-weight: var(--eco-weight-semibold);
  line-height: var(--eco-leading-tight);
  border-radius: var(--eco-radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
  transition: all var(--eco-transition-base);
  letter-spacing: var(--eco-tracking-wide);
  text-transform: uppercase;
  font-size: var(--eco-text-sm);
  min-height: 48px; /* Accesibilidad - tamaÃ±o mÃ­nimo de toque */
}

.btn-primary {
  background: linear-gradient(135deg, #3730A3 0%, #1D4ED8 50%, #2563EB 100%);
  color: var(--eco-white);
  box-shadow: 
    0 4px 15px rgba(55, 48, 163, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 8px 25px rgba(55, 48, 163, 0.4),
    0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: var(--eco-white);
  color: var(--eco-indigo);
  border: 2px solid var(--eco-gray-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background: var(--eco-gray-50);
  border-color: var(--eco-indigo);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ========================================
   5. SECCIONES MEJORADAS
   ======================================== */
.services {
  padding: var(--eco-space-20) 0;
  background: 
    linear-gradient(180deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 1) 100%),
    radial-gradient(circle at 30% 70%, rgba(55, 48, 163, 0.05) 0%, transparent 50%);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: var(--eco-container-3xl);
  margin: 0 auto var(--eco-space-16);
}

.section-title {
  font-size: var(--eco-text-4xl);
  font-weight: var(--eco-weight-extrabold);
  color: var(--eco-deep-blue);
  margin-bottom: var(--eco-space-4);
}

.section-subtitle {
  font-size: var(--eco-text-xl);
  color: var(--eco-gray-600);
  line-height: var(--eco-leading-relaxed);
}

/* Grid de servicios mejorado */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--eco-space-8);
  max-width: var(--eco-container-7xl);
  margin: 0 auto;
  padding: 0 var(--eco-space-6);
}

/* Tarjetas de servicio optimizadas */
.service-card {
  background: var(--eco-white);
  border-radius: var(--eco-radius-3xl);
  padding: var(--eco-space-8);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.05),
    0 1px 6px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--eco-gray-100);
  transition: all var(--eco-transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #3730A3 0%, #1D4ED8 100%);
  transform: scaleX(0);
  transition: transform var(--eco-transition-base);
  transform-origin: left;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 8px 25px rgba(0, 0, 0, 0.06);
  border-color: var(--eco-gray-200);
}

/* Iconos de servicio mejorados */
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3730A3 0%, #1D4ED8 100%);
  border-radius: var(--eco-radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--eco-space-6);
  box-shadow: 
    0 8px 20px rgba(55, 48, 163, 0.3),
    0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-icon .icon-svg {
  width: 40px;
  height: 40px;
  color: var(--eco-white);
}

/* ========================================
   6. RESPONSIVE DESIGN OPTIMIZADO
   ======================================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--eco-space-12);
    text-align: center;
  }
  
  .hero-visual {
    height: 350px;
    order: -1;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--eco-space-6);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: var(--eco-text-3xl);
  }
  
  .hero-subtitle {
    font-size: var(--eco-text-lg);
  }
  
  .hero-visual {
    height: 250px;
  }
  
  .floating-card {
    position: relative;
    margin: var(--eco-space-3);
    width: auto;
    height: auto;
    animation: none;
  }
  
  .card-1, .card-2, .card-3 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  
  .nav-menu {
    display: none; /* Se manejarÃ¡ con JS para menÃº hamburguesa */
  }
  
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 640px) {
  .section-title {
    font-size: var(--eco-text-3xl);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--eco-space-6);
  }
  
  .service-card {
    padding: var(--eco-space-6);
  }
}

/* ========================================
   7. OPTIMIZACIONES DE RENDIMIENTO
   ======================================== */

/* Reducir repaints y reflows */
.floating-card,
.service-card,
.btn {
  will-change: transform;
}

/* Usar GPU para animaciones */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateZ(0);
  }
  50% {
    transform: translateY(-15px) translateZ(0);
  }
}

/* Preload de fuentes crÃ­ticas */
@font-face {
  font-family: 'Inter';
  font-display: swap;
}

/* ========================================
   8. MEJORAS DE ACCESIBILIDAD
   ======================================== */

/* Focus mejorado para navegaciÃ³n por teclado */
.nav-link:focus-visible,
.btn:focus-visible {
  outline: 3px solid #EA580C;
  outline-offset: 2px;
}

/* Contraste mejorado para text-gradient */
@media (prefers-contrast: high) {
  .text-gradient {
    background: none;
    -webkit-text-fill-color: unset;
    color: #FFFFFF;
  }
}

/* Respeto por preferencias de movimiento */
@media (prefers-reduced-motion: reduce) {
  .floating-card,
  .geometric-shape {
    animation: none;
  }
  
  .btn,
  .service-card,
  .nav-link {
    transition: none;
  }
}

/* Mejor legibilidad */
@media (prefers-contrast: high) {
  .hero-subtitle {
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
}

/* ========================================
   9. UTILIDADES ESPECÃFICAS
   ======================================== */

/* Texto con mejor contraste */
.text-high-contrast {
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Contenedor responsivo mejorado */
.container {
  max-width: var(--eco-container-7xl);
  margin: 0 auto;
  padding: 0 var(--eco-space-6);
}

/* Espaciado consistente */
.section-spacing {
  padding: var(--eco-space-20) 0;
}

@media (max-width: 768px) {
  .section-spacing {
    padding: var(--eco-space-16) 0;
  }
}

@media (max-width: 640px) {
  .section-spacing {
    padding: var(--eco-space-12) 0;
  }
}</pre></body></html>