.ia-landing * { font-family: 'Inter', 'Rubik', sans-serif; }
.ia-landing {
    background: #080e27;
    color: #c8d6e5;
    overflow-x: hidden;
}

.hero-ia {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 50%, rgba(33,55,126,0.35) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(241,131,24,0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 60% 80%, rgba(56,97,251,0.15) 0%, transparent 50%),
                #080e27;
}
.hero-ia::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(241,131,24,0.1), transparent 70%);
    top: -150px; right: -100px;
    border-radius: 50%;
    animation: pulse-glow 6s ease-in-out infinite alternate;
}
.hero-ia::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(33,55,126,0.2), transparent 70%);
    bottom: -100px; left: -50px;
    border-radius: 50%;
    animation: pulse-glow 8s ease-in-out infinite alternate-reverse;
}
@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 1; }
}
.hero-ia .hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(241,131,24,0.1);
    border: 1px solid rgba(241,131,24,0.3);
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #f18318;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}
.hero-badge i { font-size: 0.7rem; color: #f18318; }
.hero-ia h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
}
.hero-ia h1 span {
    background: linear-gradient(135deg, #f18318, #ffa94d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-ia .hero-sub {
    font-size: 1.2rem;
    color: #8899b8;
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-ia .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f18318, #d8700a);
    color: #fff !important;
    padding: 16px 36px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(241,131,24,0.3);
}
.hero-ia .hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(241,131,24,0.5);
}
.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce-down 2s infinite;
}
.scroll-indicator i {
    font-size: 1.5rem;
    color: rgba(241,131,24,0.5);
}
@keyframes bounce-down {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(12px); }
}

.ia-section {
    padding: 100px 0;
    position: relative;
}
.ia-section.alt-bg {
    background: linear-gradient(180deg, rgba(33,55,126,0.06) 0%, rgba(8,14,39,1) 100%);
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(241,131,24,0.1);
    border: 1px solid rgba(241,131,24,0.25);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #f18318;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.15;
}
.section-desc {
    font-size: 1.1rem;
    color: #8899b8;
    max-width: 600px;
    line-height: 1.7;
}

.int-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 14px 24px;
    color: #c8d6e5;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.int-badge:hover {
    background: rgba(241,131,24,0.08);
    border-color: rgba(241,131,24,0.3);
    transform: translateY(-2px);
}
.int-badge i { font-size: 1.4rem; color: #f18318; }

.plan-glass {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    min-height: 580px;
    max-height: 580px;
    height: 580px;
}
.plan-glass:hover {
    transform: translateY(-10px);
    border-color: rgba(241,131,24,0.3);
    box-shadow: 0 20px 60px rgba(241,131,24,0.08);
}
.plan-glass.featured {
    border-color: rgba(241,131,24,0.4);
    background: rgba(241,131,24,0.04);
    box-shadow: 0 0 60px rgba(241,131,24,0.06);
}
.plan-glass .plan-top {
    padding: 25px 20px 0;
    text-align: center;
    min-height: 100px;
}
.plan-tag {
    display: inline-block;
    background: linear-gradient(135deg, #f18318, #ffa94d);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}
.plan-glass h3 {
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 15px;
    min-height: 28px;
}
.plan-price-block {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 20px;
    min-height: 100px;
}
.plan-price-block .amount {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.plan-price-block .amount small {
    font-size: 0.9rem;
    font-weight: 500;
    color: #8899b8;
}
.plan-price-block .period {
    font-size: 0.8rem;
    color: #5a6e8a;
    margin-top: 3px;
}
.plan-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241,131,24,0.15), transparent);
    margin: 0 20px;
}
.plan-features {
    padding: 20px 20px 15px;
    list-style: none;
    margin: 0;
    flex-grow: 1;
    overflow-y: auto;
    max-height: 250px;
    scrollbar-width: thin;
    scrollbar-color: rgba(241, 131, 24, 0.3) rgba(255, 255, 255, 0.05);
}

/* Scrollbar personalizado para Webkit (Chrome, Safari, Edge) */
.plan-features::-webkit-scrollbar {
    width: 4px;
}

.plan-features::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.plan-features::-webkit-scrollbar-thumb {
    background: rgba(241, 131, 24, 0.4);
    border-radius: 10px;
    transition: background 0.3s;
}

.plan-features::-webkit-scrollbar-thumb:hover {
    background: rgba(241, 131, 24, 0.6);
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #a0b0c8;
}
.plan-features li i {
    color: #f18318;
    margin-top: 2px;
    font-size: 0.8rem;
    flex-shrink: 0;
    min-width: 14px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}
.plan-features li span {
    flex: 1;
}

.crm-box {
    background: linear-gradient(135deg, rgba(241,131,24,0.06), rgba(33,55,126,0.1));
    border: 1px solid rgba(241,131,24,0.2);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    transition: all 0.3s;
}
.crm-box:hover {
    border-color: rgba(241,131,24,0.4);
    box-shadow: 0 10px 40px rgba(241,131,24,0.08);
}
.crm-box h4 { color: #fff; font-weight: 700; margin-bottom: 8px; font-size: 1.2rem; }
.crm-box p { color: #8899b8; margin-bottom: 0; max-width: 480px; }
.crm-price {
    text-align: right;
}
.crm-price .amt {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.crm-price .label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #f18318;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.benefit-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    transition: all 0.35s;
}
.benefit-card:hover {
    background: rgba(241,131,24,0.05);
    border-color: rgba(241,131,24,0.25);
    transform: translateY(-5px);
}
.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    background: rgba(241,131,24,0.1);
    color: #f18318;
}
.benefit-card h5 { color: #fff; font-weight: 700; margin-bottom: 10px; font-size: 1.05rem; }
.benefit-card p { color: #8899b8; font-size: 0.92rem; margin: 0; line-height: 1.6; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.pricing-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s;
}
.pricing-item:hover {
    border-color: rgba(241,131,24,0.35);
    background: rgba(241,131,24,0.05);
    transform: translateY(-5px);
}
.pricing-item .plan-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: #f18318;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.pricing-item .minutes {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}
.pricing-item .minutes-label {
    font-size: 0.8rem;
    color: #5a6e8a;
    margin-bottom: 20px;
}
.pricing-item .price-tag {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f18318;
}
.pricing-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241,131,24,0.15), transparent);
    margin: 20px 0 16px;
}
.pricing-details {
    text-align: left;
}
.detail-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.82rem;
    color: #8899b8;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.detail-row:last-child { border-bottom: none; }
