/* Reset and Base Styles */
* {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  line-height: 1.6 !important;
  color: #333 !important;
  overflow-x: hidden !important;
}

/* Navigation */
.navbar {
  position: fixed !important;
  top: 0 !important;
  width: 100% !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  z-index: 1000 !important;
  border-bottom: 1px solid #f0f0f0 !important;
  transition: all 0.3s ease !important;
}

.nav-container {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 1rem !important;
}

.nav-content {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  height: 80px !important;
}

.nav-logo .logo {
  height: 48px !important;
  width: auto !important;
}

.desktop-menu {
  display: none !important;
}

.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 3rem !important;
}

.nav-link {
  background: none !important;
  border: none !important;
  color: #374151 !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  padding: 0.5rem 0 !important;
}

.nav-link:hover {
  color: #00e8d3 !important;
}

.nav-underline {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 2px !important;
  background: #00e8d3 !important;
  transition: width 0.3s ease !important;
}

.nav-link:hover .nav-underline {
  width: 100% !important;
}

.language-selector {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  font-size: 0.875rem !important;
}

.lang-active {
  color: #00b8a3 !important;
  font-weight: 500 !important;
}

.lang-separator {
  color: #9ca3af !important;
}

.lang-inactive {
  color: #9ca3af !important;
  cursor: pointer !important;
  transition: color 0.3s ease !important;
}

.lang-inactive:hover {
  color: #00b8a3 !important;
}

.mobile-menu-button {
  display: block !important;
}

.menu-toggle {
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.hamburger {
  width: 24px !important;
  height: 2px !important;
  background: #374151 !important;
  transition: all 0.3s ease !important;
}

.mobile-menu {
  display: none !important;
  background: white !important;
  border-top: 1px solid #f0f0f0 !important;
}

.mobile-menu.active {
  display: block !important;
  animation: slideDown 0.3s ease !important;
}

.mobile-menu-content {
  padding: 1rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.mobile-nav-link {
  background: none !important;
  border: none !important;
  color: #374151 !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  padding: 0.75rem 1rem !important;
  text-align: left !important;
  transition: all 0.3s ease !important;
  border-radius: 8px !important;
}

.mobile-nav-link:hover {
  color: #00e8d3 !important;
  background: #f9fafb !important;
}

/* Hero Section */
.hero-section {
  position: relative !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: white !important;
  overflow: hidden !important;
  padding-top: 80px !important;
}

.hero-container {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 1rem !important;
  width: 100% !important;
}

.hero-content {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 4rem !important;
  align-items: center !important;
}

.hero-text {
  display: flex !important;
  flex-direction: column !important;
  gap: 2rem !important;
  animation: fadeInLeft 1s ease !important;
}

.hero-text-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
}

.hero-title {
  font-size: 3rem !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
}

.hero-title-highlight {
  color: #2982fe !important;
}

.hero-subtitle {
  font-size: 1.5rem !important;
  font-weight: 300 !important;
  color: #374151 !important;
  line-height: 1.3 !important;
}

.hero-description {
  font-size: 1.125rem !important;
  color: #6b7280 !important;
  max-width: 32rem !important;
  line-height: 1.6 !important;
}

.hero-buttons {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
}

.btn {
  padding: 1rem 2rem !important;
  border-radius: 9999px !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  border: none !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
}

.btn-primary {
  background: #2982fe !important;
  color: white !important;
}

.btn-primary:hover {
  background: #2470e6 !important;
  transform: scale(1.05) !important;
  box-shadow: 0 10px 25px rgba(41, 130, 254, 0.3) !important;
}

.btn-secondary {
  background: transparent !important;
  color: #2982fe !important;
  border: 2px solid #2982fe !important;
}

.btn-secondary:hover {
  background: #2982fe !important;
  color: white !important;
  transform: scale(1.05) !important;
  box-shadow: 0 10px 25px rgba(41, 130, 254, 0.3) !important;
}

.hero-image {
  position: relative !important;
  height: 400px !important;
  animation: fadeInRight 1s ease 0.3s both !important;
}

.hero-image-bg {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg, rgba(0, 232, 211, 0.1), rgba(41, 130, 254, 0.1)) !important;
  border-radius: 24px !important;
}

.hero-image-content {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 2rem !important;
}

.hero-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  max-width: 32rem !important;
  transition: opacity 0.5s ease !important;
}

.slider-controls {
  position: absolute !important;
  bottom: 2rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 0.75rem !important;
}

.slider-dot {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background: #d1d5db !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.slider-dot:hover {
  background: #9ca3af !important;
}

.slider-dot.active {
  background: #2982fe !important;
  transform: scale(1.25) !important;
}

