/* Sección Landing + Asistente - COMPLETA Y CORREGIDA */
.landing-assistant-creative {
    padding: 120px 20px;
    background: radial-gradient(ellipse at center, #1d1b34 0%, #000000 70%);
    position: relative;
    overflow: hidden;
}

.landing-assistant-creative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 238, 88, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 238, 88, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.creative-header {
    text-align: center;
    margin-bottom: 80px;
}

.creative-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #ffee58 0%, #ffeb3b 50%, #ffeb3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.creative-subtitle {
    color: #afaeae;
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Creative Showcase - HORIZONTAL EN DESKTOP */
.creative-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 100px;
    gap: 40px;
    position: relative;
}

.showcase-side {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 238, 88, 0.2);
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.showcase-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 238, 88, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.showcase-side:hover::before {
    opacity: 1;
}

.showcase-side:hover {
    transform: translateY(-10px);
    border-color: #ffee58;
    box-shadow: 0 20px 40px rgba(255, 238, 88, 0.15);
}

.landing-side {
    background: linear-gradient(135deg, rgba(29, 27, 52, 0.9), rgba(255, 238, 88, 0.05));
}

.assistant-side {
    background: linear-gradient(135deg, rgba(29, 27, 52, 0.9), rgba(37, 211, 102, 0.05));
}

.side-header {
    text-align: center;
    margin-bottom: 40px;
}

.side-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 238, 88, 0.3));
}

.side-header h3 {
    color: #ffee58;
    font-size: 1.8rem;
    line-height: 1.3;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.side-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-bubble {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 238, 88, 0.2);
    border-radius: 50px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.feature-bubble:hover {
    background: rgba(255, 238, 88, 0.1);
    transform: translateY(-2px);
}

.bubble-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bubble-text {
    color: #afaeae;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Connection Center - HORIZONTAL EN DESKTOP */
.connection-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.connection-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 238, 88, 0.1);
    border: 2px solid #ffee58;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: rotate 10s linear infinite;
}

.connection-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #ffee58;
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

.connection-core {
    color: #ffee58;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
}

.connection-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, #ffee58, transparent);
    margin: 20px 0;
}

.connection-text {
    color: #ffee58;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Conversion Flow */
.conversion-flow {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.flow-title {
    text-align: center;
    color: #ffee58;
    font-size: 1.5rem;
    margin-bottom: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.flow-step {
    text-align: center;
    position: relative;
}

.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 238, 88, 0.1);
    border: 2px solid rgba(255, 238, 88, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.flow-step:hover .step-icon {
    background: rgba(255, 238, 88, 0.2);
    border-color: #ffee58;
    transform: scale(1.1);
}

.step-arrow {
    color: #ffee58;
    font-size: 2rem;
    margin-left: 10px;
    opacity: 0.7;
}

.flow-step:last-child .step-arrow {
    display: none;
}

.step-content h4 {
    color: #ffee58;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.step-content p {
    color: #afaeae;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Creative CTA */
.creative-cta {
    background: linear-gradient(135deg, rgba(255, 238, 88, 0.1), rgba(37, 211, 102, 0.1));
    border: 2px solid rgba(255, 238, 88, 0.3);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.creative-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 238, 88, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffee58, #ffeb3b);
    color: #1d1b34;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-title {
    color: #ffee58;
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.cta-subtitle {
    color: #afaeae;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #afaeae;
    font-size: 0.95rem;
    text-align: left;
}

.feature-check {
    color: #4CAF50;
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-creative-cta {
    background: linear-gradient(135deg, #ffee58 0%, #ffeb3b 100%);
    color: #1d1b34;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 10px 30px rgba(255, 238, 88, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-creative-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-creative-cta:hover::before {
    left: 100%;
}

.btn-creative-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 238, 88, 0.6);
}

.cta-main {
    font-size: 1.1rem;
    font-weight: 700;
}

.cta-sub {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
}

/* RESPONSIVE - VERTICAL EN MÓVIL */
@media (max-width: 1024px) {
    .landing-assistant-creative {
        padding: 80px 15px;
    }
    
    .creative-header {
        margin-bottom: 60px;
    }
    
    .creative-header h2 {
        font-size: 2.8rem;
    }
    
    .creative-subtitle {
        font-size: 1.2rem;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .creative-showcase {
        flex-direction: column;
        gap: 60px;
        margin-bottom: 80px;
    }
    
    .showcase-side {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .connection-center {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        margin: 40px 0;
    }
    
    .connection-line {
        width: 100px;
        height: 2px;
        margin: 0 20px;
    }
    
    .flow-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .landing-assistant-creative {
        padding: 60px 15px;
    }
    
    .creative-header h2 {
        font-size: 2.2rem;
    }
    
    .creative-subtitle {
        font-size: 1.1rem;
    }
    
    .showcase-side {
        padding: 30px 20px;
    }
    
    .side-icon {
        font-size: 3rem;
    }
    
    .side-header h3 {
        font-size: 1.5rem;
    }
    
    .side-features {
        grid-template-columns: 1fr;
    }
    
    .flow-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-visual {
        justify-content: flex-start;
    }
    
    .step-arrow {
        display: none;
    }
    
    .creative-cta {
        padding: 40px 25px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .btn-creative-cta {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .landing-assistant-creative {
        padding: 50px 10px;
    }
    
    .creative-header h2 {
        font-size: 1.8rem;
    }
    
    .creative-subtitle {
        font-size: 1rem;
    }
    
    .side-icon {
        font-size: 2.5rem;
    }
    
    .side-header h3 {
        font-size: 1.3rem;
    }
    
    .connection-circle {
        width: 50px;
        height: 50px;
    }
    
    .connection-core {
        font-size: 1.2rem;
    }
    
    .creative-cta {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .flow-title {
        font-size: 1.3rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
}