/* Tarjetas animadas para la sección "Sobre Nosotros" */
.section_our_solution {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.our_solution_category {
    width: 100%;
}

.solution_cards_box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.solution_card {
    position: relative;
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 20px;
    padding: 1.75rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.solution_card::before {
    content: "";
    position: absolute;
    inset: -40% -60%;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.22), transparent 45%);
    opacity: 0.7;
    transition: transform 0.6s ease;
}

.solution_card .hover_color_bubble {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(37, 99, 235, 0.35));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.solution_card .so_top_icon {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    margin-bottom: 1.1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.solution_card svg {
    position: relative;
    z-index: 1;
}

.solution_card .solu_title {
    position: relative;
    z-index: 1;
    margin-bottom: 0.65rem;
}

.solution_card .solu_title h5 {
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.solution_card .solu_description {
    position: relative;
    z-index: 1;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.solution_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.35);
    background: #0b1224;
}

.solution_card:hover .hover_color_bubble {
    opacity: 1;
}

.solution_card:hover::before {
    transform: translate3d(8px, -8px, 0) scale(1.05);
}

.solution_card .btn {
    position: relative;
    z-index: 1;
}

.sol_card_top_3 .solution_card:nth-child(1) {
    animation-delay: 0.05s;
}

.sol_card_top_3 .solution_card:nth-child(2) {
    animation-delay: 0.1s;
}

.sol_card_top_3 .solution_card:nth-child(3) {
    animation-delay: 0.15s;
}

@media (max-width: 767.98px) {
    .solution_card {
        padding: 1.4rem;
    }

    .solution_cards_box {
        gap: 1rem;
    }
}