.detail-row i {
    font-size: 0.75rem;
    color: #f18318;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}
.detail-row span { flex-grow: 1; }
.detail-yes {
    color: #34d399;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.detail-val {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
}

.tl-row {
    display: flex;
    gap: 0;
    position: relative;
}
.tl-step {
    flex: 1;
    position: relative;
    padding: 0 16px;
    text-align: center;
}
.tl-dot-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}
.tl-dot-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(241,131,24,0.2);
    z-index: 0;
}
.tl-step:first-child .tl-dot-wrap::before { left: 50%; }
.tl-step:last-child .tl-dot-wrap::before { right: 50%; }
.tl-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #21377e, #3861fb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 25px rgba(33,55,126,0.3);
}
.tl-dot.active {
    background: linear-gradient(135deg, #f18318, #d8700a);
    box-shadow: 0 0 25px rgba(241,131,24,0.35);
}
.tl-step h5 {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 8px;
}
.tl-step p {
    color: #8899b8;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}
.tl-step .tl-badge {
    display: inline-block;
    background: rgba(241,131,24,0.15);
    color: #f18318;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.cta-final {
    background: linear-gradient(135deg, rgba(241,131,24,0.08), rgba(33,55,126,0.12));
    border: 1px solid rgba(241,131,24,0.15);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
}
.cta-final h2 { color: #fff; font-weight: 800; font-size: 2rem; margin-bottom: 16px; }
.cta-final p { color: #8899b8; max-width: 500px; margin: 0 auto 30px; font-size: 1.05rem; }
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f18318, #d8700a);
    color: #fff !important;
    padding: 16px 40px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(241,131,24,0.25);
}
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(241,131,24,0.4);
}

@media (max-width: 991px) {
    .hero-ia h1 { font-size: 2.5rem; }
    .section-heading { font-size: 2rem; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .tl-row { flex-direction: column; gap: 30px; }
    .tl-step { text-align: left; padding: 0; display: flex; gap: 20px; align-items: flex-start; }
    .tl-dot-wrap { margin-bottom: 0; flex-shrink: 0; }
    .tl-dot-wrap::before { display: none; }
    .crm-box { flex-direction: column; text-align: center; }
    .crm-price { text-align: center; }
}
@media (max-width: 575px) {
    .hero-ia h1 { font-size: 2rem; }
    .hero-ia { min-height: 80vh; }
    .ia-section { padding: 60px 0; }
    .pricing-grid { grid-template-columns: 1fr; }
    .section-heading { font-size: 1.6rem; }
    .plan-glass .plan-top,
    .plan-features,
    .plan-price-block { padding-left: 20px; padding-right: 20px; }
    .plan-divider { margin: 0 20px; }
    .plan-price-block .amount { font-size: 2rem; }
    .crm-box { padding: 28px; }
    .cta-final { padding: 40px 24px; }

    /* Asegurar visibilidad de iconos en mobile */
    .plan-features li i.bi {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
        min-width: 12px !important;
    }

    .plan-features li i.bi-check2 {
        font-size: 0.75rem !important;
    }

    /* Scrollbar más delgado en mobile */
    .plan-features::-webkit-scrollbar {
        width: 3px;
    }

    .plan-features {
        scrollbar-width: thin;
        padding-right: 16px;
    }

    /* Botones de navegación optimizados para mobile */
    .ia-landing .tns-controls {
        padding: 0 5px;
        top: 45%;
    }

    .ia-landing .tns-controls button {
        width: 40px;
        height: 40px;
        background-size: 14px 14px;
    }
}

/* Tabs de planes */
.ia-landing .nav-tabs {
    border-bottom: none;
    gap: 10px;
    flex-wrap: wrap;
}

.ia-landing .nav-tabs .nav-item {
    margin-bottom: 0;
}

.ia-landing .nav-tabs .nav-link {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.ia-landing .nav-tabs .nav-link:hover {
    background: rgba(241,131,24,0.2);
    border-color: rgba(241,131,24,0.5);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(241,131,24,0.3);
}

.ia-landing .nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #f18318, #ff9f4a);
    border-color: #f18318;
    color: #fff;
    box-shadow: 0 6px 20px rgba(241,131,24,0.4);
    font-weight: 800;
}

.ia-landing .tab-content {
    margin-top: 30px;
}

.ia-landing .tab-pane {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tiny Slider en landing */
.ia-landing .tiny-slider {
    margin-bottom: 40px;
}

.ia-landing .tiny-slider .item {
    padding: 0 10px;
}

/* Ocultar scrollbar del tiny-slider */
.ia-landing .tns-outer {
    overflow: hidden;
}

.ia-landing .tns-ovh {
    overflow: hidden;
}

.ia-landing .tns-inner {
    overflow: hidden;
}

.ia-landing .tns-nav {
    text-align: center;
    margin-top: 30px;
    position: relative;
}

.ia-landing .tns-nav button {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    margin: 0 5px;
    padding: 0;
    transition: all 0.3s;
}

.ia-landing .tns-nav button.tns-nav-active {
    background: #f18318;
    width: 30px;
    border-radius: 5px;
}

.ia-landing .tns-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 15px;
}

.ia-landing .tns-controls button {
    pointer-events: all;
    background: rgba(241,131,24,0.4);
    border: 2px solid #f18318;
    color: transparent;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
    overflow: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
}

/* Flecha izquierda (prev) usando SVG inline */
.ia-landing .tns-controls button[data-controls="prev"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Flecha derecha (next) usando SVG inline */
.ia-landing .tns-controls button[data-controls="next"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}

.ia-landing .tns-controls button:hover {
    background-color: rgba(241,131,24,0.6);
    border-color: #ff9f4a;
    transform: scale(1.1);
}

.ia-landing .tns-controls button:active {
    transform: scale(0.95);
    background-color: rgba(241,131,24,0.7);
}

.ia-landing .tns-controls button[disabled] {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Estilos responsive mejorados */
@media (max-width: 991px) {
    .plan-glass {
        min-height: 550px;
        max-height: 550px;
        height: 550px;
    }

    .ia-landing .nav-tabs .nav-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Scrollbar en tablets */
    .plan-features::-webkit-scrollbar {
        width: 3px;
    }

    .plan-features {
        padding-right: 18px;
    }

    /* Botones de navegación más pequeños en tablet */
    .ia-landing .tns-controls button {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .ia-landing .tns-controls {
        padding: 0 10px;
    }
}

@media (max-width: 575px) {
    .plan-glass {
        min-height: 520px;
        max-height: 520px;
        height: 520px;
    }

    .plan-features li {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .plan-features li i {
        font-size: 0.75rem !important;
        margin-top: 3px !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-width: 12px !important;
    }

    .ia-landing .nav-tabs .nav-link {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

