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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Haciendo el header más transparente como en el preview */
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  transition: transform 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  font-family: "Arial", sans-serif;
}

.logo-img {
  height: 2rem;
  width: auto;
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #6b7280;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #2563eb;
}

.header-buttons {
  display: none;
  gap: 1rem;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger {
  width: 1.5rem;
  height: 2px;
  background: #374151;
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 2px;
  background: #374151;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav-link {
  padding: 0.75rem 0;
  text-decoration: none;
  color: #6b7280;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: #2563eb;
}

.mobile-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

/* Buttons */
.btn {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Forzando colores de botones con !important para asegurar contraste */
.header .btn-primary {
  background: #2563eb !important;
  color: #ffffff !important;
  border: 1px solid #2563eb !important;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent !important;
  border: 1px solid #2563eb !important;
  color: #2563eb !important;
}

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.1) !important;
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
  backdrop-filter: blur(10px);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  transform: scale(1.05);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Hero Section - Asegurando background azul con máxima especificidad */
.hero {
  position: relative;
  padding: 5rem 0 8rem;
  /* Usando gradiente directamente en lugar de fondo sólido */
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%) !important;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
}

/* Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.6);
}

.particle-1 {
  top: 2.5rem;
  left: 2.5rem;
  width: 1rem;
  height: 1rem;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.particle-2 {
  top: 5rem;
  right: 5rem;
  width: 0.75rem;
  height: 0.75rem;
  background: rgba(59, 130, 246, 0.5);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.particle-3 {
  top: 10rem;
  left: 25%;
  width: 1.25rem;
  height: 1.25rem;
  background: rgba(6, 182, 212, 0.4);
  animation: bounce 1s infinite;
}

.particle-4 {
  top: 15rem;
  right: 33%;
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(59, 130, 246, 0.6);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  animation-delay: 0.5s;
}

.particle-5 {
  bottom: 10rem;
  left: 5rem;
  width: 1rem;
  height: 1rem;
  background: rgba(6, 182, 212, 0.5);
  animation: pulse 2s cubic-bezier(0.4, 0, 0, 1) infinite;
  animation-delay: 0.7s;
}

.particle-6 {
  bottom: 5rem;
  right: 2.5rem;
  width: 0.75rem;
  height: 0.75rem;
  background: rgba(59, 130, 246, 0.6);
  animation: bounce 1s infinite;
  animation-delay: 1s;
}

/* Circles */
.circle {
  position: absolute;
  border: 2px solid rgba(6, 182, 212, 0.3);
  border-radius: 50%;
}

