.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h4 {
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
}

/* Sección Demo del Chatbot - Mejorada */
.chatbot-demo {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 24px;
    padding: 50px;
    margin: 60px 0;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
}

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

.chatbot-demo h3 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.conversation-bubble {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 20px 28px;
    border-radius: 24px 24px 8px 24px;
    margin: 20px 0;
    max-width: 80%;
    margin-left: auto;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
    font-size: 15px;
    line-height: 1.6;
    position: relative;
}

.conversation-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 0px solid transparent;
    border-top: 15px solid #6366f1;
}

.conversation-bubble.user {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 24px 24px 24px 8px;
    margin-left: 0;
    margin-right: auto;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
}

.conversation-bubble.user::after {
    left: 20px;
    right: auto;
    border-right: 15px solid transparent;
    border-left: 0px solid transparent;
    border-top: 15px solid #10b981;
}

.conversation-bubble strong {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    opacity: 0.9;
}

/* Features Section - Mejorada */
.feature-area.style-two {
    padding: 100px 0;
    background: #ffffff;
}

.feature-area .section-title h2 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2.8rem;
}

.feature-area .section-title p {
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.single-feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.single-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.single-feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.single-feature-box:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.4s ease;
}

.single-feature-box:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2.2rem;
    color: white;
}

.feature-content h4 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
}

/* Sección About/Benefits - Mejorada y Responsiva */
.about-area.style-two {
    padding: 100px 0;
    background: #f8fafc;
}

.about-right .section-title h2 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2.5rem;
    line-height: 1.2;
}

.about-right .section-title h4 {
    color: #6366f1;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.about-right .section-title p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.about-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    border-left: 4px solid #6366f1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.about-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
    border-left-color: #8b5cf6;
}

.about-list li i {
    color: #10b981;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.about-list li strong {
    color: #1e293b;
    font-weight: 700;
}

.about-list li {
    color: #475569;
    line-height: 1.6;
}

/* Sección de Precios - Completamente Rediseñada */
.pricing-area.style-two {
    padding: 100px 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    position: relative;
    overflow: hidden;
}