/* Nosotros Section */
.nosotros-section {
  padding: 4rem 0 !important;
  background: linear-gradient(135deg, #00e8d3, #2982fe) !important;
  position: relative !important;
  overflow: hidden !important;
}

.nosotros-bg {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0.1 !important;
}

.bg-circle {
  position: absolute !important;
  background: white !important;
  border-radius: 50% !important;
}

.bg-circle-1 {
  top: 5rem !important;
  left: 2.5rem !important;
  width: 8rem !important;
  height: 8rem !important;
}

.bg-circle-2 {
  bottom: 5rem !important;
  right: 2.5rem !important;
  width: 6rem !important;
  height: 6rem !important;
}

.bg-circle-3 {
  top: 50% !important;
  left: 25% !important;
  width: 4rem !important;
  height: 4rem !important;
}

.section-container {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 1rem !important;
  position: relative !important;
  z-index: 10 !important;
}

.nosotros-content {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 4rem !important;
  align-items: center !important;
}

.nosotros-image {
  position: relative !important;
  height: 24rem !important;
  animation: fadeInLeft 1s ease !important;
}

.nosotros-image-content {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.nosotros-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  max-width: 20rem !important;
}

.nosotros-text {
  color: white !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2rem !important;
  animation: fadeInRight 1s ease !important;
}

.nosotros-title {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

.nosotros-description {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
  font-size: 1.125rem !important;
  line-height: 1.6 !important;
}

.nosotros-paragraph {
  color: rgba(255, 255, 255, 0.95) !important;
}

.nosotros-paragraph-secondary {
  color: rgba(255, 255, 255, 0.9) !important;
}

.text-highlight {
  font-weight: 600 !important;
  color: white !important;
}

/* Servicios Section */
.servicios-section {
  padding: 4rem 0 !important;
  background: white !important;
}

.section-header {
  text-align: center !important;
  margin-bottom: 4rem !important;
  animation: fadeInUp 1s ease !important;
}

.section-title {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  color: #111827 !important;
  margin-bottom: 1.5rem !important;
}

.title-highlight {
  color: #2982fe !important;
}

.section-description {
  font-size: 1.25rem !important;
  color: #6b7280 !important;
  max-width: 48rem !important;
  margin: 0 auto !important;
  line-height: 1.6 !important;
}

.servicios-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 5rem !important;
}

.servicio {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 3rem !important;
  align-items: flex-start !important;
  animation: fadeInLeft 1s ease !important;
}

.servicio-reverse {
  animation: fadeInRight 1s ease !important;
}

.servicio-text {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
}

.servicio-header {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
}

.servicio-icon {
  width: 48px !important;
  height: 48px !important;
  border-radius: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: white !important;
}

.servicio-icon-marketing {
  background: linear-gradient(135deg, #00e8d3, #2982fe) !important;
}

.servicio-icon-desarrollo {
  background: linear-gradient(135deg, #2982fe, #0a70ff) !important;
}

.servicio-icon-qa {
  background: linear-gradient(135deg, #0a70ff, #2982fe) !important;
}

.servicio-icon-ia {
  background: linear-gradient(135deg, #00e8d3, #0a70ff) !important;
}

.servicio-title {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: #111827 !important;
}

.servicio-description {
  font-size: 1.125rem !important;
  color: #6b7280 !important;
  line-height: 1.6 !important;
}

.servicio-features {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}

.features-title {
  font-weight: 600 !important;
  color: #111827 !important;
}

.features-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.feature-item {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
}

.feature-icon {
  color: #00e8d3 !important;
  flex-shrink: 0 !important;
}

.servicio-features-desarrollo .feature-icon {
  color: #2982fe !important;
}

.servicio-features-qa .feature-icon {
  color: #0a70ff !important;
}

.servicio-features-ia .feature-icon {
  color: #00e8d3 !important;
}

.servicio-automation {
  background: linear-gradient(135deg, rgba(0, 232, 211, 0.05), rgba(0, 232, 211, 0.1)) !important;
  padding: 1.5rem !important;
  border-radius: 16px !important;
  border-left: 4px solid #00e8d3 !important;
}

.servicio-automation-desarrollo {
  background: linear-gradient(135deg, rgba(41, 130, 254, 0.05), rgba(41, 130, 254, 0.1)) !important;
  border-left-color: #2982fe !important;
}

.servicio-automation-qa {
  background: linear-gradient(135deg, rgba(10, 112, 255, 0.05), rgba(10, 112, 255, 0.1)) !important;
  border-left-color: #0a70ff !important;
}

.automation-header {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  margin-bottom: 0.75rem !important;
}

.automation-icon {
  color: #00e8d3 !important;
}

.servicio-automation-desarrollo .automation-icon {
  color: #2982fe !important;
}

.servicio-automation-qa .automation-icon {
  color: #0a70ff !important;
}

.automation-title {
  font-weight: 600 !important;
  color: #111827 !important;
}

.automation-description {
  color: #374151 !important;
  line-height: 1.6 !important;
}

.servicio-image {
  background: linear-gradient(135deg, rgba(0, 232, 211, 0.1), rgba(41, 130, 254, 0.1)) !important;
  border-radius: 24px !important;
  padding: 2rem !important;
  height: 24rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.servicio-reverse .servicio-image {
  background: linear-gradient(135deg, rgba(41, 130, 254, 0.1), rgba(10, 112, 255, 0.1)) !important;
}

.servicio-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  max-width: 20rem !important;
}

/* Clientes Section */
.clientes-section {
  padding: 4rem 0 !important;
  background: #f9fafb !important;
}

.clientes-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0 !important;
  align-items: center !important;
  justify-items: center !important;
  animation: fadeInUp 1s ease 0.2s both !important;
}

.cliente-card {
  width: 14rem !important;
  height: 14rem !important;
  background: #f9fafb !important;
  border-radius: 8px !important;
  border: 1px solid #f3f4f6 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 2rem !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
}

.cliente-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
  transform: scale(1.05) !important;
}

.cliente-logo {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  filter: grayscale(100%) !important;
  transition: filter 0.3s ease !important;
}

.cliente-card:hover .cliente-logo {
  filter: grayscale(0%) !important;
}

/* Valores Section */
.valores-section {
  padding: 4rem 0 !important;
  background: white !important;
}

.valores-description {
  max-width: 64rem !important;
  margin: 0 auto !important;
}

.section-description-large {
  font-size: 1.25rem !important;
  color: #6b7280 !important;
  line-height: 1.6 !important;
}

.valores-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 2rem !important;
}

.valor-card {
  border: none !important;
  background: white !important;
  transition: all 0.5s ease !important;
  cursor: pointer !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.valor-card:hover {
  transform: scale(1.05) translateY(-8px) !important;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15) !important;
}

.valor-card-1:hover {
  background: linear-gradient(135deg, rgba(0, 232, 211, 0.05), rgba(0, 232, 211, 0.1)) !important;
}

.valor-card-2:hover {
  background: linear-gradient(135deg, rgba(41, 130, 254, 0.05), rgba(41, 130, 254, 0.1)) !important;
}

.valor-card-3:hover {
  background: linear-gradient(135deg, rgba(10, 112, 255, 0.05), rgba(10, 112, 255, 0.1)) !important;
}

.valor-card-4:hover {
  background: linear-gradient(135deg, rgba(0, 232, 211, 0.05), rgba(0, 232, 211, 0.1)) !important;
}

.valor-content {
  padding: 2rem !important;
}

.valor-header {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  margin-bottom: 1rem !important;
}

.valor-icon {
  color: #00e8d3 !important;
  transition: color 0.3s ease !important;
}

.valor-card-2 .valor-icon {
  color: #2982fe !important;
}

.valor-card-3 .valor-icon {
  color: #0a70ff !important;
}

.valor-card-2:hover .valor-icon {
  color: #2982fe !important;
}

.valor-card-3:hover .valor-icon {
  color: #0a70ff !important;
}

.valor-title {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #111827 !important;
  transition: color 0.3s ease !important;
}

.valor-card-1:hover .valor-title {
  color: #00e8d3 !important;
}

.valor-card-2:hover .valor-title {
  color: #2982fe !important;
}

.valor-card-3:hover .valor-title {
  color: #0a70ff !important;
}

.valor-card-4:hover .valor-title {
  color: #00e8d3 !important;
}

.valor-description {
  color: #6b7280 !important;
}

/* Contacto Section */
.contacto-section {
  padding: 4rem 0 !important;
  background: linear-gradient(135deg, #111827, #374151) !important;
}

.contacto-title {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  color: white !important;
  margin-bottom: 1.5rem !important;
}

.title-highlight-white {
  color: #2982fe !important;
}

.contacto-subtitle {
  font-size: 1.25rem !important;
  color: #d1d5db !important;
  max-width: 48rem !important;
  margin: 0 auto !important;
}

.contacto-content {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 4rem !important;
}

.contacto-form-container {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: all 0.5s ease !important;
  animation: fadeInLeft 1s ease !important;
}

.contacto-form-container:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.wpcf7-form {
  padding: 2rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
}

.form-row {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1.5rem !important;
}

.form-group {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.form-label {
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: #d1d5db !important;
}

.form-input,
.form-textarea {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  padding: 0.75rem 1rem !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af !important;
}

.form-input:focus,
.form-textarea:focus {
  outline: none !important;
  border-color: #00e8d3 !important;
  box-shadow: 0 0 0 3px rgba(0, 232, 211, 0.1) !important;
}

.form-submit {
  width: 100% !important;
  background: rgb(59 130 246 / var(--tw-bg-opacity, 1)) !important;
  color: white !important;
  font-weight: 500 !important;
  padding: 1rem 2rem !important;
  border-radius: 9999px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  font-size: 1rem !important;
}

.form-submit:hover {
  background: #00d4c0 !important;
  transform: scale(1.05) !important;
  box-shadow: 0 10px 25px rgba(0, 232, 211, 0.3) !important;
}

.contacto-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 2rem !important;
  animation: fadeInRight 1s ease !important;
}

.contacto-cta {
  margin-bottom: 2rem !important;
}

.btn-reunion {
  width: 100% !important;
  background: #2982fe !important;
  color: white !important;
  font-weight: 500 !important;
  padding: 1rem 2rem !important;
  border-radius: 9999px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  font-size: 1rem !important;
}

.btn-reunion:hover {
  background: #2470e6 !important;
  transform: scale(1.05) !important;
  box-shadow: 0 10px 25px rgba(41, 130, 254, 0.3) !important;
}

.contacto-details {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
}

.contacto-item {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  transition: transform 0.3s ease !important;
}

.contacto-item:hover {
  transform: scale(1.1) !important;
}

.contacto-icon {
  width: 48px !important;
  height: 48px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: white !important;
  transition: transform 0.3s ease !important;
}

.contacto-icon-phone {
  background: #2982fe !important;
}

.contacto-icon-email {
  background: #2982fe !important;
}

.contacto-icon-location {
  background: #0a70ff !important;
}

.contacto-text {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.25rem !important;
}

.contacto-label {
  font-weight: 600 !important;
  color: white !important;
}

.contacto-value {
  color: #d1d5db !important;
}

/* Footer */
.footer {
  background: #111827 !important;
  color: white !important;
  padding: 3rem 0 !important;
  border-top: 1px solid #374151 !important;
}

.footer-container {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 1rem !important;
}

.footer-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 1rem !important;
  text-align: center !important;
}

.footer-brand {
  margin-bottom: 1rem !important;
}

.footer-logo-text {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: #00e8d3 !important;
}

.footer-tagline {
  font-size: 0.75rem !important;
  color: #9ca3af !important;
  font-weight: 400 !important;
  letter-spacing: 0.1em !important;
}

.footer-copyright {
  color: #9ca3af !important;
}

.footer-company {
  color: #00e8d3 !important;
  font-weight: 600 !important;
}

.footer-slogan {
  color: #9ca3af !important;
  margin-top: 0.25rem !important;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0 !important;
    transform: translateX(-30px) !important;
  }
  to {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0 !important;
    transform: translateX(30px) !important;
  }
  to {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0 !important;
    transform: translateY(30px) !important;
  }
  to {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

@keyframes slideDown {
  from {
    opacity: 0 !important;
    transform: translateY(-10px) !important;
  }
  to {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/* Responsive Design */
@media (max-width: 767px) {
  .marketing-order {
    order: 2 !important;
  }
  .qa-order {
    order: 2 !important;
  }
  .cliente-card {
  	width: 11rem !important;
  	height: 11rem !important;
  	padding: 1rem !important;
  }
  .hero-image {
    display: none !important;
  }
  .slider-controls {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .desktop-menu {
    display: block !important;
  }

  .mobile-menu-button {
    display: none !important;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr !important;
  }

  .hero-title {
    font-size: 4rem !important;
  }

  .hero-subtitle {
    font-size: 2rem !important;
  }

  .hero-buttons {
    flex-direction: row !important;
  }

  .nosotros-content {
    grid-template-columns: 1fr 1fr !important;
  }

  .servicio {
    grid-template-columns: 1fr 1fr !important;
  }

  .servicio-reverse {
    grid-template-columns: 1fr 1fr !important;
  }

  .servicio-reverse .servicio-text {
    order: 2 !important;
  }

  .servicio-reverse .servicio-image {
    order: 1 !important;
  }

  .clientes-grid {
    grid-template-columns: repeat(5, 1fr) !important;
  }

  .valores-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .contacto-content {
    grid-template-columns: 1fr 1fr !important;
  }

  .form-row {
    grid-template-columns: 1fr 1fr !important;
  }

  .footer-content {
    flex-direction: row !important;
    justify-content: space-between !important;
    text-align: left !important;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem !important;
  }

  .hero-subtitle {
    font-size: 2.5rem !important;
  }
}