.circle-1 {
  top: 8rem;
  left: 33%;
  width: 4rem;
  height: 4rem;
  animation: ping 3s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.circle-2 {
  bottom: 8rem;
  right: 25%;
  width: 5rem;
  height: 5rem;
  border-color: rgba(59, 130, 246, 0.2);
  animation: pulse 3s cubic-bezier(0.4, 0, 0, 1) infinite;
}

/* Lines */
.lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.line-1 {
  animation: pulse 3s ease-in-out infinite;
}

.line-2 {
  animation: pulse 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.line-3 {
  animation: pulse 3s ease-in-out infinite;
  animation-delay: 1s;
}

/* Geometric shapes */
.geometric {
  position: absolute;
  border: 2px solid rgba(6, 182, 212, 0.4);
}

.geometric-1 {
  top: 8rem;
  right: 25%;
  width: 3rem;
  height: 3rem;
  transform: rotate(45deg);
  animation: spin 5s linear infinite;
}

.geometric-2 {
  bottom: 8rem;
  left: 25%;
  width: 2.5rem;
  height: 2.5rem;
  border-color: rgba(59, 130, 246, 0.3);
  animation: pulse 2s cubic-bezier(0.4, 0, 0, 1) infinite;
}

.geometric-3 {
  top: 50%;
  right: 2.5rem;
  width: 2rem;
  height: 2rem;
  background: rgba(6, 182, 212, 0.2);
  transform: rotate(12deg);
  animation: bounce 2s ease-in-out infinite;
}

/* Hero Content - Asegurando z-index y colores de texto */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 6xl;
  margin: 0 auto;
}

/* Agregando altura fija al hero-title */
.hero-title {
  margin-bottom: 3rem;
  color: #ffffff !important;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: #ffffff !important;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Asegurando color del highlight */
.hero-title .highlight {
  display: block;
  color: #22d3ee !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-container {
  margin-bottom: 3rem;
}

/* Asegurando background del carousel */
.carousel-content {
  /* Haciendo el carousel más prominente con borde brillante y sombra */
  background: rgba(30, 64, 175, 0.8) !important;
  backdrop-filter: blur(16px);
  border-radius: 1rem;
  padding: 2rem;
  border: 2px solid rgba(34, 211, 238, 0.6);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 30px rgba(34, 211, 238, 0.3);
  transition: all 1s ease-in-out;
}

/* Forzando colores de texto del carousel */
/* Quitando el fondo individual del texto para que use el fondo del contenedor */
.carousel-main {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  transition: all 1s ease-in-out;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-sub {
  color: #bfdbfe !important;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 1s ease-in-out;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Adding carousel indicators styles */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.indicator.active {
  width: 2rem;
  border-radius: 0.25rem;
  background: #ffffff;
}
/* End carousel indicators styles */

.hero-description {
  margin-bottom: 3rem;
}

/* Asegurando color de descripción */
/* Quitando fondo y borde para hacer la descripción transparente */
.hero-description p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95) !important;
  line-height: 1.75;
  max-width: 4xl;
  margin: 0 auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  padding: 1.5rem 2rem;
}

.legal-button {
  margin-bottom: 3rem;
}

.uber-quote {
  margin-bottom: 4rem;
}

.quote-container {
  background: rgba(30, 64, 175, 0.6) !important;
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-container p {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.125rem;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  /* Revirtiendo a gradiente azul como en la versión anterior */
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.feature-icon svg {
  color: white;
}

.feature-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.75;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 0.5rem;
  max-width: 4xl;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.modal-close {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #374151;
}

.modal-body {
  padding: 1.5rem;
  color: #374151;
}

.modal-intro {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.modal-body h3 {
  font-weight: 700;
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.legal-quote {
  background: #dbeafe;
  border-radius: 0.5rem;
  padding: 1rem;
  border-left: 4px solid #3b82f6;
  margin: 1rem 0;
}

.legal-quote p {
  font-style: italic;
  color: #1e40af;
  line-height: 1.75;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
}

/* Agregando estilos para todas las nuevas secciones */

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 3xl;
  margin: 0 auto;
  line-height: 1.75;
}

/* History Section */
.history-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: transparent;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-4px);
}

.timeline-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  /* Revirtiendo a gradiente azul como en la versión anterior */
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

.timeline-icon svg {
  color: white;
}

.timeline-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.5rem 0;
}

.timeline-item p {
  color: #6b7280;
  margin: 0;
}

/* What Is Section */
.what-is-section {
  padding: 5rem 0;
  background: white;
}

.process-diagrams {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

.process-diagram {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
}

.process-diagram h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  text-align: center;
}

.process-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  min-width: 100px;
  text-align: center;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  /* Revirtiendo a gradiente azul como en la versión anterior */
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  border-radius: 50%;
  color: white;
}

.process-step span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #374151;
}

.arrow {
  font-size: 1.25rem;
  color: #6b7280;
  font-weight: bold;
}

.pac-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 150px;
}

/* Rediseñando pac-item con formato de benefit-card */
.pac-item {
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border-left: 4px solid #2563eb;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 50px;
}

.pac-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pac-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.pac-icon svg {
  color: #2563eb;
  width: 16px;
  height: 16px;
}

.pac-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #2563eb;
  flex-shrink: 0;
  min-width: 50px;
  text-align: center;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
  background: #f9fafb;
  color: #1f2937;
}