.pricing-area.style-two::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.pricing-area .section-title {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.pricing-area .section-title h2 {
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2.8rem;
}

.pricing-area .section-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.single-pricing-box {
    background: white;
    border-radius: 24px;
    padding: 0;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.single-pricing-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.single-pricing-box.featured {
    transform: scale(1.08);
    border: 3px solid #fbbf24;
    position: relative;
    z-index: 3;
}

.single-pricing-box.featured:hover {
    transform: scale(1.08) translateY(-12px);
}

.single-pricing-box.featured::before {
    content: 'RECOMENDADO';
    position: absolute;
    top: 25px;
    right: -35px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e293b;
    padding: 8px 45px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.pricing-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 40px 30px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.pricing-header h4 {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    color: #6366f1;
    font-weight: 700;
    margin-right: 8px;
}

.pricing-price .price {
    font-size: 4rem;
    color: #1e293b;
    font-weight: 800;
    line-height: 1;
}

.pricing-price .period {
    font-size: 1.1rem;
    color: #64748b;
    margin-left: 8px;
    font-weight: 500;
}

.pricing-features {
    padding: 40px 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 12px 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

.pricing-features li i {
    color: #10b981;
    font-size: 18px;
    margin-right: 15px;
    width: 20px;
    flex-shrink: 0;
}

.pricing-button {
    padding: 0 30px 40px 30px;
}

.pricing-button a {
    display: block;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.pricing-button a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #5b5bf6 0%, #8b5cf6 100%);
}

.single-pricing-box.featured .pricing-button a {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e293b;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.single-pricing-box.featured .pricing-button a:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

.about-area.style-two {
    padding-top: 300px;
}

/* CTA Section - Mejorada */
.chatbot-feature {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 40px;
    border-radius: 24px;
    margin: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Decoración superior sutil */
.chatbot-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 24px 24px 0 0;
}

/* Elementos decorativos flotantes */
.chatbot-feature::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.cta-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.cta-icon i {
    font-size: 2.5rem;
    color: white;
}

.chatbot-feature h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1e293b;
    line-height: 1.2;
}

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

.chatbot-feature p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #64748b;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    border: none;
}

.btn-primary-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(99, 102, 241, 0.5);
    background: linear-gradient(135deg, #5b5bf6 0%, #7c3aed 100%);
    color: white;
}

.btn-primary-cta i {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary-cta:hover i {
    transform: translateX(6px);
}

.btn-secondary-cta {
    background: white;
    color: #6366f1;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
}

.btn-secondary-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

.btn-secondary-cta i {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.btn-secondary-cta:hover i {
    transform: scale(1.1);
}

/* Features destacadas */
.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
}

.cta-feature i {
    color: #10b981;
    font-size: 18px;
    flex-shrink: 0;
}

/* Responsividad */
@media (max-width: 768px) {
    .chatbot-feature {
        padding: 50px 25px;
        margin: 50px 0;
    }

    .chatbot-feature h2 {
        font-size: 2.2rem;
    }

    .chatbot-feature p {
        font-size: 1.1rem;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-features {
        gap: 25px;
        margin-top: 40px;
    }

    .cta-feature {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .chatbot-feature h2 {
        font-size: 1.9rem;
    }

    .chatbot-feature p {
        font-size: 1rem;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        padding: 16px 30px;
        font-size: 1rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}



/* MEDIA QUERIES RESPONSIVAS MEJORADAS */

/* Tablets Grandes y Laptops Pequeñas (1200px y menos) */
@media (max-width: 1200px) {
    .single-pricing-box.featured {
        transform: scale(1.02);
    }

    .single-pricing-box.featured:hover {
        transform: scale(1.02) translateY(-12px);
    }

    /* About Section Responsiva */
    .about-right .section-title h2 {
        font-size: 2.2rem;
    }

    .about-area.style-two {
        padding: 80px 0;
    }
}

/* Tablets (992px y menos) */
@media (max-width: 992px) {
    .single-pricing-box.featured {
        transform: none;
        margin-top: 30px;
    }

    .single-pricing-box.featured:hover {
        transform: translateY(-12px);
    }

    .chatbot-feature h2 {
        font-size: 2.2rem;
    }

    .about-right .section-title h2 {
        font-size: 2rem;
    }

    .feature-area .section-title h2,
    .pricing-area .section-title h2 {
        font-size: 2.2rem;
    }

    /* About Section en Tablets */
    .about-area.style-two {
        padding: 70px 0;
    }

    .about-right .section-title h4 {
        font-size: 1.1rem;
    }

    .about-right .section-title p {
        font-size: 1rem;
        margin-bottom: 35px;
    }

    .about-list li {
        padding: 18px;
        margin-bottom: 20px;
    }

    .about-list li i {
        font-size: 18px;
        margin-right: 12px;
    }

    /* Reorganizar layout en tablets - imagen arriba, texto abajo */
    .about-area.style-two .row {
        flex-direction: column-reverse;
    }

    .about-area.style-two .col-lg-6 {
        margin-bottom: 40px;
    }

    .about-left {
        text-align: center;
    }

    .about-thumb img {
        max-width: 80%;
        height: auto;
    }
}

/* Móviles Grandes (768px y menos) */
@media (max-width: 768px) {
    .chatbot-demo {
        padding: 30px 25px;
        margin: 40px 0;
    }

    .conversation-bubble {
        max-width: 95%;
        padding: 16px 22px;
        font-size: 14px;
    }

    .pricing-area.style-two {
        padding: 60px 0;
    }

    .chatbot-feature {
        padding: 50px 25px;
        margin: 50px 0;
    }

    .chatbot-feature h2 {
        font-size: 1.9rem;
    }

    .chatbot-feature .hero-button a {
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    .feature-area.style-two {
        padding: 60px 0;
    }

    .single-feature-box {
        padding: 30px 25px;
    }

    .pricing-header {
        padding: 30px 25px;
    }

    .pricing-features {
        padding: 30px 25px;
    }

    .pricing-button {
        padding: 0 25px 30px 25px;
    }

    /* About Section Móvil */
    .about-right .section-title h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .about-right .section-title h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .about-right .section-title p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .about-list li {
        padding: 15px;
        margin-bottom: 18px;
        border-radius: 12px;
        flex-direction: column;
        text-align: center;
    }

    .about-list li i {
        font-size: 24px;
        margin-right: 0;
        margin-bottom: 10px;
        margin-top: 0;
    }

    .about-list li:hover {
        transform: translateY(-3px);
    }

    .about-thumb img {
        max-width: 100%;
    }

    .about-area.style-two .col-lg-6 {
        margin-bottom: 30px;
    }

    .about-area.style-two {
        padding-top: 950px;
    }
}

/* Móviles Pequeños (480px y menos) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem !important;
    }

    .conversation-bubble {
        padding: 14px 18px;
        font-size: 13px;
    }

    .pricing-price .price {
        font-size: 3rem;
    }

    .chatbot-feature h2 {
        font-size: 1.7rem;
    }

    /* About Section Móviles Pequeños */
    .about-right .section-title h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .about-right .section-title h4 {
        font-size: 0.9rem;
    }

    .about-right .section-title p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .about-list li {
        padding: 12px;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .about-list li i {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .about-list li strong {
        font-size: 14px;
        display: block;
        margin-bottom: 5px;
    }

    .chatbot-feature p {
        font-size: 1.1rem;
    }

    .chatbot-feature .hero-button a {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

/* Móviles Extra Pequeños (360px y menos) */
@media (max-width: 360px) {
    .about-right .section-title h2 {
        font-size: 1.4rem;
    }

    .about-list li {
        padding: 10px;
        font-size: 13px;
    }

    .about-list li i {
        font-size: 18px;
    }

    .chatbot-feature h2 {
        font-size: 1.5rem;
    }

    .chatbot-feature p {
        font-size: 1rem;
    }
}

.style-two.hero-area {
    padding: 100px 0;
    height: auto;
}

.hero-thumb {
    display: block;
}

@media (max-width: 768px) {
    .hero-thumb {
        display: none;
    }
}

/* Etiqueta RECOMENDADO */
.single-pricing-box.featured::before {
    content: 'RECOMENDADO';
    position: absolute;
    top: 25px;
    right: -35px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e293b;
    padding: 8px 45px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.single-pricing-box.featured {
    transform: scale(1.08);
    border: 3px solid #fbbf24;
    z-index: 3;
}

.single-pricing-box.featured:hover {
    transform: scale(1.08) translateY(-12px);
}


.hero-area {
    background: url('../images/destia/portada-chatbot.jpg') no-repeat center center !important;
}

.style-two .hero-content p {
    color: white !important;
}