* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  color: #334155;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navbar */
nav {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6366f1;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #6366f1;
}

.btn {
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
}

.btn-primary {
  background: #6366f1;
  color: white;
}

.btn-primary:hover {
  background: #4f46e5;
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid #6366f1;
  color: #64748b;
}

.btn-outline:hover {
  border-color: #6366f1;
  color: #6366f1;
}

/* Hero */
.hero {
  padding: 0rem 0 0rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #0f172a;
  /* margin-bottom: 1.25rem; */
  line-height: 1.15;
  padding: 1.5rem;
}

.hero .gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #6366f1;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: #64748b;
}

/* Features */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.2rem;
}

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

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: #6366f1;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #64748b;
  font-size: 0.9375rem;
}

/* Use Cases */
.use-cases {
  background: white;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.use-case {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: 10px;
}

.use-case-icon {
  font-size: 2rem;
}

.use-case-text h4 {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.use-case-text p {
  font-size: 0.875rem;
  color: #64748b;
}

/* Pricing */
.pricing {
  background: #f8fafc;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid #e2e8f0;
  transition: all 0.3s;
  text-align: center;
}

.pricing-card:hover {
  border-color: #6366f1;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.pricing-card.featured {
  border-color: #6366f1;
  position: relative;
}

.pricing-card.featured::before {
  content: 'MÁS POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: #6366f1;
  margin-bottom: 0.25rem;
}

.pricing-period {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

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

.pricing-features li {
  padding: 0.5rem 0;
  color: #64748b;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li i {
  color: #6366f1;
}

/* Integrations */
.integrations {
  text-align: center;
}

.integration-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.integration-badge {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.integration-badge i {
  font-size: 1.5rem;
  color: #6366f1;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.btn-white {
  background: white;
  color: #6366f1;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-white:hover {
  background: #f8fafc;
}

/* Footer */
footer {
  background: white;
  border-top: 1px solid #e2e8f0;
  padding: 2rem 0;
  text-align: center;
  color: #64748b;
  font-size: 0.875rem;
}

.integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 2px solid #845ef5;
  border-radius: 6px;
  background: #f9f9f9;
}

.method-image {
  width: 100px;
  height: 50px;
  object-fit: contain;
}

.method-details {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.method-icon {
  font-size: 20px;
  color: #0070ba;
}

/* Hero Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 450px;
  padding-bottom: 30px;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

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

.hero-content {
  text-align: left;
}

.hero-content h1 {
  text-align: left;
  font-size: 2rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.15;
  padding: 0;
}

.hero-content p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.hero-cta {
  justify-content: flex-start;
}

.image-placeholder {
  width: 100%;
  height: 400px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #6366f1;
}

.image-placeholder i {
  font-size: 8rem;
  color: #6366f1;
  opacity: 0.5;
}

/* ==========================================
   PAYALERT SECTION (antes YapeAlert)
   ========================================== */

.payalert {
  background: linear-gradient(180deg, #f8fafc 0%, #ede9fe 100%);
  text-align: center;
}

.payalert-badge {
  display: inline-block;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

.payalert-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.payalert-subtitle strong {
  color: #8b5cf6;
}

/* Billeteras soportadas */
.wallets-supported {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.wallet-chip {
  background: white;
  border: 2px solid #e2e8f0;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  transition: all 0.3s;
}

.wallet-chip:hover {
  border-color: #8b5cf6;
  transform: translateY(-2px);
}

.wallet-chip.more {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: white;
  border-color: transparent;
}

/* Flujo Visual */
.payalert-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.flow-step {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  width: 200px;
  position: relative;
  border: 2px solid #e2e8f0;
  transition: all 0.3s;
}

.flow-step:hover {
  border-color: #8b5cf6;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.flow-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.flow-number {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
}

.flow-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.flow-step p {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.4;
}

.flow-arrow {
  color: #8b5cf6;
  font-size: 2rem;
}

/* Demo del mensaje */
.payalert-demo {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: left;
}

.demo-phone {
  background: #1f2937;
  border-radius: 24px;
  padding: 1rem;
  width: 280px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.demo-header {
  background: #075e54;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.demo-header i {
  font-size: 1.25rem;
}

.demo-message {
  background: #ece5dd;
  padding: 1rem;
  border-radius: 0 0 12px 12px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.message-bubble {
  background: white;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.5s ease-out;
}

.message-bubble.secondary {
  animation-delay: 0.3s;
  opacity: 0.9;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wallet-icon {
  font-size: 1.75rem;
}

.message-content {
  display: flex;
  flex-direction: column;
}

.message-content strong {
  font-size: 1.1rem;
  color: #8b5cf6;
}

.message-content span {
  color: #334155;
  font-size: 0.875rem;
}

.message-content small {
  color: #94a3b8;
  font-size: 0.7rem;
}

.demo-benefits h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.25rem;
}

.demo-benefits ul {
  list-style: none;
  padding: 0;
}

.demo-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: #334155;
}

.demo-benefits li i {
  color: #8b5cf6;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.demo-benefits li strong {
  color: #0f172a;
}

/* Verificador IA */
.verificador-ia {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 2px solid #e2e8f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.verificador-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}

.verificador-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 1rem;
  border-radius: 16px;
  flex-shrink: 0;
}

.verificador-text h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.verificador-text p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.verificador-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.verificador-features span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #475569;
  font-weight: 500;
}

.verificador-features i {
  color: #10b981;
}

/* Marca Blanca */
.marca-blanca {
  background: linear-gradient(135deg, #faf5ff 0%, #f5f3ff 100%);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 2px solid #8b5cf6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.marca-blanca::before {
  content: '✨ RESELLERS';
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: white;
  padding: 0.25rem 2.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  transform: rotate(45deg);
}

.marca-blanca-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}

.marca-blanca-icon {
  font-size: 3rem;
  background: white;
  padding: 1rem;
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.15);
}

.marca-blanca-text h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.marca-blanca-text p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.marca-blanca-text strong {
  color: #8b5cf6;
}

.marca-blanca-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.marca-blanca-features span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #475569;
  font-weight: 500;
}

.marca-blanca-features i {
  color: #8b5cf6;
}

/* Características PayAlert */
.payalert-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pa-feature {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.pa-feature:hover {
  border-color: #8b5cf6;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
  transform: translateY(-4px);
}

.pa-feature i {
  font-size: 2rem;
  color: #8b5cf6;
  margin-bottom: 0.75rem;
}

.pa-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.pa-feature p {
  font-size: 0.875rem;
  color: #64748b;
}

/* Botón descarga */
.btn-download {
  margin-top: 1rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* ==========================================
   RESPONSIVE - PAYALERT
   ========================================== */

@media (max-width: 968px) {
  .payalert-flow {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .flow-step {
    width: 100%;
    max-width: 280px;
  }

  .payalert-demo {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .demo-phone {
    margin: 0 auto;
  }

  .demo-benefits {
    text-align: left;
  }

  .payalert-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .verificador-content,
  .marca-blanca-content {
    flex-direction: column;
    text-align: center;
  }

  .verificador-features,
  .marca-blanca-features {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .payalert-features {
    grid-template-columns: 1fr;
  }

  .demo-phone {
    width: 100%;
    max-width: 280px;
  }

  .wallets-supported {
    gap: 0.5rem;
  }

  .wallet-chip {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
  }

  .verificador-features span,
  .marca-blanca-features span {
    font-size: 0.75rem;
  }
}

/* FIN DE PAY ALERT */

/* Logo imagen */
.logo-img {
  height: 50px;
  width: auto;
}

/* Botón hamburguesa */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: #6366f1;
  cursor: pointer;
  padding: 0.5rem;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 22%);
    border-top: 1px solid #e2e8f0;
    border-radius: 15px;
  }

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

  .nav-links a {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
  }

  .nav-links .btn {
    text-align: center;
    width: 70%;
    padding-left: 50px;
  }

  .nav-content {
    position: relative;
  }
}

/* ==========================================
   CHANNELS SECTION
   ========================================== */

.channels {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.channel-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.channel-card:hover {
  border-color: var(--channel-color, #6366f1);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
}

.channel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--channel-color, #6366f1);
  transform: scaleX(0);
  transition: transform 0.3s;
}

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

.channel-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: white;
  background: var(--channel-color, #6366f1);
}

.channel-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.channel-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

.channel-tag {
  display: inline-block;
  background: #f1f5f9;
  color: #64748b;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* Channel Colors */
.channel-card.whatsapp {
  --channel-color: #25d366;
}
.channel-card.telegram {
  --channel-color: #0088cc;
}
.channel-card.facebook {
  --channel-color: #1877f2;
}
.channel-card.instagram {
  --channel-color: #e4405f;
}
.channel-card.tiktok {
  --channel-color: #000000;
}
.channel-card.webchat {
  --channel-color: #6366f1;
}

/* Channel Benefits */
.channel-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.channel-benefit {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.channel-benefit i {
  font-size: 2.5rem;
  color: #6366f1;
  margin-bottom: 0.75rem;
}

.channel-benefit h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.channel-benefit p {
  font-size: 0.85rem;
  color: #64748b;
}

/* Responsive Channels */
@media (max-width: 968px) {
  .channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .channel-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .channels-grid {
    grid-template-columns: 1fr;
  }

  .channel-benefits {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   INTEGRACIONES AVANZADAS
   ========================================== */

.integrations-advanced {
  background: linear-gradient(180deg, #f8fafc 0%, #ede9fe 50%, #f8fafc 100%);
}

.integration-badge-new {
  display: inline-block;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: fit-content;
}

.integration-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.flow-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.flow-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.flow-icon-box.whatsapp {
  background: #25d366;
}
.flow-icon-box.primary {
  background: #6366f1;
}
.flow-icon-box.n8n {
  background: #ff6d5a;
}
.flow-icon-box.success {
  background: #10b981;
}

.flow-box span {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.flow-arrow-box {
  font-size: 1.5rem;
  color: #6366f1;
}

.integration-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.integration-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s;
}

.integration-card:hover {
  border-color: #6366f1;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.integration-card.featured {
  border-color: #6366f1;
  background: linear-gradient(180deg, #ffffff 0%, #f5f3ff 100%);
}

.int-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.integration-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.integration-card p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.int-tag {
  display: inline-block;
  background: #f1f5f9;
  color: #64748b;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.integration-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.int-benefit {
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.int-benefit i {
  font-size: 1.5rem;
  color: #6366f1;
  margin-bottom: 0.5rem;
}

.int-benefit h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.int-benefit p {
  font-size: 0.75rem;
  color: #64748b;
}

/* ==========================================
   COMPARATIVA
   ========================================== */

.comparison {
  background: white;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
  background: #f8fafc;
  font-weight: 700;
  color: #0f172a;
  font-size: 0.9rem;
}

.comparison-table th.highlight {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
}

.comparison-table td {
  font-size: 0.875rem;
  color: #64748b;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: #334155;
}

.comparison-table td:first-child i {
  margin-right: 0.5rem;
  color: #6366f1;
}

.comparison-table td.highlight {
  background: #f5f3ff;
}

.comparison-table .text-success {
  color: #10b981;
  font-size: 1.25rem;
}

.comparison-table .text-danger {
  color: #ef4444;
  font-size: 1.25rem;
}

.comparison-table .text-warning {
  color: #f59e0b;
  font-size: 1.25rem;
}

.comparison-table .price-row td {
  background: #f8fafc;
  font-weight: 600;
}

.comparison-table .price-row td.highlight {
  background: #ede9fe;
}

.comparison-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: #64748b;
}

.comparison-legend span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Responsive */
@media (max-width: 968px) {
  .integration-cards {
    grid-template-columns: 1fr;
  }

  .integration-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .integration-flow {
    flex-direction: column;
  }

  .flow-arrow-box {
    transform: rotate(90deg);
  }
}

@media (max-width: 480px) {
  .integration-benefits-grid {
    grid-template-columns: 1fr;
  }

  .comparison-legend {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

/* ==========================================
   BOTS ESPECIALIZADOS SECTION
   ========================================== */

.bots-especializados {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.section-badge {
  display: block;
  width: fit-content;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.section-subtitle strong {
  color: #6366f1;
}

.bots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.bot-card {
  background: white;
  border-radius: 20px;
  padding: 1.75rem;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bot-card:hover {
  border-color: #6366f1;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.bot-card.featured {
  border-color: #6366f1;
  background: linear-gradient(135deg, #faf5ff 0%, #f5f3ff 100%);
}

.bot-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
}

.bot-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  animation: pulse 2s infinite;
}

/* Header del bot */
.bot-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.bot-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.bot-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.bot-target {
  font-size: 0.85rem;
  color: #6366f1;
  font-weight: 500;
  margin: 0.25rem 0 0 0;
}

/* Categorías/chips */
.bot-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.bot-categories span {
  background: #f1f5f9;
  color: #475569;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.bot-card.featured .bot-categories span {
  background: #ede9fe;
  color: #6366f1;
}

/* Features del bot */
.bot-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bot-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #475569;
  padding: 0.4rem 0;
}

.bot-features li i {
  color: #10b981;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Funcionalidades compartidas */
.shared-features {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  text-align: center;
}

.shared-features h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shared-features-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.shared-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #334155;
  font-weight: 500;
  font-size: 0.9rem;
}

.shared-feature i {
  font-size: 1.4rem;
  color: #6366f1;
}

/* ==========================================
   RESPONSIVE - BOTS SECTION
   ========================================== */

@media (max-width: 968px) {
  .bots-grid {
    grid-template-columns: 1fr;
  }

  .bot-header {
    flex-direction: row;
  }

  .shared-features-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .bot-card {
    padding: 1.25rem;
  }

  .bot-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .bot-header h3 {
    font-size: 1.1rem;
  }

  .bot-categories span {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
  }

  .shared-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .shared-feature {
    flex-direction: column;
    text-align: center;
    font-size: 0.8rem;
  }
}