.benefits-section .section-header h2 {
  color: #1f2937;
}

.benefits-section .section-header p {
  color: #6b7280;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border-left: 4px solid #2563eb;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 100px;
}

.benefit-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}

.benefit-icon svg {
  color: #2563eb;
  width: 32px;
  height: 32px;
}

.benefit-content {
  flex: 1;
}

.benefit-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.25rem 0;
}

.benefit-content p {
  color: #6b7280;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.benefit-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #2563eb;
  flex-shrink: 0;
  min-width: 80px;
  text-align: center;
}

/* Use Cases Section */
.use-cases-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.use-case-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.use-case-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: #3b82f6;
  border-radius: 50%;
  color: white;
  margin: 0 auto 1rem;
}

.use-case-icon svg {
  color: white;
}

.use-case-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.use-case-card p {
  color: #6b7280;
  margin-bottom: 1rem;
}

.use-case-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.use-case-card li {
  color: #374151;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

/* Trust Section */
.trust-section {
  padding: 5rem 0;
  background: white;
}

.trust-quote {
  font-size: 1.25rem;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 2rem;
  font-style: italic;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.trust-item {
  text-align: center;
  padding: 2rem;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  /* Cambiando de gradiente a color sólido #E6EBF7 */
  background: #e6ebf7;
  border-radius: 50%;
  color: white;
  margin: 0 auto 1rem;
}

.trust-icon svg {
  color: #2563eb;
}

.trust-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.trust-item p {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.service-tabs {
  margin-top: 3rem;
}

.tab-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  color: #6b7280;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: #2563eb;
  border-color: #2563eb;
  color: white;
}

.tab-btn:hover:not(.active) {
  border-color: #2563eb;
  color: #2563eb;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.service-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.badge {
  padding: 0.25rem 0.75rem;
  background: #2563eb;
  color: white;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-outline {
  background: transparent;
  border: 1px solid #2563eb;
  color: #2563eb;
}

.service-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: #374151;
  font-size: 0.875rem;
  border-bottom: 1px solid #f3f4f6;
}

.service-features li:last-child {
  border-bottom: none;
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
  background: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: #2563eb;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.price {
  margin-bottom: 2rem;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #2563eb;
}

.period {
  color: #6b7280;
  font-size: 1rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: #374151;
  font-size: 0.875rem;
}

.pricing-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.pricing-footer p {
  color: #6b7280;
  margin-bottom: 1rem;
}

/* Marketplace Section */
.marketplace-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.marketplace-section .section-header h2 {
  color: white;
}

.marketplace-section .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.marketplace-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.api-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.api-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.api-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.2);
}

.api-badge {
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  background: #f59e0b;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.api-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #dbeafe;
  border-radius: 0.5rem;
}

.api-icon svg {
  color: #2563eb;
}

.api-category {
  background: #3b82f6;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
}

.api-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.api-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.api-price {
  margin-bottom: 1.5rem;
}

.api-price .amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
}

.api-price .period {
  color: #6b7280;
  font-size: 0.875rem;
}

.marketplace-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.marketplace-footer p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  /* Cambiando de gradiente a color sólido #E6EBF7 */
  background: #e6ebf7;
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

.contact-icon svg {
  color: #2563eb;
}

.contact-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 0.5rem 0;
}

.contact-item p {
  color: #6b7280;
  margin: 0;
  font-size: 0.875rem;
}

.contact-item a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #1e40af;
  text-decoration: underline;
}

.form-card {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-note {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 1rem;
  text-align: center;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
  color: white;
  padding: 3rem 0 1rem;
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.footer-bg .particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.6);
}

.footer-bg .particle-1 {
  top: 2.5rem;
  left: 4rem;
  width: 0.75rem;
  height: 0.75rem;
  animation: pulse 2s ease-in-out infinite;
}

.footer-bg .particle-2 {
  top: 5rem;
  right: 6rem;
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  animation: ping 2s ease-in-out infinite;
}

