/* ===== DECISION FORK SECTION ===== */
.decision-fork-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.fork-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0bf91b, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fork-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.fork-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.fork-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.fork-card.soluciones {
    border-color: rgba(11, 249, 27, 0.3);
}

.fork-card.soluciones:hover {
    border-color: #0bf91b;
    box-shadow: 0 20px 50px rgba(11, 249, 27, 0.3);
}

.fork-card.ingresos {
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 215, 0, 0.1));
}

.fork-card.ingresos:hover {
    border-color: #FFD700;
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

.fork-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #FF6B00, #FF0000);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

.fork-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.fork-icon.money {
    animation: shake 1.5s infinite;
}

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

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.fork-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.fork-card.soluciones h3 {
    color: #0bf91b;
}

.fork-card.ingresos h3 {
    color: #FFD700;
}

.fork-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-fork {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-soluciones {
    background: linear-gradient(135deg, #0bf91b, #0a8012);
    color: #000;
    box-shadow: 0 10px 30px rgba(11, 249, 27, 0.4);
}

.btn-soluciones:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(11, 249, 27, 0.6);
}

.btn-ingresos {
    background: linear-gradient(135deg, #FFD700, #FF6B00);
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-ingresos:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.fork-card small {
    display: block;
    margin-top: 1rem;
    color: #aaa;
    font-size: 0.85rem;
}

.fork-subtitle {
    text-align: center;
    color: #888;
    font-size: 1rem;
    margin-top: 2rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .fork-buttons-grid {
        grid-template-columns: 1fr;
    }
    
    .fork-title {
        font-size: 1.8rem;
    }
    
    .fork-card {
        padding: 2rem;
    }
}
