* {
  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: 2.0rem;
    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;
}

/* ==========================================
   YAPEALERT SECTION
   ========================================== */

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

.yapealert-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;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(139, 92, 246, 0); }
}

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

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

/* Flujo Visual */
.yapealert-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 */
.yapealert-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: 120px;
}

.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;
}

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

.yape-icon {
    font-size: 2rem;
}

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

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

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

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

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

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

.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;
}

/* Características YapeAlert */
.yapealert-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

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

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

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

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

/* Responsive */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .hero-content h1 {
        text-align: center;
    }

    .hero-content p {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        order: 2;
    }

    .hero-image img {
        max-width: 400px;
    }

    .image-placeholder {
        height: 300px;
    }

    .image-placeholder i {
        font-size: 6rem;
    }

    /* YapeAlert responsive */
    .yapealert-flow {
        flex-direction: column;
    }

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

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

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

    .demo-phone {
        margin: 0 auto;
    }

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

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .yapealert-features {
        grid-template-columns: 1fr;
    }

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

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }
}


/* Botón descarga YapeAlert */
.btn-download {
    margin-top: 2rem;
    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);
}

/* 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;
    }
}