.footer-bg .particle-3 {
  bottom: 5rem;
  left: 33%;
  width: 1rem;
  height: 1rem;
  background: rgba(6, 182, 212, 0.5);
  animation: bounce 2s ease-in-out infinite;
}

.footer-bg .particle-4 {
  bottom: 2.5rem;
  right: 25%;
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.6);
  animation: ping 2s ease-in-out infinite;
  animation-delay: 0.7s;
}

.footer-bg .particle-5 {
  top: 50%;
  left: 2.5rem;
  width: 0.75rem;
  height: 0.75rem;
  background: rgba(6, 182, 212, 0.55);
  animation: pulse 2s ease-in-out infinite;
  animation-delay: 1s;
}

.footer-bg .particle-6 {
  top: 33%;
  right: 4rem;
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.5);
  animation: ping 2s ease-in-out infinite;
  animation-delay: 0.3s;
}

.footer-bg .lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.footer-bg .line-1 {
  animation: pulse 3s ease-in-out infinite;
}

.footer-bg .line-2 {
  animation: pulse 3s ease-in-out infinite;
  animation-delay: 0.7s;
}

.footer-bg .line-3 {
  animation: pulse 3s ease-in-out infinite;
  animation-delay: 1s;
}

.footer-bg .geometric {
  position: absolute;
  border: 2px solid rgba(6, 182, 212, 0.4);
}

.footer-bg .geometric-1 {
  top: 4rem;
  right: 33%;
  width: 2rem;
  height: 2rem;
  transform: rotate(45deg);
  animation: spin 5s linear infinite;
}

.footer-bg .geometric-2 {
  bottom: 4rem;
  left: 20%;
  width: 1.5rem;
  height: 1.5rem;
  border-color: rgba(255, 255, 255, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.footer-bg .geometric-3 {
  top: 25%;
  left: 66%;
  width: 1.25rem;
  height: 1.25rem;
  border-color: rgba(6, 182, 212, 0.35);
  transform: rotate(12deg);
  animation: pulse 2s ease-in-out infinite;
  animation-delay: 0.5s;
}

.footer-bg .circle {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.footer-bg .circle-1 {
  top: 2rem;
  left: 50%;
  width: 3rem;
  height: 3rem;
  animation: pulse 3s ease-in-out infinite;
}

.footer-bg .circle-2 {
  bottom: 2rem;
  right: 50%;
  width: 2.5rem;
  height: 2.5rem;
  border-color: rgba(6, 182, 212, 0.25);
  animation: pulse 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.footer-bg .circle-3 {
  top: 50%;
  right: 25%;
  width: 3.5rem;
  height: 3.5rem;
  border-color: rgba(255, 255, 255, 0.2);
  animation: pulse 3s ease-in-out infinite;
  animation-delay: 1.2s;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
  position: relative;
  z-index: 10;
}

.footer-main {
  max-width: 400px;
}

.footer-logo-img {
  height: 2rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-main p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

.footer-contact-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-contact-item a:hover {
  color: #22d3ee;
  text-decoration: underline;
}

.footer-links h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

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

.footer-legal {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #2563eb !important;
  color: white !important;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.scroll-to-top:hover {
  background: #1e40af !important;
  transform: translateY(-2px);
}

/* Animations */
@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

/* Responsive Design */
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .timeline {
    flex-direction: row;
    justify-content: space-between;
  }

  .timeline-item {
    flex-direction: column;
    text-align: center;
    flex: 1;
  }

  .process-flow {
    flex-wrap: nowrap;
  }

  .arrow {
    display: block;
  }
}

@media (min-width: 1100px) {
  .nav-desktop {
    display: flex;
  }

  .header-buttons {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .contact-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }

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

@media (min-width: 1024px) {
  .process-diagrams {
    flex-direction: row;
    gap: 1.5rem;
  }

  .process-diagram {
    flex: 1;
  }
}
