/* ========================================
   OVERRIDE FINAL PARA DISEÑO PROFESIONAL
   ======================================== */

/* Asegurar que el hero tenga fondo blanco/claro */
.hero {
  background: #ffffff !important;
  min-height: 90vh !important;
}

/* Eliminar cualquier fondo oscuro residual */
.hero::before,
.hero::after {
  display: none !important;
}

/* Título principal con color corporativo */
.hero-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 3rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #111827 !important;
  margin-bottom: 1.5rem !important;
  letter-spacing: -0.02em !important;
}

/* Texto destacado en azul corporativo */
.hero-title .text-gradient {
  background: none !important;
  color: #1e40af !important;
  -webkit-text-fill-color: #1e40af !important;
  font-weight: 700 !important;
}

/* Subtítulo profesional */
.hero-subtitle {
  font-size: 1.25rem !important;
  color: #4b5563 !important;
  line-height: 1.6 !important;
  margin-bottom: 2.5rem !important;
  font-weight: 400 !important;
}

/* Botones corporativos */
.btn-primary {
  background: #1e40af !important;
  background-image: none !important;
  color: white !important;
  padding: 0.875rem 2rem !important;
  font-weight: 500 !important;
  border-radius: 6px !important;
  border: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1) !important;
  transition: all 0.2s ease !important;
}

.btn-primary:hover {
  background: #1e3a8a !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

.btn-secondary {
  background: white !important;
  background-image: none !important;
  color: #1e40af !important;
  border: 2px solid #e5e7eb !important;
  padding: 0.75rem 2rem !important;
  font-weight: 500 !important;
  border-radius: 6px !important;
  transition: all 0.2s ease !important;
}

.btn-secondary:hover {
  background: #f9fafb !important;
  border-color: #d1d5db !important;
}

/* Navegación profesional */
.header {
  background: white !important;
  border-bottom: 1px solid #e5e7eb !important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.logo-text {
  color: #111827 !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
}

.nav-link {
  color: #4b5563 !important;
  font-weight: 500 !important;
}

.nav-link:hover {
  color: #1e40af !important;
}

/* Cards profesionales */
.service-card,
.feature-card,
.floating-card {
  background: white !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1) !important;
  border-radius: 8px !important;
  animation: none !important;
}

.service-card:hover,
.feature-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-2px) !important;
}

/* Eliminar elementos no profesionales */
.geometric-shape,
.shape-1,
.shape-2,
.shape-3,
.floating-icon,
.gradient-bg,
.animated-bg {
  display: none !important;
}

/* Títulos de sección */
.section-title {
  font-family: 'Poppins', sans-serif !important;
  color: #111827 !important;
  font-weight: 700 !important;
}

/* Eliminar todas las animaciones flotantes */
@keyframes float,
@keyframes float-optimized,
@keyframes rotate,
@keyframes pulse {
  from { transform: none !important; }
  to { transform: none !important; }
}

/* Footer profesional */
.footer {
  background: #111827 !important;
  color: #9ca3af !important;
}

/* Formularios limpios */
input[type="text"],
input[type="email"],
textarea,
select {
  border: 1px solid #d1d5db !important;
  border-radius: 6px !important;
  padding: 0.75rem 1rem !important;
  font-size: 1rem !important;
}

input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  border-color: #1e40af !important;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1) !important;
}

/* Asegurar que el contenido sea legible */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  color: #111827 !important;
  background: #ffffff !important;
}